From 244db9a73b4023ecb8a43f1785a36c181ee8e0eb Mon Sep 17 00:00:00 2001 From: Kilian Saffran Date: Wed, 26 Feb 2020 15:38:50 +0100 Subject: [PATCH] db configs --- .../data/schemata/defaultcompany.schema.sql | 1368 +- .../potlu_db.newcompanyschema.pg.schema.sql | 1368 +- dev/db/potlu_db.pg.data.sql | 15341 +++++++++----- dev/db/potlu_db.pg.full.sql | 17026 ++++++++++------ dev/db/potlu_db.pg.schema.sql | 1645 +- dev/db/potlu_db.portanova.pg.data.sql | 15312 +++++++++----- dev/db/potlu_db.portanova.pg.full.sql | 16877 +++++++++------ dev/db/potlu_db.portanova.pg.schema.sql | 1513 +- dev/diff_files.sh | 2 +- dev/sourcefiles.local.txt | 198 +- dev/sourcefiles.remote.txt | 10 +- 11 files changed, 42386 insertions(+), 28274 deletions(-) diff --git a/backoffice/data/schemata/defaultcompany.schema.sql b/backoffice/data/schemata/defaultcompany.schema.sql index c4f6e0b4..c9223120 100644 --- a/backoffice/data/schemata/defaultcompany.schema.sql +++ b/backoffice/data/schemata/defaultcompany.schema.sql @@ -25,7 +25,7 @@ begin end; $$; -CREATE FUNCTION %%NEWSCHEMA%%.getperiod_staffcontract(pid integer) RETURNS TABLE(id integer, id_staff integer, startdate date, enddate date, weekhours interval, weekdays integer, id_workplan integer) +CREATE FUNCTION %%NEWSCHEMA%%.getperiod_staffcontract(pid integer) RETURNS TABLE(id integer, id_staff integer, startdate date, enddate date, weekhours interval, weekdays integer, id_workplan integer, defaultfreedays json) LANGUAGE plpgsql AS $$ declare @@ -34,11 +34,11 @@ CREATE FUNCTION %%NEWSCHEMA%%.getperiod_staffcontract(pid integer) RETURNS TABLE begin select prd.startdate as prdstart,prd.enddate as prdend into pstart,pend from %%NEWSCHEMA%%.reportperiod prd where prd.id=pid; return QUERY -select sc.id,sc.id_staff, -case when sc.startdate < pstart then pstart else sc.startdate end as startdate, +select sc.id,sc.id_staff, +case when sc.startdate < pstart then pstart else sc.startdate end as startdate, case when sc.enddate is null then pend when sc.enddate > pend then pend else sc.enddate end as enddate, -sc.weekhours,sc.weekdays,sc.id_workplan -from %%NEWSCHEMA%%.staffcontract sc where sc.startdate<= pend and (sc.enddate is null or sc.enddate >= pstart) +sc.weekhours,sc.weekdays,sc.id_workplan,sc.defaultfreedays +from %%NEWSCHEMA%%.staffcontract sc where sc.startdate<= pend and (sc.enddate is null or sc.enddate >= pstart) order by sc.id_staff,sc.startdate,sc.enddate; END; $$; @@ -73,6 +73,20 @@ begin end; $$; +CREATE FUNCTION %%NEWSCHEMA%%.refresh_periods() RETURNS boolean + LANGUAGE plpgsql + AS $$ + declare + prds record; + begin + for prds in select id from %%NEWSCHEMA%%.reportperiod order by startdate,enddate + loop + perform %%NEWSCHEMA%%.update_all_staff_in_period(prds.id); + end loop; + RETURN true; + END; +$$; + CREATE FUNCTION %%NEWSCHEMA%%.set_periodday_sums(pid_periodday bigint) RETURNS bigint LANGUAGE plpgsql AS $$ @@ -158,23 +172,37 @@ CREATE FUNCTION %%NEWSCHEMA%%.set_staffperiodweek_sums(pid_reportperiod integer, declare wkcon record; tmpcontrhours interval; + freedays int4 := 0; begin -- INSERT Contract data into Week -for wkcon in select srpw.id,psc.weekhours,psc.weekdays,srpw.contractdays,srpw.caldays,srpw.diffhours,srpw.contracthours,srpw.totalhours +for wkcon in select srpw.id,srpw.calweek,srpw.weekstart,srpw.calyear,rp.startdate as periodstart,psc.startdate,rp.enddate as periodend,psc.enddate,psc.weekhours,psc.weekdays,srpw.contractdays,srpw.caldays,srpw.diffhours,srpw.contracthours,srpw.totalhours,psc.defaultfreedays from %%NEWSCHEMA%%.staffreportperiodweeks srpw -left join (select xa.id_staff,xa.startdate,xa.enddate,xa.weekhours,xa.weekdays from %%NEWSCHEMA%%.getperiod_staffcontract(pid_reportperiod) xa where xa.id_staff=pid_staff) psc +left join (select xa.id_staff,xa.startdate,xa.enddate,xa.weekhours,xa.weekdays,xa.defaultfreedays from %%NEWSCHEMA%%.getperiod_staffcontract(pid_reportperiod) xa where xa.id_staff=pid_staff) psc on (srpw.weekstart between date_trunc('week',psc.startdate) and psc.enddate) +left join %%NEWSCHEMA%%.reportperiod rp on (srpw.id_reportperiod =rp.id) where srpw.id_reportperiod=pid_reportperiod and srpw.id_staff=pid_staff loop --raise notice 'id=%',wkcon; - --raise notice 'id=%',wkcon.contractdays; + if wkcon.defaultfreedays is not null then + freedays = json_array_length(wkcon.defaultfreedays); + end if; wkcon.contracthours=wkcon.weekhours; wkcon.contractdays=wkcon.weekdays; - if wkcon.caldays < wkcon.contractdays then - wkcon.contractdays = wkcon.caldays; - wkcon.contracthours = (wkcon.weekhours/wkcon.weekdays) * wkcon.contractdays; + if wkcon.calweek= date_part('week',wkcon.periodstart)::int4 and wkcon.calyear= date_part('isoyear',wkcon.periodstart)::int4 then + wkcon.contracthours = wkcon.contracthours - ((wkcon.weekhours/wkcon.weekdays) * (wkcon.startdate-wkcon.periodstart)::int4); end if; + --if wkcon.startdate > wkcon.periodstart then + -- wkcon.contractdays = wkcon.contractdays-(wkcon.startdate-wkcon.periodstart)::int4; + -- wkcon.contracthours = (wkcon.weekhours/wkcon.weekdays) * wkcon.contractdays; + --end if; + --if wkcon.enddate < wkcon.periodend then + -- wkcon.contractdays = wkcon.contractdays-(wkcon.periodend-wkcon.enddate)::int4; + -- wkcon.contracthours = (wkcon.weekhours/wkcon.weekdays) * wkcon.contractdays; + --end if; + + wkcon.diffhours = wkcon.totalhours-wkcon.contracthours; + raise notice 'contractdays: % contracthours: % totalhours: % diffhours: %',wkcon.contractdays,wkcon.contracthours,wkcon.totalhours,wkcon.diffhours; --raise notice 'id=% cdays=% chours=% diffhours=%',wkcon.id,wkcon.contractdays,wkcon.contracthours,wkcon.diffhours; update %%NEWSCHEMA%%.staffreportperiodweeks set contracthours=wkcon.contracthours,contractdays=wkcon.contractdays,diffhours=wkcon.diffhours where id=wkcon.id; @@ -194,8 +222,10 @@ declare cdate date; edate date; wday text; + wdaynum int4; wdayplan record; cid_staffworkplan int8; + cdaytime interval; begin select * into prd from %%NEWSCHEMA%%.reportperiod where id= pid_period; for cont in select * from %%NEWSCHEMA%%.getperiod_staffcontract(pid_period) where id_staff=pid_staff @@ -203,16 +233,24 @@ begin cdate := cont.startdate; while cdate <= cont.enddate loop if cdate between prd.startdate and prd.enddate then + wdaynum = date_part('isodow',cdate)::INT4; + cdaytime := null; + + if position('"' || wdaynum || '"' in cont.defaultfreedays::text) = 0 then + cdaytime := cont.weekhours/cont.weekdays; + end if; + raise notice 'wday % => % => %',wdaynum,position('"' || wdaynum || '"' in cont.defaultfreedays::text),cdaytime; if (cont.id_workplan is not null) then wday := substr(to_char(cdate,'day'),1,3); execute 'select ' || wday || '_timestart1 as ts1,' || wday || '_timeend1 as te1,' || wday || '_timestart2 as ts2,' || wday ||'_timeend2 as te2,'|| wday ||'_timepause as tp from %%NEWSCHEMA%%.workplans where id=' || cont.id_workplan || ';' into wdayplan; - insert into %%NEWSCHEMA%%.staffreportperioddays (id_staff,daydate,id_reportperiod,timestart1,timeend1,timestart2,timeend2,timepause,contracthours) - values (pid_staff,cdate,pid_period,wdayplan.ts1,wdayplan.te1,wdayplan.ts2,wdayplan.te2,wdayplan.tp,cont.weekhours/cont.weekdays) - on conflict on constraint uniq_staffworplan_staffday do update set contracthours=cont.weekhours/cont.weekdays + + insert into %%NEWSCHEMA%%.staffreportperioddays (id_staff,daydate,id_reportperiod,timestart1,timeend1,timestart2,timeend2,timepause,contracthours,wdcontracthours) + values (pid_staff,cdate,pid_period,wdayplan.ts1,wdayplan.te1,wdayplan.ts2,wdayplan.te2,wdayplan.tp,cont.weekhours/cont.weekdays,cdaytime) + on conflict on constraint uniq_staffworplan_staffday do update set contracthours=cont.weekhours/cont.weekdays,wdcontracthours=cdaytime returning id into cid_staffworkplan; else - insert into %%NEWSCHEMA%%.staffreportperioddays (id_staff,daydate,id_reportperiod,contracthours,id_staffgrou) values ( pid_staff , cdate , pid_period,cont.weekhours/cont.weekdays) - on conflict on constraint uniq_staffworplan_staffday do update set contracthours=cont.weekhours/cont.weekdays + insert into %%NEWSCHEMA%%.staffreportperioddays (id_staff,daydate,id_reportperiod,contracthours,wdcontracthours) values ( pid_staff , cdate , pid_period,cont.weekhours/cont.weekdays,cdaytime) + on conflict on constraint uniq_staffworplan_staffday do update set contracthours=cont.weekhours/cont.weekdays,wdcontracthours=cdaytime returning id into cid_staffworkplan; end if; end if; @@ -238,7 +276,8 @@ coalesce(sum(workhours),'00:00:00') as workhours , coalesce(sum(vacancyhours),'00:00:00') as vacancyhours , coalesce(sum(recuperationhours) ,'00:00:00' ) as recuperationhours , coalesce(sum(dayhours),'00:00:00') as totalhours, -count(id) as caldays +coalesce(sum(contracthours),'00:00:00') as contracthours, +count(wdcontracthours) as caldays from ( select swp.id,swp.id_reportperiod,swp.id_staff, date_part('isoyear',swp.daydate) as calyear, @@ -248,14 +287,15 @@ swp.workhours, swp.contracthours, swp.recuperationhours, swp.dayhours, -swp.vacancyhours +swp.vacancyhours, +swp.wdcontracthours from %%NEWSCHEMA%%.staffreportperioddays swp where swp.id_reportperiod= pid_reportperiod and swp.id_staff=pid_staff) wkwp group by id_staff,id_reportperiod,calyear,calweek,weekstart loop --raise notice 'id_staff: % id_period: % calweek: % calyear: %',pid_staff,pid_reportperiod,wkpd.calweek,wkpd.calyear; - insert into %%NEWSCHEMA%%.staffreportperiodweeks (id_staff, id_reportperiod, calyear, calweek, workhours,vacancyhours, recuperationhours, weekstart,totalhours,caldays) - VALUES(wkpd.id_staff, wkpd.id_reportperiod, wkpd.calyear, wkpd.calweek, wkpd.workhours, wkpd.vacancyhours, wkpd.recuperationhours, wkpd.weekstart,wkpd.totalhours,wkpd.caldays) - on conflict on constraint uniq_staffweekplan_cal do update set workhours=wkpd.workhours, vacancyhours=wkpd.vacancyhours, recuperationhours=wkpd.recuperationhours,totalhours=wkpd.totalhours,caldays=wkpd.caldays; + insert into %%NEWSCHEMA%%.staffreportperiodweeks (id_staff, id_reportperiod, calyear, calweek, workhours,vacancyhours, recuperationhours, weekstart,totalhours,caldays,contracthours,diffhours) + VALUES(wkpd.id_staff, wkpd.id_reportperiod, wkpd.calyear, wkpd.calweek, wkpd.workhours, wkpd.vacancyhours, wkpd.recuperationhours, wkpd.weekstart,wkpd.totalhours,wkpd.caldays,wkpd.contracthours,wkpd.contracthours-wkpd.totalhours) + on conflict on constraint uniq_staffweekplan_cal do update set workhours=wkpd.workhours, vacancyhours=wkpd.vacancyhours, recuperationhours=wkpd.recuperationhours,totalhours=wkpd.totalhours,caldays=wkpd.caldays,contracthours=wkpd.contracthours,diffhours=wkpd.contracthours-wkpd.totalhours; end loop; perform %%NEWSCHEMA%%.set_staffperiodweek_sums(pid_reportperiod, pid_staff); @@ -428,20 +468,6 @@ begin end; $$; -CREATE FUNCTION %%NEWSCHEMA%%.zzold_refreshperiods() RETURNS boolean - LANGUAGE plpgsql - AS $$ - declare - prds record; - begin - for prds in select id from %%NEWSCHEMA%%.reportperiod where isvalidated != true - loop - perform %%NEWSCHEMA%%.onchange_reportperiod(prds.id); - end loop; - RETURN false; - END; -$$; - CREATE FUNCTION %%NEWSCHEMA%%.zzold_set_staffperiod(pid_period integer) RETURNS boolean LANGUAGE plpgsql AS $$ @@ -464,24 +490,6 @@ CREATE FUNCTION %%NEWSCHEMA%%.zzold_set_staffperiod(pid_period integer) RETURNS END; $$; -CREATE TABLE %%NEWSCHEMA%%.editlog ( - id bigint NOT NULL, - id_user integer, - tblname text, - tblfields json, - modified timestamp without time zone DEFAULT CURRENT_TIMESTAMP, - created timestamp without time zone DEFAULT CURRENT_TIMESTAMP -); - -CREATE SEQUENCE %%NEWSCHEMA%%.editlog_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; - -ALTER SEQUENCE %%NEWSCHEMA%%.editlog_id_seq OWNED BY %%NEWSCHEMA%%.editlog.id; - CREATE TABLE %%NEWSCHEMA%%.reportperiod ( id integer NOT NULL, periodname text, @@ -533,7 +541,8 @@ CREATE TABLE %%NEWSCHEMA%%.staffcontract ( weekdays integer, enddate date, id_workplan integer, - weekhours interval + weekhours interval, + defaultfreedays json ); CREATE TABLE %%NEWSCHEMA%%.staffgroups ( @@ -572,7 +581,8 @@ CREATE TABLE %%NEWSCHEMA%%.staffreportperiod ( vacancyhours interval, recuperationhours interval, hoursdiff interval, - hoursrestbefore interval + payedhours interval, + diffhourspayed interval ); CREATE SEQUENCE %%NEWSCHEMA%%.staffreportperiod_id_seq @@ -604,31 +614,10 @@ CREATE TABLE %%NEWSCHEMA%%.staffreportperioddays ( id_reportperiod integer, dayhours time without time zone, id_recuperationtype integer, - interruptionhours time without time zone -); - -CREATE TABLE %%NEWSCHEMA%%.zzold_staffreportperiodsums ( - id integer NOT NULL, - id_staff integer, - id_reportperiod integer, - plannedhours interval DEFAULT '00:00:00'::interval, - contracthours interval DEFAULT '00:00:00'::interval, - trackedhours interval DEFAULT '00:00:00'::interval, - vacancyhours interval DEFAULT '00:00:00'::interval, - recuperationhours interval DEFAULT '00:00:00'::interval, - hoursdiff interval DEFAULT '00:00:00'::interval, - hoursrestbefore interval + interruptionhours time without time zone, + wdcontracthours time without time zone ); -CREATE SEQUENCE %%NEWSCHEMA%%.staffreportperiodsums_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; - -ALTER SEQUENCE %%NEWSCHEMA%%.staffreportperiodsums_id_seq OWNED BY %%NEWSCHEMA%%.zzold_staffreportperiodsums.id; - CREATE TABLE %%NEWSCHEMA%%.staffreportperiodweeks ( id integer NOT NULL, id_staff integer, @@ -732,7 +721,8 @@ CREATE VIEW %%NEWSCHEMA%%.vw_staffcontractdata AS staffcontract.id_staffgroup, staffcontract.enddate, staffcontract.id AS id_staffcontract, - staffcontract.id_workplan + staffcontract.id_workplan, + staffcontract.defaultfreedays FROM %%NEWSCHEMA%%.staffcontract; CREATE TABLE %%NEWSCHEMA%%.workplans ( @@ -772,7 +762,10 @@ CREATE TABLE %%NEWSCHEMA%%.workplans ( sun_timeend1 time without time zone, sun_timestart2 time without time zone, sun_timeend2 time without time zone, - sun_timepause time without time zone + sun_timepause time without time zone, + weekhours interval, + weekdays integer, + weekdayslist json ); CREATE VIEW %%NEWSCHEMA%%.vw_staffcontractlist AS @@ -786,10 +779,16 @@ CREATE VIEW %%NEWSCHEMA%%.vw_staffcontractlist AS sg.groupcolor, sc.enddate, sc.id_workplan, + ddf.defaultfreedays, wp.workplan - FROM ((%%NEWSCHEMA%%.staffcontract sc + FROM (((%%NEWSCHEMA%%.staffcontract sc LEFT JOIN %%NEWSCHEMA%%.staffgroups sg ON ((sc.id_staffgroup = sg.id))) LEFT JOIN %%NEWSCHEMA%%.workplans wp ON ((sc.id_workplan = wp.id))) + LEFT JOIN ( SELECT dfd.id, + replace(replace(replace(replace(replace(replace(replace(dfd.defaultfreedays, '7'::text, 'di'::text), '6'::text, 'sa'::text), '5'::text, 've'::text), '4'::text, 'je'::text), '3'::text, 'me'::text), '2'::text, 'ma'::text), '1'::text, 'lu'::text) AS defaultfreedays + FROM ( SELECT staffcontract.id, + json_array_elements_text(staffcontract.defaultfreedays) AS defaultfreedays + FROM %%NEWSCHEMA%%.staffcontract) dfd) ddf ON ((sc.id = ddf.id))) ORDER BY sc.startdate DESC, sc.enddate DESC; CREATE VIEW %%NEWSCHEMA%%.vw_staffdata AS @@ -819,7 +818,6 @@ CREATE VIEW %%NEWSCHEMA%%.vw_staffgroupsdata AS CREATE VIEW %%NEWSCHEMA%%.vw_staffgroupslist AS SELECT staffgroups.id, staffgroups.groupname, - staffgroups.groupcolor, staffgroups.isdefault FROM %%NEWSCHEMA%%.staffgroups; @@ -831,283 +829,16 @@ CREATE VIEW %%NEWSCHEMA%%.vw_stafflist AS st.job, st.birthdate, ((st.surname || ' '::text) || st.prename) AS dspname, - stg.groupname - FROM (%%NEWSCHEMA%%.staff st + stg.groupname, + stentry.entrydate + FROM ((%%NEWSCHEMA%%.staff st LEFT JOIN %%NEWSCHEMA%%.staffgroups stg ON ((st.id_staffgroup = stg.id))) + LEFT JOIN ( SELECT staffcontract.id_staff, + min(staffcontract.startdate) AS entrydate + FROM %%NEWSCHEMA%%.staffcontract + GROUP BY staffcontract.id_staff) stentry ON ((st.id = stentry.id_staff))) ORDER BY st.surname, st.prename; -CREATE VIEW %%NEWSCHEMA%%.vw_staffplanned_dayweektotals AS - SELECT stw2.calweek, - stw2.caldate AS dates, - stw2.id_staff, - max( - CASE - WHEN (stw2.isodow = (1)::double precision) THEN stw2.id - ELSE NULL::bigint - END) AS mon_id, - max( - CASE - WHEN (stw2.isodow = (1)::double precision) THEN to_char((stw2.timestart1)::interval, 'HH24:MI'::text) - ELSE NULL::text - END) AS mon_start1, - max( - CASE - WHEN (stw2.isodow = (1)::double precision) THEN to_char((stw2.timeend1)::interval, 'HH24:MI'::text) - ELSE NULL::text - END) AS mon_end1, - max( - CASE - WHEN (stw2.isodow = (1)::double precision) THEN to_char((stw2.timestart2)::interval, 'HH24:MI'::text) - ELSE NULL::text - END) AS mon_start2, - max( - CASE - WHEN (stw2.isodow = (1)::double precision) THEN to_char((stw2.timeend2)::interval, 'HH24:MI'::text) - ELSE NULL::text - END) AS mon_end2, - max( - CASE - WHEN (stw2.isodow = (1)::double precision) THEN to_char((stw2.timepause)::interval, 'HH24:MI'::text) - ELSE NULL::text - END) AS mon_pause, - to_char(max( - CASE - WHEN (stw2.isodow = (1)::double precision) THEN ((stw2.time1 + stw2.time2) - (stw2.timepause)::interval) - ELSE NULL::interval - END), 'HH24:MI'::text) AS mon_timetotal, - max( - CASE - WHEN (stw2.isodow = (2)::double precision) THEN stw2.id - ELSE NULL::bigint - END) AS tue_id, - max( - CASE - WHEN (stw2.isodow = (2)::double precision) THEN to_char((stw2.timestart1)::interval, 'HH24:MI'::text) - ELSE NULL::text - END) AS tue_start1, - max( - CASE - WHEN (stw2.isodow = (2)::double precision) THEN to_char((stw2.timeend1)::interval, 'HH24:MI'::text) - ELSE NULL::text - END) AS tue_end1, - max( - CASE - WHEN (stw2.isodow = (2)::double precision) THEN to_char((stw2.timestart2)::interval, 'HH24:MI'::text) - ELSE NULL::text - END) AS tue_start2, - max( - CASE - WHEN (stw2.isodow = (2)::double precision) THEN to_char((stw2.timeend2)::interval, 'HH24:MI'::text) - ELSE NULL::text - END) AS tue_end2, - max( - CASE - WHEN (stw2.isodow = (2)::double precision) THEN to_char((stw2.timepause)::interval, 'HH24:MI'::text) - ELSE NULL::text - END) AS tue_pause, - to_char(max( - CASE - WHEN (stw2.isodow = (2)::double precision) THEN ((stw2.time1 + stw2.time2) - (stw2.timepause)::interval) - ELSE NULL::interval - END), 'HH24:MI'::text) AS tue_timetotal, - max( - CASE - WHEN (stw2.isodow = (3)::double precision) THEN stw2.id - ELSE NULL::bigint - END) AS wed_id, - max( - CASE - WHEN (stw2.isodow = (3)::double precision) THEN to_char((stw2.timestart1)::interval, 'HH24:MI'::text) - ELSE NULL::text - END) AS wed_start1, - max( - CASE - WHEN (stw2.isodow = (3)::double precision) THEN to_char((stw2.timeend1)::interval, 'HH24:MI'::text) - ELSE NULL::text - END) AS wed_end1, - max( - CASE - WHEN (stw2.isodow = (3)::double precision) THEN to_char((stw2.timestart2)::interval, 'HH24:MI'::text) - ELSE NULL::text - END) AS wed_start2, - max( - CASE - WHEN (stw2.isodow = (3)::double precision) THEN to_char((stw2.timeend2)::interval, 'HH24:MI'::text) - ELSE NULL::text - END) AS wed_end2, - max( - CASE - WHEN (stw2.isodow = (3)::double precision) THEN to_char((stw2.timepause)::interval, 'HH24:MI'::text) - ELSE NULL::text - END) AS wed_pause, - to_char(max( - CASE - WHEN (stw2.isodow = (3)::double precision) THEN ((stw2.time1 + stw2.time2) - (stw2.timepause)::interval) - ELSE NULL::interval - END), 'HH24:MI'::text) AS wed_timetotal, - max( - CASE - WHEN (stw2.isodow = (4)::double precision) THEN stw2.id - ELSE NULL::bigint - END) AS thu_id, - max( - CASE - WHEN (stw2.isodow = (4)::double precision) THEN to_char((stw2.timestart1)::interval, 'HH24:MI'::text) - ELSE NULL::text - END) AS thu_start1, - max( - CASE - WHEN (stw2.isodow = (4)::double precision) THEN to_char((stw2.timeend1)::interval, 'HH24:MI'::text) - ELSE NULL::text - END) AS thu_end1, - max( - CASE - WHEN (stw2.isodow = (4)::double precision) THEN to_char((stw2.timestart2)::interval, 'HH24:MI'::text) - ELSE NULL::text - END) AS thu_start2, - max( - CASE - WHEN (stw2.isodow = (4)::double precision) THEN to_char((stw2.timeend2)::interval, 'HH24:MI'::text) - ELSE NULL::text - END) AS thu_end2, - max( - CASE - WHEN (stw2.isodow = (4)::double precision) THEN to_char((stw2.timepause)::interval, 'HH24:MI'::text) - ELSE NULL::text - END) AS thu_pause, - to_char(max( - CASE - WHEN (stw2.isodow = (4)::double precision) THEN ((stw2.time1 + stw2.time2) - (stw2.timepause)::interval) - ELSE NULL::interval - END), 'HH24:MI'::text) AS thu_timetotal, - max( - CASE - WHEN (stw2.isodow = (5)::double precision) THEN stw2.id - ELSE NULL::bigint - END) AS fri_id, - max( - CASE - WHEN (stw2.isodow = (5)::double precision) THEN to_char((stw2.timestart1)::interval, 'HH24:MI'::text) - ELSE NULL::text - END) AS fri_start1, - max( - CASE - WHEN (stw2.isodow = (5)::double precision) THEN to_char((stw2.timeend1)::interval, 'HH24:MI'::text) - ELSE NULL::text - END) AS fri_end1, - max( - CASE - WHEN (stw2.isodow = (5)::double precision) THEN to_char((stw2.timestart2)::interval, 'HH24:MI'::text) - ELSE NULL::text - END) AS fri_start2, - max( - CASE - WHEN (stw2.isodow = (5)::double precision) THEN to_char((stw2.timeend2)::interval, 'HH24:MI'::text) - ELSE NULL::text - END) AS fri_end2, - max( - CASE - WHEN (stw2.isodow = (5)::double precision) THEN to_char((stw2.timepause)::interval, 'HH24:MI'::text) - ELSE NULL::text - END) AS fri_pause, - to_char(max( - CASE - WHEN (stw2.isodow = (5)::double precision) THEN ((stw2.time1 + stw2.time2) - (stw2.timepause)::interval) - ELSE NULL::interval - END), 'HH24:MI'::text) AS fri_timetotal, - max( - CASE - WHEN (stw2.isodow = (6)::double precision) THEN stw2.id - ELSE NULL::bigint - END) AS sat_id, - max( - CASE - WHEN (stw2.isodow = (6)::double precision) THEN to_char((stw2.timestart1)::interval, 'HH24:MI'::text) - ELSE NULL::text - END) AS sat_start1, - max( - CASE - WHEN (stw2.isodow = (6)::double precision) THEN to_char((stw2.timeend1)::interval, 'HH24:MI'::text) - ELSE NULL::text - END) AS sat_end1, - max( - CASE - WHEN (stw2.isodow = (6)::double precision) THEN to_char((stw2.timestart2)::interval, 'HH24:MI'::text) - ELSE NULL::text - END) AS sat_start2, - max( - CASE - WHEN (stw2.isodow = (6)::double precision) THEN to_char((stw2.timeend2)::interval, 'HH24:MI'::text) - ELSE NULL::text - END) AS sat_end2, - max( - CASE - WHEN (stw2.isodow = (6)::double precision) THEN to_char((stw2.timepause)::interval, 'HH24:MI'::text) - ELSE NULL::text - END) AS sat_pause, - to_char(max( - CASE - WHEN (stw2.isodow = (6)::double precision) THEN ((stw2.time1 + stw2.time2) - (stw2.timepause)::interval) - ELSE NULL::interval - END), 'HH24:MI'::text) AS sat_timetotal, - max( - CASE - WHEN (stw2.isodow = (7)::double precision) THEN stw2.id - ELSE NULL::bigint - END) AS sun_id, - max( - CASE - WHEN (stw2.isodow = (7)::double precision) THEN to_char((stw2.timestart1)::interval, 'HH24:MI'::text) - ELSE NULL::text - END) AS sun_start1, - max( - CASE - WHEN (stw2.isodow = (7)::double precision) THEN to_char((stw2.timeend1)::interval, 'HH24:MI'::text) - ELSE NULL::text - END) AS sun_end1, - max( - CASE - WHEN (stw2.isodow = (7)::double precision) THEN to_char((stw2.timestart2)::interval, 'HH24:MI'::text) - ELSE NULL::text - END) AS sun_start2, - max( - CASE - WHEN (stw2.isodow = (7)::double precision) THEN to_char((stw2.timeend2)::interval, 'HH24:MI'::text) - ELSE NULL::text - END) AS sun_end2, - max( - CASE - WHEN (stw2.isodow = (7)::double precision) THEN to_char((stw2.timepause)::interval, 'HH24:MI'::text) - ELSE NULL::text - END) AS sun_pause, - to_char(max( - CASE - WHEN (stw2.isodow = (7)::double precision) THEN ((stw2.time1 + stw2.time2) - (stw2.timepause)::interval) - ELSE NULL::interval - END), 'HH24:MI'::text) AS sun_timetotal, - to_char(sum(((stw2.time1 + stw2.time2) - (stw2.timepause)::interval)), 'HH24:MI'::text) AS week_timetotal - FROM ( SELECT staffreportperioddays.daydate, - date_part('week'::text, staffreportperioddays.daydate) AS calweek, - (date_trunc('week'::text, (staffreportperioddays.daydate)::timestamp with time zone))::date AS caldate, - date_part('isodow'::text, staffreportperioddays.daydate) AS isodow, - staffreportperioddays.id, - staffreportperioddays.id_staff, - staffreportperioddays.timestart1, - staffreportperioddays.timeend1, - CASE - WHEN (staffreportperioddays.timestart1 > staffreportperioddays.timeend1) THEN ('24:00:00'::time without time zone - ((staffreportperioddays.timestart1 - staffreportperioddays.timeend1))::time without time zone) - ELSE (staffreportperioddays.timeend1 - staffreportperioddays.timestart1) - END AS time1, - staffreportperioddays.timestart2, - staffreportperioddays.timeend2, - CASE - WHEN (staffreportperioddays.timestart2 > staffreportperioddays.timeend2) THEN ('24:00:00'::time without time zone - ((staffreportperioddays.timestart2 - staffreportperioddays.timeend2))::time without time zone) - ELSE (staffreportperioddays.timeend2 - staffreportperioddays.timestart2) - END AS time2, - staffreportperioddays.timepause - FROM %%NEWSCHEMA%%.staffreportperioddays) stw2 - GROUP BY stw2.calweek, stw2.caldate, stw2.id_staff; - CREATE VIEW %%NEWSCHEMA%%.vw_staffreportperioddays AS SELECT pd.id, pd.id_staff, @@ -1149,6 +880,8 @@ CREATE VIEW %%NEWSCHEMA%%.vw_staffreportperioddays AS END)::interval, 'HH24:MI'::text) AS interruptionhours, pw.id AS id_week, (((((((pw.calyear || '-'::text) || lpad((pw.calweek)::text, 2, '0'::text)) || '('::text) || to_char((pw.weekstart)::timestamp with time zone, 'DD.MM.YYYY'::text)) || ' - '::text) || to_char((date((pw.weekstart + '6 days'::interval)))::timestamp with time zone, 'DD.MM.YYYY'::text)) || ')'::text) AS dspweek, + ((((((((((((to_char((pw.weekstart)::timestamp with time zone, 'DD.MM.YYYY'::text) || ','::text) || to_char((date((pw.weekstart + '1 day'::interval)))::timestamp with time zone, 'DD.MM.YYYY'::text)) || ','::text) || to_char((date((pw.weekstart + '2 days'::interval)))::timestamp with time zone, 'DD.MM.YYYY'::text)) || ','::text) || to_char((date((pw.weekstart + '3 days'::interval)))::timestamp with time zone, 'DD.MM.YYYY'::text)) || ','::text) || to_char((date((pw.weekstart + '4 days'::interval)))::timestamp with time zone, 'DD.MM.YYYY'::text)) || ','::text) || to_char((date((pw.weekstart + '5 days'::interval)))::timestamp with time zone, 'DD.MM.YYYY'::text)) || ','::text) || to_char((date((pw.weekstart + '6 days'::interval)))::timestamp with time zone, 'DD.MM.YYYY'::text)) AS dspweekdates, + ((((((((((((pw.weekstart || ','::text) || date((pw.weekstart + '1 day'::interval))) || ','::text) || date((pw.weekstart + '2 days'::interval))) || ','::text) || date((pw.weekstart + '3 days'::interval))) || ','::text) || date((pw.weekstart + '4 days'::interval))) || ','::text) || date((pw.weekstart + '5 days'::interval))) || ','::text) || date((pw.weekstart + '6 days'::interval))) AS weekdates, to_char(pw.contracthours, 'HH24:MI'::text) AS week_contracthours, to_char(pw.workhours, 'HH24:MI'::text) AS week_workhours, to_char(pw.vacancyhours, 'HH24:MI'::text) AS week_vacancyhours, @@ -1157,7 +890,8 @@ CREATE VIEW %%NEWSCHEMA%%.vw_staffreportperioddays AS CASE WHEN (pw.diffhours < '00:00:00'::interval) THEN ('-'::text || replace(to_char(pw.diffhours, 'HH24:MI'::text), '-'::text, ''::text)) ELSE to_char(pw.diffhours, 'HH24:MI'::text) - END AS week_diffhours + END AS week_diffhours, + ((pw.calyear || '-'::text) || lpad((pw.calweek)::text, 2, '0'::text)) AS weekident FROM (%%NEWSCHEMA%%.staffreportperiodweeks pw LEFT JOIN %%NEWSCHEMA%%.staffreportperioddays pd ON (((pw.weekstart = date_trunc('week'::text, (pd.daydate)::timestamp with time zone)) AND (pw.id_staff = pd.id_staff) AND (pw.id_reportperiod = pd.id_reportperiod)))) ORDER BY pd.id_reportperiod, pd.id_staff, pd.daydate; @@ -1170,8 +904,8 @@ CREATE VIEW %%NEWSCHEMA%%.vw_staffreportperiodlist AS to_char(srp.vacancyhours, 'HH24:MI'::text) AS vacancyhours, to_char(srp.recuperationhours, 'HH24:MI'::text) AS recuperationhours, CASE - WHEN (srp.hoursdiff < '00:00:00'::interval) THEN ('-'::text || replace(to_char(srp.hoursdiff, 'HH24:MI'::text), '-'::text, ''::text)) - ELSE to_char(srp.hoursdiff, 'HH24:MI'::text) + WHEN (srp.hoursdiff < '00:00:00'::interval) THEN ('-'::text || replace(to_char((srp.hoursdiff - COALESCE(srp.payedhours, '00:00:00'::interval)), 'HH24:MI'::text), '-'::text, ''::text)) + ELSE to_char((srp.hoursdiff - COALESCE(srp.payedhours, '00:00:00'::interval)), 'HH24:MI'::text) END AS hoursdiff, to_char(srp.totalhours, 'HH24:MI'::text) AS totalhours, srp.id_reportperiod, @@ -1181,535 +915,13 @@ CREATE VIEW %%NEWSCHEMA%%.vw_staffreportperiodlist AS rp.enddate, ((st.surname || ' '::text) || st.prename) AS staffname, st.id_staffgroup, - sgr.groupname + sgr.groupname, + to_char(srp.payedhours, 'HH24:MI'::text) AS payedhours FROM (((%%NEWSCHEMA%%.staffreportperiod srp LEFT JOIN %%NEWSCHEMA%%.staff st ON ((srp.id_staff = st.id))) LEFT JOIN %%NEWSCHEMA%%.reportperiod rp ON ((srp.id_reportperiod = rp.id))) LEFT JOIN %%NEWSCHEMA%%.staffgroups sgr ON ((st.id_staffgroup = sgr.id))) - ORDER BY sgr.groupname, st.surname, st.prename, srp.id_staff, rp.startdate, rp.enddate; - -CREATE VIEW %%NEWSCHEMA%%.vw_staffworkplan_dailylist AS - SELECT staffreportperioddays.id, - staffreportperioddays.id_staff, - staffreportperioddays.daydate, - staffreportperioddays.timestart1, - staffreportperioddays.timeend1, - staffreportperioddays.timestart2, - staffreportperioddays.timeend2, - staffreportperioddays.timepause, - staffreportperioddays.interruptionhours, - staffreportperioddays.workhours, - staffreportperioddays.id_recuperationtype, - staffreportperioddays.recuperationhours, - staffreportperioddays.id_vacancytype, - staffreportperioddays.vacancyhours, - staffreportperioddays.trackedhours, - staffreportperioddays.daytype, - staffreportperioddays.contracthours, - staffreportperioddays.id_reportperiod - FROM %%NEWSCHEMA%%.staffreportperioddays - ORDER BY staffreportperioddays.id_staff, staffreportperioddays.daydate, staffreportperioddays.id_reportperiod; - -CREATE VIEW %%NEWSCHEMA%%.vw_staffworkplan_weekly AS - SELECT stw2.calweek, - to_char((stw2.caldate)::timestamp with time zone, 'YYYY'::text) AS calyear, - stw2.caldate AS weekbegin, - public.getdateslist(stw2.caldate, 7) AS dates, - stw2.id_staff, - max( - CASE - WHEN (stw2.isodow = (1)::double precision) THEN stw2.id - ELSE NULL::bigint - END) AS mon_id, - max( - CASE - WHEN (stw2.isodow = (1)::double precision) THEN to_char((stw2.timestart1)::interval, 'HH24:MI'::text) - ELSE NULL::text - END) AS mon_timestart1, - max( - CASE - WHEN (stw2.isodow = (1)::double precision) THEN to_char((stw2.timeend1)::interval, 'HH24:MI'::text) - ELSE NULL::text - END) AS mon_timeend1, - max( - CASE - WHEN (stw2.isodow = (1)::double precision) THEN to_char((stw2.timestart2)::interval, 'HH24:MI'::text) - ELSE NULL::text - END) AS mon_timestart2, - max( - CASE - WHEN (stw2.isodow = (1)::double precision) THEN to_char((stw2.timeend2)::interval, 'HH24:MI'::text) - ELSE NULL::text - END) AS mon_timeend2, - max( - CASE - WHEN (stw2.isodow = (1)::double precision) THEN to_char((stw2.timepause)::interval, 'HH24:MI'::text) - ELSE NULL::text - END) AS mon_timepause, - max( - CASE - WHEN (stw2.isodow = (1)::double precision) THEN to_char((stw2.vacancyhours)::interval, 'HH24:MI'::text) - ELSE NULL::text - END) AS mon_vacancyhours, - max( - CASE - WHEN (stw2.isodow = (1)::double precision) THEN stw2.vacancyname - ELSE NULL::text - END) AS mon_vacancyname, - max( - CASE - WHEN (stw2.isodow = (1)::double precision) THEN stw2.color - ELSE NULL::text - END) AS mon_color, - max( - CASE - WHEN (stw2.isodow = (1)::double precision) THEN stw2.id_vacancytype - ELSE NULL::integer - END) AS mon_vacancytype, - max( - CASE - WHEN (stw2.isodow = (1)::double precision) THEN stw2.daytype - ELSE NULL::integer - END) AS mon_daytype, - to_char(max( - CASE - WHEN (stw2.isodow = (1)::double precision) THEN ((stw2.time1 + stw2.time2) - (stw2.timepause)::interval) - ELSE NULL::interval - END), 'HH24:MI'::text) AS mon_timetotal, - max( - CASE - WHEN (stw2.isodow = (2)::double precision) THEN stw2.id - ELSE NULL::bigint - END) AS tue_id, - max( - CASE - WHEN (stw2.isodow = (2)::double precision) THEN to_char((stw2.timestart1)::interval, 'HH24:MI'::text) - ELSE NULL::text - END) AS tue_timestart1, - max( - CASE - WHEN (stw2.isodow = (2)::double precision) THEN to_char((stw2.timeend1)::interval, 'HH24:MI'::text) - ELSE NULL::text - END) AS tue_timeend1, - max( - CASE - WHEN (stw2.isodow = (2)::double precision) THEN to_char((stw2.timestart2)::interval, 'HH24:MI'::text) - ELSE NULL::text - END) AS tue_timestart2, - max( - CASE - WHEN (stw2.isodow = (2)::double precision) THEN to_char((stw2.timeend2)::interval, 'HH24:MI'::text) - ELSE NULL::text - END) AS tue_timeend2, - max( - CASE - WHEN (stw2.isodow = (2)::double precision) THEN to_char((stw2.timepause)::interval, 'HH24:MI'::text) - ELSE NULL::text - END) AS tue_timepause, - max( - CASE - WHEN (stw2.isodow = (2)::double precision) THEN to_char((stw2.vacancyhours)::interval, 'HH24:MI'::text) - ELSE NULL::text - END) AS tue_vacancyhours, - max( - CASE - WHEN (stw2.isodow = (2)::double precision) THEN stw2.id_vacancytype - ELSE NULL::integer - END) AS tue_vacancytype, - max( - CASE - WHEN (stw2.isodow = (2)::double precision) THEN stw2.vacancyname - ELSE NULL::text - END) AS tue_vacancyname, - max( - CASE - WHEN (stw2.isodow = (2)::double precision) THEN stw2.color - ELSE NULL::text - END) AS tue_color, - max( - CASE - WHEN (stw2.isodow = (2)::double precision) THEN stw2.daytype - ELSE NULL::integer - END) AS tue_daytype, - to_char(max( - CASE - WHEN (stw2.isodow = (2)::double precision) THEN ((stw2.time1 + stw2.time2) - (stw2.timepause)::interval) - ELSE NULL::interval - END), 'HH24:MI'::text) AS tue_timetotal, - max( - CASE - WHEN (stw2.isodow = (3)::double precision) THEN stw2.id - ELSE NULL::bigint - END) AS wed_id, - max( - CASE - WHEN (stw2.isodow = (3)::double precision) THEN to_char((stw2.timestart1)::interval, 'HH24:MI'::text) - ELSE NULL::text - END) AS wed_timestart1, - max( - CASE - WHEN (stw2.isodow = (3)::double precision) THEN to_char((stw2.timeend1)::interval, 'HH24:MI'::text) - ELSE NULL::text - END) AS wed_timeend1, - max( - CASE - WHEN (stw2.isodow = (3)::double precision) THEN to_char((stw2.timestart2)::interval, 'HH24:MI'::text) - ELSE NULL::text - END) AS wed_timestart2, - max( - CASE - WHEN (stw2.isodow = (3)::double precision) THEN to_char((stw2.timeend2)::interval, 'HH24:MI'::text) - ELSE NULL::text - END) AS wed_timeend2, - max( - CASE - WHEN (stw2.isodow = (3)::double precision) THEN to_char((stw2.timepause)::interval, 'HH24:MI'::text) - ELSE NULL::text - END) AS wed_timepause, - max( - CASE - WHEN (stw2.isodow = (3)::double precision) THEN to_char((stw2.vacancyhours)::interval, 'HH24:MI'::text) - ELSE NULL::text - END) AS wed_vacancyhours, - max( - CASE - WHEN (stw2.isodow = (3)::double precision) THEN stw2.id_vacancytype - ELSE NULL::integer - END) AS wed_vacancytype, - max( - CASE - WHEN (stw2.isodow = (3)::double precision) THEN stw2.vacancyname - ELSE NULL::text - END) AS wed_vacancyname, - max( - CASE - WHEN (stw2.isodow = (3)::double precision) THEN stw2.color - ELSE NULL::text - END) AS wed_color, - max( - CASE - WHEN (stw2.isodow = (3)::double precision) THEN stw2.daytype - ELSE NULL::integer - END) AS wed_daytype, - to_char(max( - CASE - WHEN (stw2.isodow = (3)::double precision) THEN ((stw2.time1 + stw2.time2) - (stw2.timepause)::interval) - ELSE NULL::interval - END), 'HH24:MI'::text) AS wed_timetotal, - max( - CASE - WHEN (stw2.isodow = (4)::double precision) THEN stw2.id - ELSE NULL::bigint - END) AS thu_id, - max( - CASE - WHEN (stw2.isodow = (4)::double precision) THEN to_char((stw2.timestart1)::interval, 'HH24:MI'::text) - ELSE NULL::text - END) AS thu_timestart1, - max( - CASE - WHEN (stw2.isodow = (4)::double precision) THEN to_char((stw2.timeend1)::interval, 'HH24:MI'::text) - ELSE NULL::text - END) AS thu_timeend1, - max( - CASE - WHEN (stw2.isodow = (4)::double precision) THEN to_char((stw2.timestart2)::interval, 'HH24:MI'::text) - ELSE NULL::text - END) AS thu_timestart2, - max( - CASE - WHEN (stw2.isodow = (4)::double precision) THEN to_char((stw2.timeend2)::interval, 'HH24:MI'::text) - ELSE NULL::text - END) AS thu_timeend2, - max( - CASE - WHEN (stw2.isodow = (4)::double precision) THEN to_char((stw2.timepause)::interval, 'HH24:MI'::text) - ELSE NULL::text - END) AS thu_timepause, - max( - CASE - WHEN (stw2.isodow = (4)::double precision) THEN to_char((stw2.vacancyhours)::interval, 'HH24:MI'::text) - ELSE NULL::text - END) AS thu_vacancyhours, - max( - CASE - WHEN (stw2.isodow = (4)::double precision) THEN stw2.id_vacancytype - ELSE NULL::integer - END) AS thu_vacancytype, - max( - CASE - WHEN (stw2.isodow = (4)::double precision) THEN stw2.vacancyname - ELSE NULL::text - END) AS thu_vacancyname, - max( - CASE - WHEN (stw2.isodow = (4)::double precision) THEN stw2.color - ELSE NULL::text - END) AS thu_color, - max( - CASE - WHEN (stw2.isodow = (4)::double precision) THEN stw2.daytype - ELSE NULL::integer - END) AS thu_daytype, - to_char(max( - CASE - WHEN (stw2.isodow = (4)::double precision) THEN ((stw2.time1 + stw2.time2) - (stw2.timepause)::interval) - ELSE NULL::interval - END), 'HH24:MI'::text) AS thu_timetotal, - max( - CASE - WHEN (stw2.isodow = (5)::double precision) THEN stw2.id - ELSE NULL::bigint - END) AS fri_id, - max( - CASE - WHEN (stw2.isodow = (5)::double precision) THEN to_char((stw2.timestart1)::interval, 'HH24:MI'::text) - ELSE NULL::text - END) AS fri_timestart1, - max( - CASE - WHEN (stw2.isodow = (5)::double precision) THEN to_char((stw2.timeend1)::interval, 'HH24:MI'::text) - ELSE NULL::text - END) AS fri_timeend1, - max( - CASE - WHEN (stw2.isodow = (5)::double precision) THEN to_char((stw2.timestart2)::interval, 'HH24:MI'::text) - ELSE NULL::text - END) AS fri_timestart2, - max( - CASE - WHEN (stw2.isodow = (5)::double precision) THEN to_char((stw2.timeend2)::interval, 'HH24:MI'::text) - ELSE NULL::text - END) AS fri_timeend2, - max( - CASE - WHEN (stw2.isodow = (5)::double precision) THEN to_char((stw2.timepause)::interval, 'HH24:MI'::text) - ELSE NULL::text - END) AS fri_timepause, - max( - CASE - WHEN (stw2.isodow = (5)::double precision) THEN to_char((stw2.vacancyhours)::interval, 'HH24:MI'::text) - ELSE NULL::text - END) AS fri_vacancyhours, - max( - CASE - WHEN (stw2.isodow = (5)::double precision) THEN stw2.id_vacancytype - ELSE NULL::integer - END) AS fri_vacancytype, - max( - CASE - WHEN (stw2.isodow = (5)::double precision) THEN stw2.vacancyname - ELSE NULL::text - END) AS fri_vacancyname, - max( - CASE - WHEN (stw2.isodow = (5)::double precision) THEN stw2.color - ELSE NULL::text - END) AS fri_color, - max( - CASE - WHEN (stw2.isodow = (5)::double precision) THEN stw2.daytype - ELSE NULL::integer - END) AS fri_daytype, - to_char(max( - CASE - WHEN (stw2.isodow = (5)::double precision) THEN ((stw2.time1 + stw2.time2) - (stw2.timepause)::interval) - ELSE NULL::interval - END), 'HH24:MI'::text) AS fri_timetotal, - max( - CASE - WHEN (stw2.isodow = (6)::double precision) THEN stw2.id - ELSE NULL::bigint - END) AS sat_id, - max( - CASE - WHEN (stw2.isodow = (6)::double precision) THEN to_char((stw2.timestart1)::interval, 'HH24:MI'::text) - ELSE NULL::text - END) AS sat_timestart1, - max( - CASE - WHEN (stw2.isodow = (6)::double precision) THEN to_char((stw2.timeend1)::interval, 'HH24:MI'::text) - ELSE NULL::text - END) AS sat_timeend1, - max( - CASE - WHEN (stw2.isodow = (6)::double precision) THEN to_char((stw2.timestart2)::interval, 'HH24:MI'::text) - ELSE NULL::text - END) AS sat_timestart2, - max( - CASE - WHEN (stw2.isodow = (6)::double precision) THEN to_char((stw2.timeend2)::interval, 'HH24:MI'::text) - ELSE NULL::text - END) AS sat_timeend2, - max( - CASE - WHEN (stw2.isodow = (6)::double precision) THEN to_char((stw2.timepause)::interval, 'HH24:MI'::text) - ELSE NULL::text - END) AS sat_timepause, - max( - CASE - WHEN (stw2.isodow = (6)::double precision) THEN to_char((stw2.vacancyhours)::interval, 'HH24:MI'::text) - ELSE NULL::text - END) AS sat_vacancyhours, - max( - CASE - WHEN (stw2.isodow = (6)::double precision) THEN stw2.id_vacancytype - ELSE NULL::integer - END) AS sat_vacancytype, - max( - CASE - WHEN (stw2.isodow = (6)::double precision) THEN stw2.vacancyname - ELSE NULL::text - END) AS sat_vacancyname, - max( - CASE - WHEN (stw2.isodow = (6)::double precision) THEN stw2.color - ELSE NULL::text - END) AS sat_color, - max( - CASE - WHEN (stw2.isodow = (6)::double precision) THEN stw2.daytype - ELSE NULL::integer - END) AS sat_daytype, - to_char(max( - CASE - WHEN (stw2.isodow = (6)::double precision) THEN ((stw2.time1 + stw2.time2) - (stw2.timepause)::interval) - ELSE NULL::interval - END), 'HH24:MI'::text) AS sat_timetotal, - max( - CASE - WHEN (stw2.isodow = (7)::double precision) THEN stw2.id - ELSE NULL::bigint - END) AS sun_id, - max( - CASE - WHEN (stw2.isodow = (7)::double precision) THEN to_char((stw2.timestart1)::interval, 'HH24:MI'::text) - ELSE NULL::text - END) AS sun_timestart1, - max( - CASE - WHEN (stw2.isodow = (7)::double precision) THEN to_char((stw2.timeend1)::interval, 'HH24:MI'::text) - ELSE NULL::text - END) AS sun_timeend1, - max( - CASE - WHEN (stw2.isodow = (7)::double precision) THEN to_char((stw2.timestart2)::interval, 'HH24:MI'::text) - ELSE NULL::text - END) AS sun_timestart2, - max( - CASE - WHEN (stw2.isodow = (7)::double precision) THEN to_char((stw2.timeend2)::interval, 'HH24:MI'::text) - ELSE NULL::text - END) AS sun_timeend2, - max( - CASE - WHEN (stw2.isodow = (7)::double precision) THEN to_char((stw2.timepause)::interval, 'HH24:MI'::text) - ELSE NULL::text - END) AS sun_timepause, - max( - CASE - WHEN (stw2.isodow = (7)::double precision) THEN to_char((stw2.vacancyhours)::interval, 'HH24:MI'::text) - ELSE NULL::text - END) AS sun_vacancyhours, - max( - CASE - WHEN (stw2.isodow = (7)::double precision) THEN stw2.id_vacancytype - ELSE NULL::integer - END) AS sun_vacancytype, - max( - CASE - WHEN (stw2.isodow = (7)::double precision) THEN stw2.vacancyname - ELSE NULL::text - END) AS sun_vacancyname, - max( - CASE - WHEN (stw2.isodow = (7)::double precision) THEN stw2.color - ELSE NULL::text - END) AS sun_color, - max( - CASE - WHEN (stw2.isodow = (7)::double precision) THEN stw2.daytype - ELSE NULL::integer - END) AS sun_daytype, - to_char(max( - CASE - WHEN (stw2.isodow = (7)::double precision) THEN ((stw2.time1 + stw2.time2) - (stw2.timepause)::interval) - ELSE NULL::interval - END), 'HH24:MI'::text) AS sun_timetotal, - to_char(sum(((stw2.time1 + stw2.time2) - (stw2.timepause)::interval)), 'HH24:MI'::text) AS week_timetotal, - CASE - WHEN ((stw2.calweek IS NOT NULL) AND (stw2.id_staff IS NOT NULL)) THEN public.weekvacancy('%%NEWSCHEMA%%'::text, stw2.calweek, stw2.id_staff) - ELSE NULL::text - END AS week_vacancy, - stw2.staffname AS dspstaffname - FROM ( SELECT stw.daydate, - date_part('week'::text, stw.daydate) AS calweek, - (date_trunc('week'::text, (stw.daydate)::timestamp with time zone))::date AS caldate, - date_part('isodow'::text, stw.daydate) AS isodow, - stw.id, - stw.id_staff, - ((st.surname || ' '::text) || st.prename) AS staffname, - stw.timestart1, - stw.timeend1, - stw.vacancyhours, - stw.id_vacancytype, - vt.color, - vt.vacancyname, - stw.daytype, - CASE - WHEN (stw.timestart1 > stw.timeend1) THEN ('24:00:00'::time without time zone - ((stw.timestart1 - stw.timeend1))::time without time zone) - ELSE (stw.timeend1 - stw.timestart1) - END AS time1, - stw.timestart2, - stw.timeend2, - CASE - WHEN (stw.timestart2 > stw.timeend2) THEN ('24:00:00'::time without time zone - ((stw.timestart2 - stw.timeend2))::time without time zone) - ELSE (stw.timeend2 - stw.timestart2) - END AS time2, - stw.timepause - FROM ((%%NEWSCHEMA%%.staffreportperioddays stw - LEFT JOIN %%NEWSCHEMA%%.staff st ON ((stw.id_staff = st.id))) - LEFT JOIN %%NEWSCHEMA%%.vacancytypes vt ON ((stw.id_vacancytype = vt.id)))) stw2 - GROUP BY stw2.calweek, stw2.caldate, stw2.id_staff, stw2.staffname; - -CREATE VIEW %%NEWSCHEMA%%.vw_staffworkplandata AS - SELECT date_part('isoyear'::text, swp.daydate) AS calyear, - date_part('week'::text, swp.daydate) AS calweek, - to_char((swp.daydate)::timestamp with time zone, 'dy'::text) AS weekday, - swp.id, - swp.id_staff, - swp.daydate, - ((st.surname || ' '::text) || st.prename) AS staffname, - to_char((swp.timestart1)::interval, 'HH24:MI'::text) AS timestart1, - to_char((swp.timeend1)::interval, 'HH24:MI'::text) AS timeend1, - to_char((swp.timestart2)::interval, 'HH24:MI'::text) AS timestart2, - to_char((swp.timeend2)::interval, 'HH24:MI'::text) AS timeend2, - to_char((swp.timepause)::interval, 'HH24:MI'::text) AS timepause, - to_char((swp.vacancyhours)::interval, 'HH24:MI'::text) AS vacancyhours, - to_char((swp.contracthours)::interval, 'HH24:MI'::text) AS contracthours, - to_char((swp.interruptionhours)::interval, 'HH24:MI'::text) AS interruptionhours, - swp.id_staffgroup, - swp.id_vacancytype, - swp.id_recuperationtype, - swp.daytype, - to_char((swp.workhours)::interval, 'HH24:MI'::text) AS totalhours, - to_char((swp.recuperationhours)::interval, 'HH24:MI'::text) AS recuperationhours, - to_char((swp.trackedhours)::interval, 'HH24:MI'::text) AS trackedhours, - swp.id_reportperiod - FROM (%%NEWSCHEMA%%.staffreportperioddays swp - JOIN %%NEWSCHEMA%%.staff st ON ((swp.id_staff = st.id))); - -CREATE VIEW %%NEWSCHEMA%%.vw_staffworkplanstafflist AS - SELECT sc.id AS id_staffcontract, - st.id AS id_staff, - ((st.surname || ' '::text) || st.prename) AS staffname, - sc.startdate, - sc.enddate, - sc.id_staffgroup, - sc.weekhours, - sc.weekdays - FROM (%%NEWSCHEMA%%.staff st - LEFT JOIN %%NEWSCHEMA%%.staffcontract sc ON ((st.id = sc.id_staff))); + ORDER BY st.surname, st.prename, srp.id_staff, rp.startdate, rp.enddate; CREATE VIEW %%NEWSCHEMA%%.vw_vacancylist AS SELECT vacancytypes.id, @@ -1717,135 +929,81 @@ CREATE VIEW %%NEWSCHEMA%%.vw_vacancylist AS vacancytypes.isworktime FROM %%NEWSCHEMA%%.vacancytypes; +CREATE TABLE %%NEWSCHEMA%%.workplandays ( + id integer NOT NULL, + id_workplan integer, + weekday integer, + start1 time without time zone, + end1 time without time zone, + start2 time without time zone, + end2 time without time zone, + pause time without time zone +); + +CREATE VIEW %%NEWSCHEMA%%.vw_workplandaysdata AS + SELECT workplandays.id, + workplandays.id_workplan, + workplandays.weekday, + workplandays.start1, + workplandays.end1, + workplandays.start2, + workplandays.end2, + workplandays.pause + FROM %%NEWSCHEMA%%.workplandays; + +CREATE VIEW %%NEWSCHEMA%%.vw_workplandayslist AS +SELECT + NULL::text AS workplan, + NULL::text AS weekhours, + NULL::integer AS id, + NULL::integer AS id_workplan, + NULL::integer AS weekday, + NULL::text AS start1, + NULL::text AS end1, + NULL::text AS start2, + NULL::text AS end2, + NULL::text AS pause, + NULL::text AS dayhours, + NULL::bigint AS staffcount; + CREATE VIEW %%NEWSCHEMA%%.vw_workplanlist AS SELECT workplans.id, workplans.workplan FROM %%NEWSCHEMA%%.workplans; -CREATE VIEW %%NEWSCHEMA%%.vw_workplansdata AS - SELECT workplans.id, - workplans.workplan, - to_char(((((((COALESCE(( - CASE - WHEN (workplans.mon_timeend2 IS NOT NULL) THEN ((workplans.mon_timeend2 - workplans.mon_timestart1) - (workplans.mon_timestart2 - workplans.mon_timeend1)) - ELSE (workplans.mon_timeend1 - workplans.mon_timestart1) - END - COALESCE((workplans.mon_timepause)::interval, '00:00:00'::interval)), '00:00:00'::interval) + COALESCE(( - CASE - WHEN (workplans.tue_timeend2 IS NOT NULL) THEN ((workplans.tue_timeend2 - workplans.tue_timestart1) - (workplans.tue_timestart2 - workplans.tue_timeend1)) - ELSE (workplans.tue_timeend1 - workplans.tue_timestart1) - END - COALESCE((workplans.tue_timepause)::interval, '00:00:00'::interval)), '00:00:00'::interval)) + COALESCE(( - CASE - WHEN (workplans.wed_timeend2 IS NOT NULL) THEN ((workplans.wed_timeend2 - workplans.wed_timestart1) - (workplans.wed_timestart2 - workplans.wed_timeend1)) - ELSE (workplans.wed_timeend1 - workplans.wed_timestart1) - END - COALESCE((workplans.wed_timepause)::interval, '00:00:00'::interval)), '00:00:00'::interval)) + COALESCE(( - CASE - WHEN (workplans.thu_timeend2 IS NOT NULL) THEN ((workplans.thu_timeend2 - workplans.thu_timestart1) - (workplans.thu_timestart2 - workplans.thu_timeend1)) - ELSE (workplans.thu_timeend1 - workplans.thu_timestart1) - END - COALESCE((workplans.thu_timepause)::interval, '00:00:00'::interval)), '00:00:00'::interval)) + COALESCE(( - CASE - WHEN (workplans.fri_timeend2 IS NOT NULL) THEN ((workplans.fri_timeend2 - workplans.fri_timestart1) - (workplans.fri_timestart2 - workplans.fri_timeend1)) - ELSE (workplans.fri_timeend1 - workplans.fri_timestart1) - END - COALESCE((workplans.fri_timepause)::interval, '00:00:00'::interval)), '00:00:00'::interval)) + COALESCE(( - CASE - WHEN (workplans.sat_timeend2 IS NOT NULL) THEN ((workplans.sat_timeend2 - workplans.sat_timestart1) - (workplans.sat_timestart2 - workplans.sat_timeend1)) - ELSE (workplans.sat_timeend1 - workplans.sat_timestart1) - END - COALESCE((workplans.sat_timepause)::interval, '00:00:00'::interval)), '00:00:00'::interval)) + COALESCE(( - CASE - WHEN (workplans.sun_timeend2 IS NOT NULL) THEN ((workplans.sun_timeend2 - workplans.sun_timestart1) - (workplans.sun_timestart2 - workplans.sun_timeend1)) - ELSE (workplans.sun_timeend1 - workplans.sun_timestart1) - END - COALESCE((workplans.sun_timepause)::interval, '00:00:00'::interval)), '00:00:00'::interval)), 'HH24:MI'::text) AS weektotal, - to_char((workplans.mon_timestart1)::interval, 'HH24:MI'::text) AS mon_timestart1, - to_char((workplans.mon_timeend1)::interval, 'HH24:MI'::text) AS mon_timeend1, - to_char((workplans.mon_timestart2)::interval, 'HH24:MI'::text) AS mon_timestart2, - to_char((workplans.mon_timeend2)::interval, 'HH24:MI'::text) AS mon_timeend2, - to_char((workplans.mon_timepause)::interval, 'HH24:MI'::text) AS mon_timepause, - to_char((workplans.mon_timestart2 - workplans.mon_timeend1), 'HH24:MI'::text) AS mon_interruption, - to_char(( - CASE - WHEN (workplans.mon_timeend2 IS NOT NULL) THEN ((workplans.mon_timeend2 - workplans.mon_timestart1) - (workplans.mon_timestart2 - workplans.mon_timeend1)) - ELSE (workplans.mon_timeend1 - workplans.mon_timestart1) - END - COALESCE((workplans.mon_timepause)::interval, '00:00:00'::interval)), 'HH24:MI'::text) AS mon_total, - to_char((workplans.tue_timestart1)::interval, 'HH24:MI'::text) AS tue_timestart1, - to_char((workplans.tue_timeend1)::interval, 'HH24:MI'::text) AS tue_timeend1, - to_char((workplans.tue_timestart2)::interval, 'HH24:MI'::text) AS tue_timestart2, - to_char((workplans.tue_timeend2)::interval, 'HH24:MI'::text) AS tue_timeend2, - to_char((workplans.tue_timepause)::interval, 'HH24:MI'::text) AS tue_timepause, - to_char((workplans.tue_timestart2 - workplans.tue_timeend1), 'HH24:MI'::text) AS tue_interruption, - to_char(( - CASE - WHEN (workplans.tue_timeend2 IS NOT NULL) THEN ((workplans.tue_timeend2 - workplans.tue_timestart1) - (workplans.tue_timestart2 - workplans.tue_timeend1)) - ELSE (workplans.tue_timeend1 - workplans.tue_timestart1) - END - COALESCE((workplans.tue_timepause)::interval, '00:00:00'::interval)), 'HH24:MI'::text) AS tue_total, - to_char((workplans.wed_timestart1)::interval, 'HH24:MI'::text) AS wed_timestart1, - to_char((workplans.wed_timeend1)::interval, 'HH24:MI'::text) AS wed_timeend1, - to_char((workplans.wed_timestart2)::interval, 'HH24:MI'::text) AS wed_timestart2, - to_char((workplans.wed_timeend2)::interval, 'HH24:MI'::text) AS wed_timeend2, - to_char((workplans.wed_timepause)::interval, 'HH24:MI'::text) AS wed_timepause, - to_char((workplans.wed_timestart2 - workplans.wed_timeend1), 'HH24:MI'::text) AS wed_interruption, - to_char(( - CASE - WHEN (workplans.wed_timeend2 IS NOT NULL) THEN ((workplans.wed_timeend2 - workplans.wed_timestart1) - (workplans.wed_timestart2 - workplans.wed_timeend1)) - ELSE (workplans.wed_timeend1 - workplans.wed_timestart1) - END - COALESCE((workplans.wed_timepause)::interval, '00:00:00'::interval)), 'HH24:MI'::text) AS wed_total, - to_char((workplans.thu_timestart1)::interval, 'HH24:MI'::text) AS thu_timestart1, - to_char((workplans.thu_timeend1)::interval, 'HH24:MI'::text) AS thu_timeend1, - to_char((workplans.thu_timestart2)::interval, 'HH24:MI'::text) AS thu_timestart2, - to_char((workplans.thu_timeend2)::interval, 'HH24:MI'::text) AS thu_timeend2, - to_char((workplans.thu_timepause)::interval, 'HH24:MI'::text) AS thu_timepause, - to_char((workplans.thu_timestart2 - workplans.thu_timeend1), 'HH24:MI'::text) AS thu_interruption, - to_char(( - CASE - WHEN (workplans.thu_timeend2 IS NOT NULL) THEN ((workplans.thu_timeend2 - workplans.thu_timestart1) - (workplans.thu_timestart2 - workplans.thu_timeend1)) - ELSE (workplans.thu_timeend1 - workplans.thu_timestart1) - END - COALESCE((workplans.thu_timepause)::interval, '00:00:00'::interval)), 'HH24:MI'::text) AS thu_total, - to_char((workplans.fri_timestart1)::interval, 'HH24:MI'::text) AS fri_timestart1, - to_char((workplans.fri_timeend1)::interval, 'HH24:MI'::text) AS fri_timeend1, - to_char((workplans.fri_timestart2)::interval, 'HH24:MI'::text) AS fri_timestart2, - to_char((workplans.fri_timeend2)::interval, 'HH24:MI'::text) AS fri_timeend2, - to_char((workplans.fri_timepause)::interval, 'HH24:MI'::text) AS fri_timepause, - to_char((workplans.fri_timestart2 - workplans.fri_timeend1), 'HH24:MI'::text) AS fri_interruption, - to_char(( - CASE - WHEN (workplans.fri_timeend2 IS NOT NULL) THEN ((workplans.fri_timeend2 - workplans.fri_timestart1) - (workplans.fri_timestart2 - workplans.fri_timeend1)) - ELSE (workplans.fri_timeend1 - workplans.fri_timestart1) - END - COALESCE((workplans.fri_timepause)::interval, '00:00:00'::interval)), 'HH24:MI'::text) AS fri_total, - to_char((workplans.sat_timestart1)::interval, 'HH24:MI'::text) AS sat_timestart1, - to_char((workplans.sat_timeend1)::interval, 'HH24:MI'::text) AS sat_timeend1, - to_char((workplans.sat_timestart2)::interval, 'HH24:MI'::text) AS sat_timestart2, - to_char((workplans.sat_timeend2)::interval, 'HH24:MI'::text) AS sat_timeend2, - to_char((workplans.sat_timepause)::interval, 'HH24:MI'::text) AS sat_timepause, - to_char((workplans.sat_timestart2 - workplans.sat_timeend1), 'HH24:MI'::text) AS sat_interruption, - to_char(( - CASE - WHEN (workplans.sat_timeend2 IS NOT NULL) THEN ((workplans.sat_timeend2 - workplans.sat_timestart1) - (workplans.sat_timestart2 - workplans.sat_timeend1)) - ELSE (workplans.sat_timeend1 - workplans.sat_timestart1) - END - COALESCE((workplans.sat_timepause)::interval, '00:00:00'::interval)), 'HH24:MI'::text) AS sat_total, - to_char((workplans.sun_timestart1)::interval, 'HH24:MI'::text) AS sun_timestart1, - to_char((workplans.sun_timeend1)::interval, 'HH24:MI'::text) AS sun_timeend1, - to_char((workplans.sun_timestart2)::interval, 'HH24:MI'::text) AS sun_timestart2, - to_char((workplans.sun_timeend2)::interval, 'HH24:MI'::text) AS sun_timeend2, - to_char((workplans.sun_timepause)::interval, 'HH24:MI'::text) AS sun_timepause, - to_char((workplans.sun_timestart2 - workplans.sat_timeend1), 'HH24:MI'::text) AS sun_interruption, - to_char(( - CASE - WHEN (workplans.sun_timeend2 IS NOT NULL) THEN ((workplans.sun_timeend2 - workplans.sun_timestart1) - (workplans.sun_timestart2 - workplans.sun_timeend1)) - ELSE (workplans.sun_timeend1 - workplans.sun_timestart1) - END - COALESCE((workplans.sun_timepause)::interval, '00:00:00'::interval)), 'HH24:MI'::text) AS sun_total - FROM %%NEWSCHEMA%%.workplans; +CREATE TABLE %%NEWSCHEMA%%.worktimes ( + id integer NOT NULL, + startdate date, + enddate date, + defaultdayhours interval, + maxdayhours interval, + defaultweekhours interval, + maxweekhours interval, + maxinterruptionhours interval, + isdefault boolean +); -CREATE VIEW %%NEWSCHEMA%%.vw_workplans AS - SELECT workplans.id, - workplans.workplan, - vw_workplansdata.weektotal, - ((((COALESCE(((to_char((workplans.mon_timestart1)::interval, 'HH24:MI'::text) || ' - '::text) || to_char((workplans.mon_timeend1)::interval, 'HH24:MI'::text)), ''::text) || COALESCE(((('
'::text || to_char((workplans.mon_timestart2)::interval, 'HH24:MI'::text)) || ' - '::text) || to_char((workplans.mon_timeend2)::interval, 'HH24:MI'::text)), ''::text)) || COALESCE((('
'::text || 'Pause: '::text) || to_char((workplans.mon_timepause)::interval, 'HH24:MI'::text)), ''::text)) || COALESCE((('
'::text || 'Coupure: '::text) || vw_workplansdata.mon_interruption), ''::text)) || COALESCE((('
'::text || 'Total: '::text) || vw_workplansdata.mon_total), ''::text)) AS dspmontimes, - ((((COALESCE(((to_char((workplans.tue_timestart1)::interval, 'HH24:MI'::text) || ' - '::text) || to_char((workplans.tue_timeend1)::interval, 'HH24:MI'::text)), ''::text) || COALESCE(((('
'::text || to_char((workplans.tue_timestart2)::interval, 'HH24:MI'::text)) || ' - '::text) || to_char((workplans.tue_timeend2)::interval, 'HH24:MI'::text)), ''::text)) || COALESCE((('
'::text || 'Pause: '::text) || to_char((workplans.tue_timepause)::interval, 'HH24:MI'::text)), ''::text)) || COALESCE((('
'::text || 'Coupure: '::text) || vw_workplansdata.tue_interruption), ''::text)) || COALESCE((('
'::text || 'Total: '::text) || vw_workplansdata.tue_total), ''::text)) AS dsptuetimes, - ((((COALESCE(((to_char((workplans.wed_timestart1)::interval, 'HH24:MI'::text) || ' - '::text) || to_char((workplans.wed_timeend1)::interval, 'HH24:MI'::text)), ''::text) || COALESCE(((('
'::text || to_char((workplans.wed_timestart2)::interval, 'HH24:MI'::text)) || ' - '::text) || to_char((workplans.wed_timeend2)::interval, 'HH24:MI'::text)), ''::text)) || COALESCE((('
'::text || 'Pause: '::text) || to_char((workplans.wed_timepause)::interval, 'HH24:MI'::text)), ''::text)) || COALESCE((('
'::text || 'Coupure: '::text) || vw_workplansdata.wed_interruption), ''::text)) || COALESCE((('
'::text || 'Total: '::text) || vw_workplansdata.wed_total), ''::text)) AS dspwedtimes, - ((((COALESCE(((to_char((workplans.thu_timestart1)::interval, 'HH24:MI'::text) || ' - '::text) || to_char((workplans.thu_timeend1)::interval, 'HH24:MI'::text)), ''::text) || COALESCE(((('
'::text || to_char((workplans.thu_timestart2)::interval, 'HH24:MI'::text)) || ' - '::text) || to_char((workplans.thu_timeend2)::interval, 'HH24:MI'::text)), ''::text)) || COALESCE((('
'::text || 'Pause: '::text) || to_char((workplans.thu_timepause)::interval, 'HH24:MI'::text)), ''::text)) || COALESCE((('
'::text || 'Coupure: '::text) || vw_workplansdata.thu_interruption), ''::text)) || COALESCE((('
'::text || 'Total: '::text) || vw_workplansdata.thu_total), ''::text)) AS dspthutimes, - ((((COALESCE(((to_char((workplans.fri_timestart1)::interval, 'HH24:MI'::text) || ' -'::text) || to_char((workplans.fri_timeend1)::interval, 'HH24:MI'::text)), ''::text) || COALESCE(((('
'::text || to_char((workplans.fri_timestart2)::interval, 'HH24:MI'::text)) || ' - '::text) || to_char((workplans.fri_timeend2)::interval, 'HH24:MI'::text)), ''::text)) || COALESCE((('
'::text || 'Pause: '::text) || to_char((workplans.fri_timepause)::interval, 'HH24:MI'::text)), ''::text)) || COALESCE((('
'::text || 'Coupure: '::text) || vw_workplansdata.fri_interruption), ''::text)) || COALESCE((('
'::text || 'Total: '::text) || vw_workplansdata.fri_total), ''::text)) AS dspfritimes, - ((((COALESCE(((to_char((workplans.sat_timestart1)::interval, 'HH24:MI'::text) || ' - '::text) || to_char((workplans.sat_timeend1)::interval, 'HH24:MI'::text)), ''::text) || COALESCE(((('
'::text || to_char((workplans.sat_timestart2)::interval, 'HH24:MI'::text)) || ' - '::text) || to_char((workplans.sat_timeend2)::interval, 'HH24:MI'::text)), ''::text)) || COALESCE((('
'::text || 'Pause: '::text) || to_char((workplans.sat_timepause)::interval, 'HH24:MI'::text)), ''::text)) || COALESCE((('
'::text || 'Coupure: '::text) || vw_workplansdata.sat_interruption), ''::text)) || COALESCE((('
'::text || 'Total: '::text) || vw_workplansdata.sat_total), ''::text)) AS dspsattimes, - ((((COALESCE(((to_char((workplans.sun_timestart1)::interval, 'HH24:MI'::text) || ' - '::text) || to_char((workplans.sun_timeend1)::interval, 'HH24:MI'::text)), ''::text) || COALESCE(((('
'::text || to_char((workplans.sun_timestart2)::interval, 'HH24:MI'::text)) || ' - '::text) || to_char((workplans.sun_timeend2)::interval, 'HH24:MI'::text)), ''::text)) || COALESCE((('
'::text || 'Pause: '::text) || to_char((workplans.sun_timepause)::interval, 'HH24:MI'::text)), ''::text)) || COALESCE((('
'::text || 'Coupure: '::text) || vw_workplansdata.sun_interruption), ''::text)) || COALESCE((('
'::text || 'Total: '::text) || vw_workplansdata.sun_total), ''::text)) AS dspsuntimes - FROM (%%NEWSCHEMA%%.workplans - JOIN %%NEWSCHEMA%%.vw_workplansdata ON ((workplans.id = vw_workplansdata.id))); +CREATE VIEW %%NEWSCHEMA%%.vw_worktimeslist AS + SELECT worktimes.id, + worktimes.startdate, + worktimes.enddate, + worktimes.isdefault, + to_char(worktimes.defaultdayhours, 'HH24:MI'::text) AS defaultdayhours, + to_char(worktimes.maxdayhours, 'HH24:MI'::text) AS maxdayhours, + to_char(worktimes.defaultweekhours, 'HH24:MI'::text) AS defaultweekhours, + to_char(worktimes.maxweekhours, 'HH24:MI'::text) AS maxweekhours, + to_char(worktimes.maxinterruptionhours, 'HH24:MI'::text) AS maxinterruptionhours + FROM %%NEWSCHEMA%%.worktimes + ORDER BY worktimes.startdate NULLS FIRST, worktimes.enddate NULLS FIRST; + +CREATE SEQUENCE %%NEWSCHEMA%%.workplandays_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + +ALTER SEQUENCE %%NEWSCHEMA%%.workplandays_id_seq OWNED BY %%NEWSCHEMA%%.workplandays.id; CREATE SEQUENCE %%NEWSCHEMA%%.workplans_id_seq START WITH 1 @@ -1856,6 +1014,15 @@ CREATE SEQUENCE %%NEWSCHEMA%%.workplans_id_seq ALTER SEQUENCE %%NEWSCHEMA%%.workplans_id_seq OWNED BY %%NEWSCHEMA%%.workplans.id; +CREATE SEQUENCE %%NEWSCHEMA%%.worktimes_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + +ALTER SEQUENCE %%NEWSCHEMA%%.worktimes_id_seq OWNED BY %%NEWSCHEMA%%.worktimes.id; + CREATE SEQUENCE %%NEWSCHEMA%%.worktypes_id_seq START WITH 1 INCREMENT BY 1 @@ -1865,39 +1032,6 @@ CREATE SEQUENCE %%NEWSCHEMA%%.worktypes_id_seq ALTER SEQUENCE %%NEWSCHEMA%%.worktypes_id_seq OWNED BY %%NEWSCHEMA%%.vacancytypes.id; -CREATE VIEW %%NEWSCHEMA%%.zzold_vw_staffworkplanlist AS -SELECT - NULL::double precision AS calweek, - NULL::double precision AS calyear, - NULL::date AS weekstart, - NULL::date AS weekend, - NULL::text AS dates, - NULL::integer AS id_staff, - NULL::text AS dspstaffname, - NULL::integer AS id_staffgroup, - NULL::text AS dspweektotals, - NULL::interval AS contracthours, - NULL::interval AS plannedhours, - NULL::interval AS vacancyhours, - NULL::interval AS recuperationhours, - NULL::interval AS hoursdiff, - NULL::bigint AS mon_id, - NULL::text AS dspmontimes, - NULL::bigint AS tue_id, - NULL::text AS dsptuetimes, - NULL::bigint AS wed_id, - NULL::text AS dspwedtimes, - NULL::bigint AS thu_id, - NULL::text AS dspthutimes, - NULL::bigint AS fri_id, - NULL::text AS dspfritimes, - NULL::bigint AS sat_id, - NULL::text AS dspsattimes, - NULL::bigint AS sun_id, - NULL::text AS dspsuntimes; - -ALTER TABLE ONLY %%NEWSCHEMA%%.editlog ALTER COLUMN id SET DEFAULT nextval('%%NEWSCHEMA%%.editlog_id_seq'::regclass); - ALTER TABLE ONLY %%NEWSCHEMA%%.reportperiod ALTER COLUMN id SET DEFAULT nextval('%%NEWSCHEMA%%.reportperiod_id_seq'::regclass); ALTER TABLE ONLY %%NEWSCHEMA%%.staff ALTER COLUMN id SET DEFAULT nextval('%%NEWSCHEMA%%.staff_id_seq'::regclass); @@ -1918,12 +1052,11 @@ ALTER TABLE ONLY %%NEWSCHEMA%%.vacancydays ALTER COLUMN id SET DEFAULT nextval(' ALTER TABLE ONLY %%NEWSCHEMA%%.vacancytypes ALTER COLUMN id SET DEFAULT nextval('%%NEWSCHEMA%%.worktypes_id_seq'::regclass); -ALTER TABLE ONLY %%NEWSCHEMA%%.workplans ALTER COLUMN id SET DEFAULT nextval('%%NEWSCHEMA%%.workplans_id_seq'::regclass); +ALTER TABLE ONLY %%NEWSCHEMA%%.workplandays ALTER COLUMN id SET DEFAULT nextval('%%NEWSCHEMA%%.workplandays_id_seq'::regclass); -ALTER TABLE ONLY %%NEWSCHEMA%%.zzold_staffreportperiodsums ALTER COLUMN id SET DEFAULT nextval('%%NEWSCHEMA%%.staffreportperiodsums_id_seq'::regclass); +ALTER TABLE ONLY %%NEWSCHEMA%%.workplans ALTER COLUMN id SET DEFAULT nextval('%%NEWSCHEMA%%.workplans_id_seq'::regclass); -ALTER TABLE ONLY %%NEWSCHEMA%%.editlog - ADD CONSTRAINT editlog_pkey PRIMARY KEY (id); +ALTER TABLE ONLY %%NEWSCHEMA%%.worktimes ALTER COLUMN id SET DEFAULT nextval('%%NEWSCHEMA%%.worktimes_id_seq'::regclass); ALTER TABLE ONLY %%NEWSCHEMA%%.reportperiod ADD CONSTRAINT reportperiod_pkey PRIMARY KEY (id); @@ -1940,9 +1073,6 @@ ALTER TABLE ONLY %%NEWSCHEMA%%.staffcontract ALTER TABLE ONLY %%NEWSCHEMA%%.staffreportperiod ADD CONSTRAINT staffreportperiod_pkey PRIMARY KEY (id); -ALTER TABLE ONLY %%NEWSCHEMA%%.zzold_staffreportperiodsums - ADD CONSTRAINT staffreportperiodsums_pkey PRIMARY KEY (id); - ALTER TABLE ONLY %%NEWSCHEMA%%.staffvacancy ADD CONSTRAINT staffvacancy_pkey PRIMARY KEY (id); @@ -1952,9 +1082,6 @@ ALTER TABLE ONLY %%NEWSCHEMA%%.staffreportperiodweeks ALTER TABLE ONLY %%NEWSCHEMA%%.staffreportperioddays ADD CONSTRAINT staffworkplan_pkey PRIMARY KEY (id); -ALTER TABLE ONLY %%NEWSCHEMA%%.zzold_staffreportperiodsums - ADD CONSTRAINT uniq_staffperiod_cal UNIQUE (id_reportperiod, id_staff); - ALTER TABLE ONLY %%NEWSCHEMA%%.staffreportperiod ADD CONSTRAINT uniq_staffreportperiod_cal UNIQUE (id_reportperiod, id_staff); @@ -1967,123 +1094,39 @@ ALTER TABLE ONLY %%NEWSCHEMA%%.staffreportperioddays ALTER TABLE ONLY %%NEWSCHEMA%%.vacancydays ADD CONSTRAINT vacancydays_pkey PRIMARY KEY (id); +ALTER TABLE ONLY %%NEWSCHEMA%%.workplandays + ADD CONSTRAINT workplandays_pkey PRIMARY KEY (id); + +ALTER TABLE ONLY %%NEWSCHEMA%%.workplandays + ADD CONSTRAINT workplandays_un UNIQUE (id_workplan, weekday); + ALTER TABLE ONLY %%NEWSCHEMA%%.workplans ADD CONSTRAINT workplans_pkey PRIMARY KEY (id); +ALTER TABLE ONLY %%NEWSCHEMA%%.worktimes + ADD CONSTRAINT worktimes_pkey PRIMARY KEY (id); + ALTER TABLE ONLY %%NEWSCHEMA%%.vacancytypes ADD CONSTRAINT worktypes_pkey PRIMARY KEY (id); -CREATE OR REPLACE VIEW %%NEWSCHEMA%%.zzold_vw_staffworkplanlist AS - SELECT stw2.calweek, - stw2.calyear, - stw2.caldate AS weekstart, - date((stw2.caldate + '6 days'::interval)) AS weekend, - public.getdateslist(stw2.caldate, 7) AS dates, - stw2.id_staff, - stw2.staffname AS dspstaffname, - stw2.id_staffgroup, - (((((((((((((((((((''::text || ''::text) || ''::text) || ''::text) || ''::text) || ''::text) || '
'::text) || 'Semaine '::text) || stw2.calweek) || '
Contrat:'::text) || to_char(sws.contracthours, 'HH24:MI'::text)) || '
Plan:'::text) || to_char(sws.workhours, 'HH24:MI'::text)) || '
Congé:'::text) || to_char(sws.vacancyhours, 'HH24:MI'::text)) || '
Récup:'::text) || to_char(sws.recuperationhours, 'HH24:MI'::text)) || '
A récup:'::text) || to_char(sws.diffhours, 'HH24:MI'::text)) || '
'::text) AS dspweektotals, - sws.contracthours, - sws.workhours AS plannedhours, - sws.vacancyhours, - sws.recuperationhours, - sws.diffhours AS hoursdiff, - max( - CASE - WHEN (stw2.isodow = 1) THEN stw2.id - ELSE NULL::bigint - END) AS mon_id, - max( - CASE - WHEN (stw2.isodow = 1) THEN ((((((((''::text || ''::text) || (COALESCE((((''::text), ''::text) || COALESCE(((((''::text), ''::text))) || COALESCE(((''::text), ''::text)) || COALESCE(((''::text), ''::text)) || COALESCE(((((((((''::text), ''::text)) || '
'::text) || to_char((stw2.caldate)::timestamp with time zone, 'DD.MM.YYYY'::text)) || '
'::text || (to_char((stw2.timestart1)::interval, 'HH24:MI'::text) || ' - '::text)) || to_char((stw2.timeend1)::interval, 'HH24:MI'::text)) || '
'::text || to_char((stw2.timestart2)::interval, 'HH24:MI'::text)) || ' - '::text) || to_char((stw2.timeend2)::interval, 'HH24:MI'::text)) || '
Pause:'::text || to_char((stw2.timepause)::interval, 'HH24:MI'::text)) || '
Plan:'::text || to_char((stw2.totaltime)::interval, 'HH24:MI'::text)) || '
'::text) || stw2.vacancyname) || ':'::text) || to_char((stw2.vacancyhours)::interval, 'HH24:MI'::text)) || '
'::text) - ELSE NULL::text - END) AS dspmontimes, - max( - CASE - WHEN (stw2.isodow = 2) THEN stw2.id - ELSE NULL::bigint - END) AS tue_id, - max( - CASE - WHEN (stw2.isodow = 2) THEN ((((((((''::text || ''::text) || (COALESCE((((''::text), ''::text) || COALESCE(((((''::text), ''::text))) || COALESCE(((''::text), ''::text)) || COALESCE(((''::text), ''::text)) || COALESCE(((((((((''::text), ''::text)) || '
'::text) || to_char((date((stw2.caldate + '1 day'::interval)))::timestamp with time zone, 'DD.MM.YYYY'::text)) || '
'::text || (to_char((stw2.timestart1)::interval, 'HH24:MI'::text) || ' - '::text)) || to_char((stw2.timeend1)::interval, 'HH24:MI'::text)) || '
'::text || to_char((stw2.timestart2)::interval, 'HH24:MI'::text)) || ' - '::text) || to_char((stw2.timeend2)::interval, 'HH24:MI'::text)) || '
Pause:'::text || to_char((stw2.timepause)::interval, 'HH24:MI'::text)) || '
Plan:'::text || to_char((stw2.totaltime)::interval, 'HH24:MI'::text)) || '
'::text) || stw2.vacancyname) || ':'::text) || to_char((stw2.vacancyhours)::interval, 'HH24:MI'::text)) || '
'::text) - ELSE NULL::text - END) AS dsptuetimes, - max( - CASE - WHEN (stw2.isodow = 3) THEN stw2.id - ELSE NULL::bigint - END) AS wed_id, - max( - CASE - WHEN (stw2.isodow = 3) THEN ((((((((''::text || ''::text) || (COALESCE((((''::text), ''::text) || COALESCE(((((''::text), ''::text))) || COALESCE(((''::text), ''::text)) || COALESCE(((''::text), ''::text)) || COALESCE(((((((((''::text), ''::text)) || '
'::text) || to_char((date((stw2.caldate + '2 days'::interval)))::timestamp with time zone, 'DD.MM.YYYY'::text)) || '
'::text || (to_char((stw2.timestart1)::interval, 'HH24:MI'::text) || ' - '::text)) || to_char((stw2.timeend1)::interval, 'HH24:MI'::text)) || '
'::text || to_char((stw2.timestart2)::interval, 'HH24:MI'::text)) || ' - '::text) || to_char((stw2.timeend2)::interval, 'HH24:MI'::text)) || '
Pause:'::text || to_char((stw2.timepause)::interval, 'HH24:MI'::text)) || '
Plan:'::text || to_char((stw2.totaltime)::interval, 'HH24:MI'::text)) || '
'::text) || stw2.vacancyname) || ':'::text) || to_char((stw2.vacancyhours)::interval, 'HH24:MI'::text)) || '
'::text) - ELSE NULL::text - END) AS dspwedtimes, - max( - CASE - WHEN (stw2.isodow = 4) THEN stw2.id - ELSE NULL::bigint - END) AS thu_id, - max( - CASE - WHEN (stw2.isodow = 4) THEN ((((((((''::text || ''::text) || (COALESCE((((''::text), ''::text) || COALESCE(((((''::text), ''::text))) || COALESCE(((''::text), ''::text)) || COALESCE(((''::text), ''::text)) || COALESCE(((((((((''::text), ''::text)) || '
'::text) || to_char((date((stw2.caldate + '3 days'::interval)))::timestamp with time zone, 'DD.MM.YYYY'::text)) || '
'::text || (to_char((stw2.timestart1)::interval, 'HH24:MI'::text) || ' - '::text)) || to_char((stw2.timeend1)::interval, 'HH24:MI'::text)) || '
'::text || to_char((stw2.timestart2)::interval, 'HH24:MI'::text)) || ' - '::text) || to_char((stw2.timeend2)::interval, 'HH24:MI'::text)) || '
Pause:'::text || to_char((stw2.timepause)::interval, 'HH24:MI'::text)) || '
Plan:'::text || to_char((stw2.totaltime)::interval, 'HH24:MI'::text)) || '
'::text) || stw2.vacancyname) || ':'::text) || to_char((stw2.vacancyhours)::interval, 'HH24:MI'::text)) || '
'::text) - ELSE NULL::text - END) AS dspthutimes, - max( - CASE - WHEN (stw2.isodow = 5) THEN stw2.id - ELSE NULL::bigint - END) AS fri_id, - max( - CASE - WHEN (stw2.isodow = 5) THEN ((((((((''::text || ''::text) || (COALESCE((((''::text), ''::text) || COALESCE(((((''::text), ''::text))) || COALESCE(((''::text), ''::text)) || COALESCE(((''::text), ''::text)) || COALESCE(((((((((''::text), ''::text)) || '
'::text) || to_char((date((stw2.caldate + '4 days'::interval)))::timestamp with time zone, 'DD.MM.YYYY'::text)) || '
'::text || (to_char((stw2.timestart1)::interval, 'HH24:MI'::text) || ' - '::text)) || to_char((stw2.timeend1)::interval, 'HH24:MI'::text)) || '
'::text || to_char((stw2.timestart2)::interval, 'HH24:MI'::text)) || ' - '::text) || to_char((stw2.timeend2)::interval, 'HH24:MI'::text)) || '
Pause:'::text || to_char((stw2.timepause)::interval, 'HH24:MI'::text)) || '
Plan:'::text || to_char((stw2.totaltime)::interval, 'HH24:MI'::text)) || '
'::text) || stw2.vacancyname) || ':'::text) || to_char((stw2.vacancyhours)::interval, 'HH24:MI'::text)) || '
'::text) - ELSE NULL::text - END) AS dspfritimes, - max( - CASE - WHEN (stw2.isodow = 6) THEN stw2.id - ELSE NULL::bigint - END) AS sat_id, - max( - CASE - WHEN (stw2.isodow = 6) THEN (((((((((''::text || ''::text) || COALESCE(((((''::text), ''::text)) || COALESCE(((((''::text), ''::text)) || COALESCE(((''::text), ''::text)) || COALESCE(((''::text), ''::text)) || COALESCE(((((((((''::text), ''::text)) || '
'::text) || to_char((date((stw2.caldate + '5 days'::interval)))::timestamp with time zone, 'DD.MM.YYYY'::text)) || '
'::text || to_char((stw2.timestart1)::interval, 'HH24:MI'::text)) || ' - '::text) || to_char((stw2.timeend1)::interval, 'HH24:MI'::text)) || '
'::text || to_char((stw2.timestart2)::interval, 'HH24:MI'::text)) || ' - '::text) || to_char((stw2.timeend2)::interval, 'HH24:MI'::text)) || '
Pause:'::text || to_char((stw2.timepause)::interval, 'HH24:MI'::text)) || '
Plan:'::text || to_char((stw2.totaltime)::interval, 'HH24:MI'::text)) || '
'::text) || stw2.vacancyname) || ':'::text) || to_char((stw2.vacancyhours)::interval, 'HH24:MI'::text)) || '
'::text) - ELSE NULL::text - END) AS dspsattimes, - max( - CASE - WHEN (stw2.isodow = 7) THEN stw2.id - ELSE NULL::bigint - END) AS sun_id, - max( - CASE - WHEN (stw2.isodow = 7) THEN (((((((((''::text || ''::text) || COALESCE((((''::text), ''::text)) || COALESCE(((((''::text), ''::text)) || COALESCE(((''::text), ''::text)) || COALESCE(((''::text), ''::text)) || COALESCE(((((((((''::text), ''::text)) || '
'::text) || to_char((date((stw2.caldate + '6 days'::interval)))::timestamp with time zone, 'DD.MM.YYYY'::text)) || '
'::text || (to_char((stw2.timestart1)::interval, 'HH24:MI'::text) || ' - '::text)) || to_char((stw2.timeend1)::interval, 'HH24:MI'::text)) || '
'::text || to_char((stw2.timestart2)::interval, 'HH24:MI'::text)) || ' - '::text) || to_char((stw2.timeend2)::interval, 'HH24:MI'::text)) || '
Pause:'::text || to_char((stw2.timepause)::interval, 'HH24:MI'::text)) || '
Plan:'::text || to_char((stw2.totaltime)::interval, 'HH24:MI'::text)) || '
'::text) || stw2.vacancyname) || ':'::text) || to_char((stw2.vacancyhours)::interval, 'HH24:MI'::text)) || '
'::text) - ELSE NULL::text - END) AS dspsuntimes - FROM (( SELECT date_part('isoyear'::text, stw.daydate) AS calyear, - date_part('week'::text, stw.daydate) AS calweek, - (date_trunc('week'::text, (stw.daydate)::timestamp with time zone))::date AS caldate, - (date_part('isodow'::text, stw.daydate))::integer AS isodow, - ((st.surname || ' '::text) || st.prename) AS staffname, - stw.daydate, - stw.id, - stw.id_staff, - stw.timestart1, - stw.timeend1, - stw.timestart2, - stw.timeend2, - stw.timepause, - stw.dayhours AS totaltime, - stw.vacancyhours, - stw.id_vacancytype, - stw.id_staffgroup, - stw.daytype, - vt.color, - vt.vacancyname - FROM ((%%NEWSCHEMA%%.staffreportperioddays stw - LEFT JOIN %%NEWSCHEMA%%.staff st ON ((stw.id_staff = st.id))) - LEFT JOIN %%NEWSCHEMA%%.vacancytypes vt ON ((stw.id_vacancytype = vt.id)))) stw2 - LEFT JOIN %%NEWSCHEMA%%.staffreportperiodweeks sws ON (((sws.id_staff = stw2.id_staff) AND (sws.calweek = stw2.calweek) AND ((sws.calyear)::double precision = stw2.calyear)))) - GROUP BY stw2.calweek, stw2.calyear, stw2.caldate, stw2.id_staff, stw2.staffname, sws.id, stw2.id_staffgroup - ORDER BY stw2.staffname, stw2.id_staff, stw2.calweek; +CREATE OR REPLACE VIEW %%NEWSCHEMA%%.vw_workplandayslist AS + SELECT (((wp.workplan || ' - Salarié(s): '::text) || count(DISTINCT sc.id_staff)) || ''::text) AS workplan, + to_char(wp.weekhours, 'HH24:MI'::text) AS weekhours, + wpd.id, + wpd.id_workplan, + wpd.weekday, + to_char((wpd.start1)::interval, 'HH24:MI'::text) AS start1, + to_char((wpd.end1)::interval, 'HH24:MI'::text) AS end1, + to_char((wpd.start2)::interval, 'HH24:MI'::text) AS start2, + to_char((wpd.end2)::interval, 'HH24:MI'::text) AS end2, + to_char((wpd.pause)::interval, 'HH24:MI'::text) AS pause, + to_char((((wpd.end1 - wpd.start1) + COALESCE((wpd.end2 - wpd.start2), '00:00:00'::interval)) - COALESCE((wpd.pause)::interval, '00:00:00'::interval)), 'HH24:MI'::text) AS dayhours, + count(DISTINCT sc.id_staff) AS staffcount + FROM ((%%NEWSCHEMA%%.workplandays wpd + LEFT JOIN %%NEWSCHEMA%%.workplans wp ON ((wpd.id_workplan = wp.id))) + LEFT JOIN %%NEWSCHEMA%%.staffcontract sc ON ((sc.id_workplan = wp.id))) + GROUP BY wpd.id, wp.id + ORDER BY wp.workplan, wpd.weekday; ALTER TABLE ONLY %%NEWSCHEMA%%.staffcontract ADD CONSTRAINT staffcontract_fk FOREIGN KEY (id_staff) REFERENCES %%NEWSCHEMA%%.staff(id); @@ -2109,3 +1152,6 @@ ALTER TABLE ONLY %%NEWSCHEMA%%.staffreportperioddays ALTER TABLE ONLY %%NEWSCHEMA%%.staffreportperioddays ADD CONSTRAINT staffworkplan_fk_1 FOREIGN KEY (id_staffgroup) REFERENCES %%NEWSCHEMA%%.staffgroups(id); +ALTER TABLE ONLY %%NEWSCHEMA%%.workplandays + ADD CONSTRAINT workplandays_fk FOREIGN KEY (id_workplan) REFERENCES %%NEWSCHEMA%%.workplans(id); + diff --git a/dev/db/potlu_db.newcompanyschema.pg.schema.sql b/dev/db/potlu_db.newcompanyschema.pg.schema.sql index c4f6e0b4..c9223120 100644 --- a/dev/db/potlu_db.newcompanyschema.pg.schema.sql +++ b/dev/db/potlu_db.newcompanyschema.pg.schema.sql @@ -25,7 +25,7 @@ begin end; $$; -CREATE FUNCTION %%NEWSCHEMA%%.getperiod_staffcontract(pid integer) RETURNS TABLE(id integer, id_staff integer, startdate date, enddate date, weekhours interval, weekdays integer, id_workplan integer) +CREATE FUNCTION %%NEWSCHEMA%%.getperiod_staffcontract(pid integer) RETURNS TABLE(id integer, id_staff integer, startdate date, enddate date, weekhours interval, weekdays integer, id_workplan integer, defaultfreedays json) LANGUAGE plpgsql AS $$ declare @@ -34,11 +34,11 @@ CREATE FUNCTION %%NEWSCHEMA%%.getperiod_staffcontract(pid integer) RETURNS TABLE begin select prd.startdate as prdstart,prd.enddate as prdend into pstart,pend from %%NEWSCHEMA%%.reportperiod prd where prd.id=pid; return QUERY -select sc.id,sc.id_staff, -case when sc.startdate < pstart then pstart else sc.startdate end as startdate, +select sc.id,sc.id_staff, +case when sc.startdate < pstart then pstart else sc.startdate end as startdate, case when sc.enddate is null then pend when sc.enddate > pend then pend else sc.enddate end as enddate, -sc.weekhours,sc.weekdays,sc.id_workplan -from %%NEWSCHEMA%%.staffcontract sc where sc.startdate<= pend and (sc.enddate is null or sc.enddate >= pstart) +sc.weekhours,sc.weekdays,sc.id_workplan,sc.defaultfreedays +from %%NEWSCHEMA%%.staffcontract sc where sc.startdate<= pend and (sc.enddate is null or sc.enddate >= pstart) order by sc.id_staff,sc.startdate,sc.enddate; END; $$; @@ -73,6 +73,20 @@ begin end; $$; +CREATE FUNCTION %%NEWSCHEMA%%.refresh_periods() RETURNS boolean + LANGUAGE plpgsql + AS $$ + declare + prds record; + begin + for prds in select id from %%NEWSCHEMA%%.reportperiod order by startdate,enddate + loop + perform %%NEWSCHEMA%%.update_all_staff_in_period(prds.id); + end loop; + RETURN true; + END; +$$; + CREATE FUNCTION %%NEWSCHEMA%%.set_periodday_sums(pid_periodday bigint) RETURNS bigint LANGUAGE plpgsql AS $$ @@ -158,23 +172,37 @@ CREATE FUNCTION %%NEWSCHEMA%%.set_staffperiodweek_sums(pid_reportperiod integer, declare wkcon record; tmpcontrhours interval; + freedays int4 := 0; begin -- INSERT Contract data into Week -for wkcon in select srpw.id,psc.weekhours,psc.weekdays,srpw.contractdays,srpw.caldays,srpw.diffhours,srpw.contracthours,srpw.totalhours +for wkcon in select srpw.id,srpw.calweek,srpw.weekstart,srpw.calyear,rp.startdate as periodstart,psc.startdate,rp.enddate as periodend,psc.enddate,psc.weekhours,psc.weekdays,srpw.contractdays,srpw.caldays,srpw.diffhours,srpw.contracthours,srpw.totalhours,psc.defaultfreedays from %%NEWSCHEMA%%.staffreportperiodweeks srpw -left join (select xa.id_staff,xa.startdate,xa.enddate,xa.weekhours,xa.weekdays from %%NEWSCHEMA%%.getperiod_staffcontract(pid_reportperiod) xa where xa.id_staff=pid_staff) psc +left join (select xa.id_staff,xa.startdate,xa.enddate,xa.weekhours,xa.weekdays,xa.defaultfreedays from %%NEWSCHEMA%%.getperiod_staffcontract(pid_reportperiod) xa where xa.id_staff=pid_staff) psc on (srpw.weekstart between date_trunc('week',psc.startdate) and psc.enddate) +left join %%NEWSCHEMA%%.reportperiod rp on (srpw.id_reportperiod =rp.id) where srpw.id_reportperiod=pid_reportperiod and srpw.id_staff=pid_staff loop --raise notice 'id=%',wkcon; - --raise notice 'id=%',wkcon.contractdays; + if wkcon.defaultfreedays is not null then + freedays = json_array_length(wkcon.defaultfreedays); + end if; wkcon.contracthours=wkcon.weekhours; wkcon.contractdays=wkcon.weekdays; - if wkcon.caldays < wkcon.contractdays then - wkcon.contractdays = wkcon.caldays; - wkcon.contracthours = (wkcon.weekhours/wkcon.weekdays) * wkcon.contractdays; + if wkcon.calweek= date_part('week',wkcon.periodstart)::int4 and wkcon.calyear= date_part('isoyear',wkcon.periodstart)::int4 then + wkcon.contracthours = wkcon.contracthours - ((wkcon.weekhours/wkcon.weekdays) * (wkcon.startdate-wkcon.periodstart)::int4); end if; + --if wkcon.startdate > wkcon.periodstart then + -- wkcon.contractdays = wkcon.contractdays-(wkcon.startdate-wkcon.periodstart)::int4; + -- wkcon.contracthours = (wkcon.weekhours/wkcon.weekdays) * wkcon.contractdays; + --end if; + --if wkcon.enddate < wkcon.periodend then + -- wkcon.contractdays = wkcon.contractdays-(wkcon.periodend-wkcon.enddate)::int4; + -- wkcon.contracthours = (wkcon.weekhours/wkcon.weekdays) * wkcon.contractdays; + --end if; + + wkcon.diffhours = wkcon.totalhours-wkcon.contracthours; + raise notice 'contractdays: % contracthours: % totalhours: % diffhours: %',wkcon.contractdays,wkcon.contracthours,wkcon.totalhours,wkcon.diffhours; --raise notice 'id=% cdays=% chours=% diffhours=%',wkcon.id,wkcon.contractdays,wkcon.contracthours,wkcon.diffhours; update %%NEWSCHEMA%%.staffreportperiodweeks set contracthours=wkcon.contracthours,contractdays=wkcon.contractdays,diffhours=wkcon.diffhours where id=wkcon.id; @@ -194,8 +222,10 @@ declare cdate date; edate date; wday text; + wdaynum int4; wdayplan record; cid_staffworkplan int8; + cdaytime interval; begin select * into prd from %%NEWSCHEMA%%.reportperiod where id= pid_period; for cont in select * from %%NEWSCHEMA%%.getperiod_staffcontract(pid_period) where id_staff=pid_staff @@ -203,16 +233,24 @@ begin cdate := cont.startdate; while cdate <= cont.enddate loop if cdate between prd.startdate and prd.enddate then + wdaynum = date_part('isodow',cdate)::INT4; + cdaytime := null; + + if position('"' || wdaynum || '"' in cont.defaultfreedays::text) = 0 then + cdaytime := cont.weekhours/cont.weekdays; + end if; + raise notice 'wday % => % => %',wdaynum,position('"' || wdaynum || '"' in cont.defaultfreedays::text),cdaytime; if (cont.id_workplan is not null) then wday := substr(to_char(cdate,'day'),1,3); execute 'select ' || wday || '_timestart1 as ts1,' || wday || '_timeend1 as te1,' || wday || '_timestart2 as ts2,' || wday ||'_timeend2 as te2,'|| wday ||'_timepause as tp from %%NEWSCHEMA%%.workplans where id=' || cont.id_workplan || ';' into wdayplan; - insert into %%NEWSCHEMA%%.staffreportperioddays (id_staff,daydate,id_reportperiod,timestart1,timeend1,timestart2,timeend2,timepause,contracthours) - values (pid_staff,cdate,pid_period,wdayplan.ts1,wdayplan.te1,wdayplan.ts2,wdayplan.te2,wdayplan.tp,cont.weekhours/cont.weekdays) - on conflict on constraint uniq_staffworplan_staffday do update set contracthours=cont.weekhours/cont.weekdays + + insert into %%NEWSCHEMA%%.staffreportperioddays (id_staff,daydate,id_reportperiod,timestart1,timeend1,timestart2,timeend2,timepause,contracthours,wdcontracthours) + values (pid_staff,cdate,pid_period,wdayplan.ts1,wdayplan.te1,wdayplan.ts2,wdayplan.te2,wdayplan.tp,cont.weekhours/cont.weekdays,cdaytime) + on conflict on constraint uniq_staffworplan_staffday do update set contracthours=cont.weekhours/cont.weekdays,wdcontracthours=cdaytime returning id into cid_staffworkplan; else - insert into %%NEWSCHEMA%%.staffreportperioddays (id_staff,daydate,id_reportperiod,contracthours,id_staffgrou) values ( pid_staff , cdate , pid_period,cont.weekhours/cont.weekdays) - on conflict on constraint uniq_staffworplan_staffday do update set contracthours=cont.weekhours/cont.weekdays + insert into %%NEWSCHEMA%%.staffreportperioddays (id_staff,daydate,id_reportperiod,contracthours,wdcontracthours) values ( pid_staff , cdate , pid_period,cont.weekhours/cont.weekdays,cdaytime) + on conflict on constraint uniq_staffworplan_staffday do update set contracthours=cont.weekhours/cont.weekdays,wdcontracthours=cdaytime returning id into cid_staffworkplan; end if; end if; @@ -238,7 +276,8 @@ coalesce(sum(workhours),'00:00:00') as workhours , coalesce(sum(vacancyhours),'00:00:00') as vacancyhours , coalesce(sum(recuperationhours) ,'00:00:00' ) as recuperationhours , coalesce(sum(dayhours),'00:00:00') as totalhours, -count(id) as caldays +coalesce(sum(contracthours),'00:00:00') as contracthours, +count(wdcontracthours) as caldays from ( select swp.id,swp.id_reportperiod,swp.id_staff, date_part('isoyear',swp.daydate) as calyear, @@ -248,14 +287,15 @@ swp.workhours, swp.contracthours, swp.recuperationhours, swp.dayhours, -swp.vacancyhours +swp.vacancyhours, +swp.wdcontracthours from %%NEWSCHEMA%%.staffreportperioddays swp where swp.id_reportperiod= pid_reportperiod and swp.id_staff=pid_staff) wkwp group by id_staff,id_reportperiod,calyear,calweek,weekstart loop --raise notice 'id_staff: % id_period: % calweek: % calyear: %',pid_staff,pid_reportperiod,wkpd.calweek,wkpd.calyear; - insert into %%NEWSCHEMA%%.staffreportperiodweeks (id_staff, id_reportperiod, calyear, calweek, workhours,vacancyhours, recuperationhours, weekstart,totalhours,caldays) - VALUES(wkpd.id_staff, wkpd.id_reportperiod, wkpd.calyear, wkpd.calweek, wkpd.workhours, wkpd.vacancyhours, wkpd.recuperationhours, wkpd.weekstart,wkpd.totalhours,wkpd.caldays) - on conflict on constraint uniq_staffweekplan_cal do update set workhours=wkpd.workhours, vacancyhours=wkpd.vacancyhours, recuperationhours=wkpd.recuperationhours,totalhours=wkpd.totalhours,caldays=wkpd.caldays; + insert into %%NEWSCHEMA%%.staffreportperiodweeks (id_staff, id_reportperiod, calyear, calweek, workhours,vacancyhours, recuperationhours, weekstart,totalhours,caldays,contracthours,diffhours) + VALUES(wkpd.id_staff, wkpd.id_reportperiod, wkpd.calyear, wkpd.calweek, wkpd.workhours, wkpd.vacancyhours, wkpd.recuperationhours, wkpd.weekstart,wkpd.totalhours,wkpd.caldays,wkpd.contracthours,wkpd.contracthours-wkpd.totalhours) + on conflict on constraint uniq_staffweekplan_cal do update set workhours=wkpd.workhours, vacancyhours=wkpd.vacancyhours, recuperationhours=wkpd.recuperationhours,totalhours=wkpd.totalhours,caldays=wkpd.caldays,contracthours=wkpd.contracthours,diffhours=wkpd.contracthours-wkpd.totalhours; end loop; perform %%NEWSCHEMA%%.set_staffperiodweek_sums(pid_reportperiod, pid_staff); @@ -428,20 +468,6 @@ begin end; $$; -CREATE FUNCTION %%NEWSCHEMA%%.zzold_refreshperiods() RETURNS boolean - LANGUAGE plpgsql - AS $$ - declare - prds record; - begin - for prds in select id from %%NEWSCHEMA%%.reportperiod where isvalidated != true - loop - perform %%NEWSCHEMA%%.onchange_reportperiod(prds.id); - end loop; - RETURN false; - END; -$$; - CREATE FUNCTION %%NEWSCHEMA%%.zzold_set_staffperiod(pid_period integer) RETURNS boolean LANGUAGE plpgsql AS $$ @@ -464,24 +490,6 @@ CREATE FUNCTION %%NEWSCHEMA%%.zzold_set_staffperiod(pid_period integer) RETURNS END; $$; -CREATE TABLE %%NEWSCHEMA%%.editlog ( - id bigint NOT NULL, - id_user integer, - tblname text, - tblfields json, - modified timestamp without time zone DEFAULT CURRENT_TIMESTAMP, - created timestamp without time zone DEFAULT CURRENT_TIMESTAMP -); - -CREATE SEQUENCE %%NEWSCHEMA%%.editlog_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; - -ALTER SEQUENCE %%NEWSCHEMA%%.editlog_id_seq OWNED BY %%NEWSCHEMA%%.editlog.id; - CREATE TABLE %%NEWSCHEMA%%.reportperiod ( id integer NOT NULL, periodname text, @@ -533,7 +541,8 @@ CREATE TABLE %%NEWSCHEMA%%.staffcontract ( weekdays integer, enddate date, id_workplan integer, - weekhours interval + weekhours interval, + defaultfreedays json ); CREATE TABLE %%NEWSCHEMA%%.staffgroups ( @@ -572,7 +581,8 @@ CREATE TABLE %%NEWSCHEMA%%.staffreportperiod ( vacancyhours interval, recuperationhours interval, hoursdiff interval, - hoursrestbefore interval + payedhours interval, + diffhourspayed interval ); CREATE SEQUENCE %%NEWSCHEMA%%.staffreportperiod_id_seq @@ -604,31 +614,10 @@ CREATE TABLE %%NEWSCHEMA%%.staffreportperioddays ( id_reportperiod integer, dayhours time without time zone, id_recuperationtype integer, - interruptionhours time without time zone -); - -CREATE TABLE %%NEWSCHEMA%%.zzold_staffreportperiodsums ( - id integer NOT NULL, - id_staff integer, - id_reportperiod integer, - plannedhours interval DEFAULT '00:00:00'::interval, - contracthours interval DEFAULT '00:00:00'::interval, - trackedhours interval DEFAULT '00:00:00'::interval, - vacancyhours interval DEFAULT '00:00:00'::interval, - recuperationhours interval DEFAULT '00:00:00'::interval, - hoursdiff interval DEFAULT '00:00:00'::interval, - hoursrestbefore interval + interruptionhours time without time zone, + wdcontracthours time without time zone ); -CREATE SEQUENCE %%NEWSCHEMA%%.staffreportperiodsums_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; - -ALTER SEQUENCE %%NEWSCHEMA%%.staffreportperiodsums_id_seq OWNED BY %%NEWSCHEMA%%.zzold_staffreportperiodsums.id; - CREATE TABLE %%NEWSCHEMA%%.staffreportperiodweeks ( id integer NOT NULL, id_staff integer, @@ -732,7 +721,8 @@ CREATE VIEW %%NEWSCHEMA%%.vw_staffcontractdata AS staffcontract.id_staffgroup, staffcontract.enddate, staffcontract.id AS id_staffcontract, - staffcontract.id_workplan + staffcontract.id_workplan, + staffcontract.defaultfreedays FROM %%NEWSCHEMA%%.staffcontract; CREATE TABLE %%NEWSCHEMA%%.workplans ( @@ -772,7 +762,10 @@ CREATE TABLE %%NEWSCHEMA%%.workplans ( sun_timeend1 time without time zone, sun_timestart2 time without time zone, sun_timeend2 time without time zone, - sun_timepause time without time zone + sun_timepause time without time zone, + weekhours interval, + weekdays integer, + weekdayslist json ); CREATE VIEW %%NEWSCHEMA%%.vw_staffcontractlist AS @@ -786,10 +779,16 @@ CREATE VIEW %%NEWSCHEMA%%.vw_staffcontractlist AS sg.groupcolor, sc.enddate, sc.id_workplan, + ddf.defaultfreedays, wp.workplan - FROM ((%%NEWSCHEMA%%.staffcontract sc + FROM (((%%NEWSCHEMA%%.staffcontract sc LEFT JOIN %%NEWSCHEMA%%.staffgroups sg ON ((sc.id_staffgroup = sg.id))) LEFT JOIN %%NEWSCHEMA%%.workplans wp ON ((sc.id_workplan = wp.id))) + LEFT JOIN ( SELECT dfd.id, + replace(replace(replace(replace(replace(replace(replace(dfd.defaultfreedays, '7'::text, 'di'::text), '6'::text, 'sa'::text), '5'::text, 've'::text), '4'::text, 'je'::text), '3'::text, 'me'::text), '2'::text, 'ma'::text), '1'::text, 'lu'::text) AS defaultfreedays + FROM ( SELECT staffcontract.id, + json_array_elements_text(staffcontract.defaultfreedays) AS defaultfreedays + FROM %%NEWSCHEMA%%.staffcontract) dfd) ddf ON ((sc.id = ddf.id))) ORDER BY sc.startdate DESC, sc.enddate DESC; CREATE VIEW %%NEWSCHEMA%%.vw_staffdata AS @@ -819,7 +818,6 @@ CREATE VIEW %%NEWSCHEMA%%.vw_staffgroupsdata AS CREATE VIEW %%NEWSCHEMA%%.vw_staffgroupslist AS SELECT staffgroups.id, staffgroups.groupname, - staffgroups.groupcolor, staffgroups.isdefault FROM %%NEWSCHEMA%%.staffgroups; @@ -831,283 +829,16 @@ CREATE VIEW %%NEWSCHEMA%%.vw_stafflist AS st.job, st.birthdate, ((st.surname || ' '::text) || st.prename) AS dspname, - stg.groupname - FROM (%%NEWSCHEMA%%.staff st + stg.groupname, + stentry.entrydate + FROM ((%%NEWSCHEMA%%.staff st LEFT JOIN %%NEWSCHEMA%%.staffgroups stg ON ((st.id_staffgroup = stg.id))) + LEFT JOIN ( SELECT staffcontract.id_staff, + min(staffcontract.startdate) AS entrydate + FROM %%NEWSCHEMA%%.staffcontract + GROUP BY staffcontract.id_staff) stentry ON ((st.id = stentry.id_staff))) ORDER BY st.surname, st.prename; -CREATE VIEW %%NEWSCHEMA%%.vw_staffplanned_dayweektotals AS - SELECT stw2.calweek, - stw2.caldate AS dates, - stw2.id_staff, - max( - CASE - WHEN (stw2.isodow = (1)::double precision) THEN stw2.id - ELSE NULL::bigint - END) AS mon_id, - max( - CASE - WHEN (stw2.isodow = (1)::double precision) THEN to_char((stw2.timestart1)::interval, 'HH24:MI'::text) - ELSE NULL::text - END) AS mon_start1, - max( - CASE - WHEN (stw2.isodow = (1)::double precision) THEN to_char((stw2.timeend1)::interval, 'HH24:MI'::text) - ELSE NULL::text - END) AS mon_end1, - max( - CASE - WHEN (stw2.isodow = (1)::double precision) THEN to_char((stw2.timestart2)::interval, 'HH24:MI'::text) - ELSE NULL::text - END) AS mon_start2, - max( - CASE - WHEN (stw2.isodow = (1)::double precision) THEN to_char((stw2.timeend2)::interval, 'HH24:MI'::text) - ELSE NULL::text - END) AS mon_end2, - max( - CASE - WHEN (stw2.isodow = (1)::double precision) THEN to_char((stw2.timepause)::interval, 'HH24:MI'::text) - ELSE NULL::text - END) AS mon_pause, - to_char(max( - CASE - WHEN (stw2.isodow = (1)::double precision) THEN ((stw2.time1 + stw2.time2) - (stw2.timepause)::interval) - ELSE NULL::interval - END), 'HH24:MI'::text) AS mon_timetotal, - max( - CASE - WHEN (stw2.isodow = (2)::double precision) THEN stw2.id - ELSE NULL::bigint - END) AS tue_id, - max( - CASE - WHEN (stw2.isodow = (2)::double precision) THEN to_char((stw2.timestart1)::interval, 'HH24:MI'::text) - ELSE NULL::text - END) AS tue_start1, - max( - CASE - WHEN (stw2.isodow = (2)::double precision) THEN to_char((stw2.timeend1)::interval, 'HH24:MI'::text) - ELSE NULL::text - END) AS tue_end1, - max( - CASE - WHEN (stw2.isodow = (2)::double precision) THEN to_char((stw2.timestart2)::interval, 'HH24:MI'::text) - ELSE NULL::text - END) AS tue_start2, - max( - CASE - WHEN (stw2.isodow = (2)::double precision) THEN to_char((stw2.timeend2)::interval, 'HH24:MI'::text) - ELSE NULL::text - END) AS tue_end2, - max( - CASE - WHEN (stw2.isodow = (2)::double precision) THEN to_char((stw2.timepause)::interval, 'HH24:MI'::text) - ELSE NULL::text - END) AS tue_pause, - to_char(max( - CASE - WHEN (stw2.isodow = (2)::double precision) THEN ((stw2.time1 + stw2.time2) - (stw2.timepause)::interval) - ELSE NULL::interval - END), 'HH24:MI'::text) AS tue_timetotal, - max( - CASE - WHEN (stw2.isodow = (3)::double precision) THEN stw2.id - ELSE NULL::bigint - END) AS wed_id, - max( - CASE - WHEN (stw2.isodow = (3)::double precision) THEN to_char((stw2.timestart1)::interval, 'HH24:MI'::text) - ELSE NULL::text - END) AS wed_start1, - max( - CASE - WHEN (stw2.isodow = (3)::double precision) THEN to_char((stw2.timeend1)::interval, 'HH24:MI'::text) - ELSE NULL::text - END) AS wed_end1, - max( - CASE - WHEN (stw2.isodow = (3)::double precision) THEN to_char((stw2.timestart2)::interval, 'HH24:MI'::text) - ELSE NULL::text - END) AS wed_start2, - max( - CASE - WHEN (stw2.isodow = (3)::double precision) THEN to_char((stw2.timeend2)::interval, 'HH24:MI'::text) - ELSE NULL::text - END) AS wed_end2, - max( - CASE - WHEN (stw2.isodow = (3)::double precision) THEN to_char((stw2.timepause)::interval, 'HH24:MI'::text) - ELSE NULL::text - END) AS wed_pause, - to_char(max( - CASE - WHEN (stw2.isodow = (3)::double precision) THEN ((stw2.time1 + stw2.time2) - (stw2.timepause)::interval) - ELSE NULL::interval - END), 'HH24:MI'::text) AS wed_timetotal, - max( - CASE - WHEN (stw2.isodow = (4)::double precision) THEN stw2.id - ELSE NULL::bigint - END) AS thu_id, - max( - CASE - WHEN (stw2.isodow = (4)::double precision) THEN to_char((stw2.timestart1)::interval, 'HH24:MI'::text) - ELSE NULL::text - END) AS thu_start1, - max( - CASE - WHEN (stw2.isodow = (4)::double precision) THEN to_char((stw2.timeend1)::interval, 'HH24:MI'::text) - ELSE NULL::text - END) AS thu_end1, - max( - CASE - WHEN (stw2.isodow = (4)::double precision) THEN to_char((stw2.timestart2)::interval, 'HH24:MI'::text) - ELSE NULL::text - END) AS thu_start2, - max( - CASE - WHEN (stw2.isodow = (4)::double precision) THEN to_char((stw2.timeend2)::interval, 'HH24:MI'::text) - ELSE NULL::text - END) AS thu_end2, - max( - CASE - WHEN (stw2.isodow = (4)::double precision) THEN to_char((stw2.timepause)::interval, 'HH24:MI'::text) - ELSE NULL::text - END) AS thu_pause, - to_char(max( - CASE - WHEN (stw2.isodow = (4)::double precision) THEN ((stw2.time1 + stw2.time2) - (stw2.timepause)::interval) - ELSE NULL::interval - END), 'HH24:MI'::text) AS thu_timetotal, - max( - CASE - WHEN (stw2.isodow = (5)::double precision) THEN stw2.id - ELSE NULL::bigint - END) AS fri_id, - max( - CASE - WHEN (stw2.isodow = (5)::double precision) THEN to_char((stw2.timestart1)::interval, 'HH24:MI'::text) - ELSE NULL::text - END) AS fri_start1, - max( - CASE - WHEN (stw2.isodow = (5)::double precision) THEN to_char((stw2.timeend1)::interval, 'HH24:MI'::text) - ELSE NULL::text - END) AS fri_end1, - max( - CASE - WHEN (stw2.isodow = (5)::double precision) THEN to_char((stw2.timestart2)::interval, 'HH24:MI'::text) - ELSE NULL::text - END) AS fri_start2, - max( - CASE - WHEN (stw2.isodow = (5)::double precision) THEN to_char((stw2.timeend2)::interval, 'HH24:MI'::text) - ELSE NULL::text - END) AS fri_end2, - max( - CASE - WHEN (stw2.isodow = (5)::double precision) THEN to_char((stw2.timepause)::interval, 'HH24:MI'::text) - ELSE NULL::text - END) AS fri_pause, - to_char(max( - CASE - WHEN (stw2.isodow = (5)::double precision) THEN ((stw2.time1 + stw2.time2) - (stw2.timepause)::interval) - ELSE NULL::interval - END), 'HH24:MI'::text) AS fri_timetotal, - max( - CASE - WHEN (stw2.isodow = (6)::double precision) THEN stw2.id - ELSE NULL::bigint - END) AS sat_id, - max( - CASE - WHEN (stw2.isodow = (6)::double precision) THEN to_char((stw2.timestart1)::interval, 'HH24:MI'::text) - ELSE NULL::text - END) AS sat_start1, - max( - CASE - WHEN (stw2.isodow = (6)::double precision) THEN to_char((stw2.timeend1)::interval, 'HH24:MI'::text) - ELSE NULL::text - END) AS sat_end1, - max( - CASE - WHEN (stw2.isodow = (6)::double precision) THEN to_char((stw2.timestart2)::interval, 'HH24:MI'::text) - ELSE NULL::text - END) AS sat_start2, - max( - CASE - WHEN (stw2.isodow = (6)::double precision) THEN to_char((stw2.timeend2)::interval, 'HH24:MI'::text) - ELSE NULL::text - END) AS sat_end2, - max( - CASE - WHEN (stw2.isodow = (6)::double precision) THEN to_char((stw2.timepause)::interval, 'HH24:MI'::text) - ELSE NULL::text - END) AS sat_pause, - to_char(max( - CASE - WHEN (stw2.isodow = (6)::double precision) THEN ((stw2.time1 + stw2.time2) - (stw2.timepause)::interval) - ELSE NULL::interval - END), 'HH24:MI'::text) AS sat_timetotal, - max( - CASE - WHEN (stw2.isodow = (7)::double precision) THEN stw2.id - ELSE NULL::bigint - END) AS sun_id, - max( - CASE - WHEN (stw2.isodow = (7)::double precision) THEN to_char((stw2.timestart1)::interval, 'HH24:MI'::text) - ELSE NULL::text - END) AS sun_start1, - max( - CASE - WHEN (stw2.isodow = (7)::double precision) THEN to_char((stw2.timeend1)::interval, 'HH24:MI'::text) - ELSE NULL::text - END) AS sun_end1, - max( - CASE - WHEN (stw2.isodow = (7)::double precision) THEN to_char((stw2.timestart2)::interval, 'HH24:MI'::text) - ELSE NULL::text - END) AS sun_start2, - max( - CASE - WHEN (stw2.isodow = (7)::double precision) THEN to_char((stw2.timeend2)::interval, 'HH24:MI'::text) - ELSE NULL::text - END) AS sun_end2, - max( - CASE - WHEN (stw2.isodow = (7)::double precision) THEN to_char((stw2.timepause)::interval, 'HH24:MI'::text) - ELSE NULL::text - END) AS sun_pause, - to_char(max( - CASE - WHEN (stw2.isodow = (7)::double precision) THEN ((stw2.time1 + stw2.time2) - (stw2.timepause)::interval) - ELSE NULL::interval - END), 'HH24:MI'::text) AS sun_timetotal, - to_char(sum(((stw2.time1 + stw2.time2) - (stw2.timepause)::interval)), 'HH24:MI'::text) AS week_timetotal - FROM ( SELECT staffreportperioddays.daydate, - date_part('week'::text, staffreportperioddays.daydate) AS calweek, - (date_trunc('week'::text, (staffreportperioddays.daydate)::timestamp with time zone))::date AS caldate, - date_part('isodow'::text, staffreportperioddays.daydate) AS isodow, - staffreportperioddays.id, - staffreportperioddays.id_staff, - staffreportperioddays.timestart1, - staffreportperioddays.timeend1, - CASE - WHEN (staffreportperioddays.timestart1 > staffreportperioddays.timeend1) THEN ('24:00:00'::time without time zone - ((staffreportperioddays.timestart1 - staffreportperioddays.timeend1))::time without time zone) - ELSE (staffreportperioddays.timeend1 - staffreportperioddays.timestart1) - END AS time1, - staffreportperioddays.timestart2, - staffreportperioddays.timeend2, - CASE - WHEN (staffreportperioddays.timestart2 > staffreportperioddays.timeend2) THEN ('24:00:00'::time without time zone - ((staffreportperioddays.timestart2 - staffreportperioddays.timeend2))::time without time zone) - ELSE (staffreportperioddays.timeend2 - staffreportperioddays.timestart2) - END AS time2, - staffreportperioddays.timepause - FROM %%NEWSCHEMA%%.staffreportperioddays) stw2 - GROUP BY stw2.calweek, stw2.caldate, stw2.id_staff; - CREATE VIEW %%NEWSCHEMA%%.vw_staffreportperioddays AS SELECT pd.id, pd.id_staff, @@ -1149,6 +880,8 @@ CREATE VIEW %%NEWSCHEMA%%.vw_staffreportperioddays AS END)::interval, 'HH24:MI'::text) AS interruptionhours, pw.id AS id_week, (((((((pw.calyear || '-'::text) || lpad((pw.calweek)::text, 2, '0'::text)) || '('::text) || to_char((pw.weekstart)::timestamp with time zone, 'DD.MM.YYYY'::text)) || ' - '::text) || to_char((date((pw.weekstart + '6 days'::interval)))::timestamp with time zone, 'DD.MM.YYYY'::text)) || ')'::text) AS dspweek, + ((((((((((((to_char((pw.weekstart)::timestamp with time zone, 'DD.MM.YYYY'::text) || ','::text) || to_char((date((pw.weekstart + '1 day'::interval)))::timestamp with time zone, 'DD.MM.YYYY'::text)) || ','::text) || to_char((date((pw.weekstart + '2 days'::interval)))::timestamp with time zone, 'DD.MM.YYYY'::text)) || ','::text) || to_char((date((pw.weekstart + '3 days'::interval)))::timestamp with time zone, 'DD.MM.YYYY'::text)) || ','::text) || to_char((date((pw.weekstart + '4 days'::interval)))::timestamp with time zone, 'DD.MM.YYYY'::text)) || ','::text) || to_char((date((pw.weekstart + '5 days'::interval)))::timestamp with time zone, 'DD.MM.YYYY'::text)) || ','::text) || to_char((date((pw.weekstart + '6 days'::interval)))::timestamp with time zone, 'DD.MM.YYYY'::text)) AS dspweekdates, + ((((((((((((pw.weekstart || ','::text) || date((pw.weekstart + '1 day'::interval))) || ','::text) || date((pw.weekstart + '2 days'::interval))) || ','::text) || date((pw.weekstart + '3 days'::interval))) || ','::text) || date((pw.weekstart + '4 days'::interval))) || ','::text) || date((pw.weekstart + '5 days'::interval))) || ','::text) || date((pw.weekstart + '6 days'::interval))) AS weekdates, to_char(pw.contracthours, 'HH24:MI'::text) AS week_contracthours, to_char(pw.workhours, 'HH24:MI'::text) AS week_workhours, to_char(pw.vacancyhours, 'HH24:MI'::text) AS week_vacancyhours, @@ -1157,7 +890,8 @@ CREATE VIEW %%NEWSCHEMA%%.vw_staffreportperioddays AS CASE WHEN (pw.diffhours < '00:00:00'::interval) THEN ('-'::text || replace(to_char(pw.diffhours, 'HH24:MI'::text), '-'::text, ''::text)) ELSE to_char(pw.diffhours, 'HH24:MI'::text) - END AS week_diffhours + END AS week_diffhours, + ((pw.calyear || '-'::text) || lpad((pw.calweek)::text, 2, '0'::text)) AS weekident FROM (%%NEWSCHEMA%%.staffreportperiodweeks pw LEFT JOIN %%NEWSCHEMA%%.staffreportperioddays pd ON (((pw.weekstart = date_trunc('week'::text, (pd.daydate)::timestamp with time zone)) AND (pw.id_staff = pd.id_staff) AND (pw.id_reportperiod = pd.id_reportperiod)))) ORDER BY pd.id_reportperiod, pd.id_staff, pd.daydate; @@ -1170,8 +904,8 @@ CREATE VIEW %%NEWSCHEMA%%.vw_staffreportperiodlist AS to_char(srp.vacancyhours, 'HH24:MI'::text) AS vacancyhours, to_char(srp.recuperationhours, 'HH24:MI'::text) AS recuperationhours, CASE - WHEN (srp.hoursdiff < '00:00:00'::interval) THEN ('-'::text || replace(to_char(srp.hoursdiff, 'HH24:MI'::text), '-'::text, ''::text)) - ELSE to_char(srp.hoursdiff, 'HH24:MI'::text) + WHEN (srp.hoursdiff < '00:00:00'::interval) THEN ('-'::text || replace(to_char((srp.hoursdiff - COALESCE(srp.payedhours, '00:00:00'::interval)), 'HH24:MI'::text), '-'::text, ''::text)) + ELSE to_char((srp.hoursdiff - COALESCE(srp.payedhours, '00:00:00'::interval)), 'HH24:MI'::text) END AS hoursdiff, to_char(srp.totalhours, 'HH24:MI'::text) AS totalhours, srp.id_reportperiod, @@ -1181,535 +915,13 @@ CREATE VIEW %%NEWSCHEMA%%.vw_staffreportperiodlist AS rp.enddate, ((st.surname || ' '::text) || st.prename) AS staffname, st.id_staffgroup, - sgr.groupname + sgr.groupname, + to_char(srp.payedhours, 'HH24:MI'::text) AS payedhours FROM (((%%NEWSCHEMA%%.staffreportperiod srp LEFT JOIN %%NEWSCHEMA%%.staff st ON ((srp.id_staff = st.id))) LEFT JOIN %%NEWSCHEMA%%.reportperiod rp ON ((srp.id_reportperiod = rp.id))) LEFT JOIN %%NEWSCHEMA%%.staffgroups sgr ON ((st.id_staffgroup = sgr.id))) - ORDER BY sgr.groupname, st.surname, st.prename, srp.id_staff, rp.startdate, rp.enddate; - -CREATE VIEW %%NEWSCHEMA%%.vw_staffworkplan_dailylist AS - SELECT staffreportperioddays.id, - staffreportperioddays.id_staff, - staffreportperioddays.daydate, - staffreportperioddays.timestart1, - staffreportperioddays.timeend1, - staffreportperioddays.timestart2, - staffreportperioddays.timeend2, - staffreportperioddays.timepause, - staffreportperioddays.interruptionhours, - staffreportperioddays.workhours, - staffreportperioddays.id_recuperationtype, - staffreportperioddays.recuperationhours, - staffreportperioddays.id_vacancytype, - staffreportperioddays.vacancyhours, - staffreportperioddays.trackedhours, - staffreportperioddays.daytype, - staffreportperioddays.contracthours, - staffreportperioddays.id_reportperiod - FROM %%NEWSCHEMA%%.staffreportperioddays - ORDER BY staffreportperioddays.id_staff, staffreportperioddays.daydate, staffreportperioddays.id_reportperiod; - -CREATE VIEW %%NEWSCHEMA%%.vw_staffworkplan_weekly AS - SELECT stw2.calweek, - to_char((stw2.caldate)::timestamp with time zone, 'YYYY'::text) AS calyear, - stw2.caldate AS weekbegin, - public.getdateslist(stw2.caldate, 7) AS dates, - stw2.id_staff, - max( - CASE - WHEN (stw2.isodow = (1)::double precision) THEN stw2.id - ELSE NULL::bigint - END) AS mon_id, - max( - CASE - WHEN (stw2.isodow = (1)::double precision) THEN to_char((stw2.timestart1)::interval, 'HH24:MI'::text) - ELSE NULL::text - END) AS mon_timestart1, - max( - CASE - WHEN (stw2.isodow = (1)::double precision) THEN to_char((stw2.timeend1)::interval, 'HH24:MI'::text) - ELSE NULL::text - END) AS mon_timeend1, - max( - CASE - WHEN (stw2.isodow = (1)::double precision) THEN to_char((stw2.timestart2)::interval, 'HH24:MI'::text) - ELSE NULL::text - END) AS mon_timestart2, - max( - CASE - WHEN (stw2.isodow = (1)::double precision) THEN to_char((stw2.timeend2)::interval, 'HH24:MI'::text) - ELSE NULL::text - END) AS mon_timeend2, - max( - CASE - WHEN (stw2.isodow = (1)::double precision) THEN to_char((stw2.timepause)::interval, 'HH24:MI'::text) - ELSE NULL::text - END) AS mon_timepause, - max( - CASE - WHEN (stw2.isodow = (1)::double precision) THEN to_char((stw2.vacancyhours)::interval, 'HH24:MI'::text) - ELSE NULL::text - END) AS mon_vacancyhours, - max( - CASE - WHEN (stw2.isodow = (1)::double precision) THEN stw2.vacancyname - ELSE NULL::text - END) AS mon_vacancyname, - max( - CASE - WHEN (stw2.isodow = (1)::double precision) THEN stw2.color - ELSE NULL::text - END) AS mon_color, - max( - CASE - WHEN (stw2.isodow = (1)::double precision) THEN stw2.id_vacancytype - ELSE NULL::integer - END) AS mon_vacancytype, - max( - CASE - WHEN (stw2.isodow = (1)::double precision) THEN stw2.daytype - ELSE NULL::integer - END) AS mon_daytype, - to_char(max( - CASE - WHEN (stw2.isodow = (1)::double precision) THEN ((stw2.time1 + stw2.time2) - (stw2.timepause)::interval) - ELSE NULL::interval - END), 'HH24:MI'::text) AS mon_timetotal, - max( - CASE - WHEN (stw2.isodow = (2)::double precision) THEN stw2.id - ELSE NULL::bigint - END) AS tue_id, - max( - CASE - WHEN (stw2.isodow = (2)::double precision) THEN to_char((stw2.timestart1)::interval, 'HH24:MI'::text) - ELSE NULL::text - END) AS tue_timestart1, - max( - CASE - WHEN (stw2.isodow = (2)::double precision) THEN to_char((stw2.timeend1)::interval, 'HH24:MI'::text) - ELSE NULL::text - END) AS tue_timeend1, - max( - CASE - WHEN (stw2.isodow = (2)::double precision) THEN to_char((stw2.timestart2)::interval, 'HH24:MI'::text) - ELSE NULL::text - END) AS tue_timestart2, - max( - CASE - WHEN (stw2.isodow = (2)::double precision) THEN to_char((stw2.timeend2)::interval, 'HH24:MI'::text) - ELSE NULL::text - END) AS tue_timeend2, - max( - CASE - WHEN (stw2.isodow = (2)::double precision) THEN to_char((stw2.timepause)::interval, 'HH24:MI'::text) - ELSE NULL::text - END) AS tue_timepause, - max( - CASE - WHEN (stw2.isodow = (2)::double precision) THEN to_char((stw2.vacancyhours)::interval, 'HH24:MI'::text) - ELSE NULL::text - END) AS tue_vacancyhours, - max( - CASE - WHEN (stw2.isodow = (2)::double precision) THEN stw2.id_vacancytype - ELSE NULL::integer - END) AS tue_vacancytype, - max( - CASE - WHEN (stw2.isodow = (2)::double precision) THEN stw2.vacancyname - ELSE NULL::text - END) AS tue_vacancyname, - max( - CASE - WHEN (stw2.isodow = (2)::double precision) THEN stw2.color - ELSE NULL::text - END) AS tue_color, - max( - CASE - WHEN (stw2.isodow = (2)::double precision) THEN stw2.daytype - ELSE NULL::integer - END) AS tue_daytype, - to_char(max( - CASE - WHEN (stw2.isodow = (2)::double precision) THEN ((stw2.time1 + stw2.time2) - (stw2.timepause)::interval) - ELSE NULL::interval - END), 'HH24:MI'::text) AS tue_timetotal, - max( - CASE - WHEN (stw2.isodow = (3)::double precision) THEN stw2.id - ELSE NULL::bigint - END) AS wed_id, - max( - CASE - WHEN (stw2.isodow = (3)::double precision) THEN to_char((stw2.timestart1)::interval, 'HH24:MI'::text) - ELSE NULL::text - END) AS wed_timestart1, - max( - CASE - WHEN (stw2.isodow = (3)::double precision) THEN to_char((stw2.timeend1)::interval, 'HH24:MI'::text) - ELSE NULL::text - END) AS wed_timeend1, - max( - CASE - WHEN (stw2.isodow = (3)::double precision) THEN to_char((stw2.timestart2)::interval, 'HH24:MI'::text) - ELSE NULL::text - END) AS wed_timestart2, - max( - CASE - WHEN (stw2.isodow = (3)::double precision) THEN to_char((stw2.timeend2)::interval, 'HH24:MI'::text) - ELSE NULL::text - END) AS wed_timeend2, - max( - CASE - WHEN (stw2.isodow = (3)::double precision) THEN to_char((stw2.timepause)::interval, 'HH24:MI'::text) - ELSE NULL::text - END) AS wed_timepause, - max( - CASE - WHEN (stw2.isodow = (3)::double precision) THEN to_char((stw2.vacancyhours)::interval, 'HH24:MI'::text) - ELSE NULL::text - END) AS wed_vacancyhours, - max( - CASE - WHEN (stw2.isodow = (3)::double precision) THEN stw2.id_vacancytype - ELSE NULL::integer - END) AS wed_vacancytype, - max( - CASE - WHEN (stw2.isodow = (3)::double precision) THEN stw2.vacancyname - ELSE NULL::text - END) AS wed_vacancyname, - max( - CASE - WHEN (stw2.isodow = (3)::double precision) THEN stw2.color - ELSE NULL::text - END) AS wed_color, - max( - CASE - WHEN (stw2.isodow = (3)::double precision) THEN stw2.daytype - ELSE NULL::integer - END) AS wed_daytype, - to_char(max( - CASE - WHEN (stw2.isodow = (3)::double precision) THEN ((stw2.time1 + stw2.time2) - (stw2.timepause)::interval) - ELSE NULL::interval - END), 'HH24:MI'::text) AS wed_timetotal, - max( - CASE - WHEN (stw2.isodow = (4)::double precision) THEN stw2.id - ELSE NULL::bigint - END) AS thu_id, - max( - CASE - WHEN (stw2.isodow = (4)::double precision) THEN to_char((stw2.timestart1)::interval, 'HH24:MI'::text) - ELSE NULL::text - END) AS thu_timestart1, - max( - CASE - WHEN (stw2.isodow = (4)::double precision) THEN to_char((stw2.timeend1)::interval, 'HH24:MI'::text) - ELSE NULL::text - END) AS thu_timeend1, - max( - CASE - WHEN (stw2.isodow = (4)::double precision) THEN to_char((stw2.timestart2)::interval, 'HH24:MI'::text) - ELSE NULL::text - END) AS thu_timestart2, - max( - CASE - WHEN (stw2.isodow = (4)::double precision) THEN to_char((stw2.timeend2)::interval, 'HH24:MI'::text) - ELSE NULL::text - END) AS thu_timeend2, - max( - CASE - WHEN (stw2.isodow = (4)::double precision) THEN to_char((stw2.timepause)::interval, 'HH24:MI'::text) - ELSE NULL::text - END) AS thu_timepause, - max( - CASE - WHEN (stw2.isodow = (4)::double precision) THEN to_char((stw2.vacancyhours)::interval, 'HH24:MI'::text) - ELSE NULL::text - END) AS thu_vacancyhours, - max( - CASE - WHEN (stw2.isodow = (4)::double precision) THEN stw2.id_vacancytype - ELSE NULL::integer - END) AS thu_vacancytype, - max( - CASE - WHEN (stw2.isodow = (4)::double precision) THEN stw2.vacancyname - ELSE NULL::text - END) AS thu_vacancyname, - max( - CASE - WHEN (stw2.isodow = (4)::double precision) THEN stw2.color - ELSE NULL::text - END) AS thu_color, - max( - CASE - WHEN (stw2.isodow = (4)::double precision) THEN stw2.daytype - ELSE NULL::integer - END) AS thu_daytype, - to_char(max( - CASE - WHEN (stw2.isodow = (4)::double precision) THEN ((stw2.time1 + stw2.time2) - (stw2.timepause)::interval) - ELSE NULL::interval - END), 'HH24:MI'::text) AS thu_timetotal, - max( - CASE - WHEN (stw2.isodow = (5)::double precision) THEN stw2.id - ELSE NULL::bigint - END) AS fri_id, - max( - CASE - WHEN (stw2.isodow = (5)::double precision) THEN to_char((stw2.timestart1)::interval, 'HH24:MI'::text) - ELSE NULL::text - END) AS fri_timestart1, - max( - CASE - WHEN (stw2.isodow = (5)::double precision) THEN to_char((stw2.timeend1)::interval, 'HH24:MI'::text) - ELSE NULL::text - END) AS fri_timeend1, - max( - CASE - WHEN (stw2.isodow = (5)::double precision) THEN to_char((stw2.timestart2)::interval, 'HH24:MI'::text) - ELSE NULL::text - END) AS fri_timestart2, - max( - CASE - WHEN (stw2.isodow = (5)::double precision) THEN to_char((stw2.timeend2)::interval, 'HH24:MI'::text) - ELSE NULL::text - END) AS fri_timeend2, - max( - CASE - WHEN (stw2.isodow = (5)::double precision) THEN to_char((stw2.timepause)::interval, 'HH24:MI'::text) - ELSE NULL::text - END) AS fri_timepause, - max( - CASE - WHEN (stw2.isodow = (5)::double precision) THEN to_char((stw2.vacancyhours)::interval, 'HH24:MI'::text) - ELSE NULL::text - END) AS fri_vacancyhours, - max( - CASE - WHEN (stw2.isodow = (5)::double precision) THEN stw2.id_vacancytype - ELSE NULL::integer - END) AS fri_vacancytype, - max( - CASE - WHEN (stw2.isodow = (5)::double precision) THEN stw2.vacancyname - ELSE NULL::text - END) AS fri_vacancyname, - max( - CASE - WHEN (stw2.isodow = (5)::double precision) THEN stw2.color - ELSE NULL::text - END) AS fri_color, - max( - CASE - WHEN (stw2.isodow = (5)::double precision) THEN stw2.daytype - ELSE NULL::integer - END) AS fri_daytype, - to_char(max( - CASE - WHEN (stw2.isodow = (5)::double precision) THEN ((stw2.time1 + stw2.time2) - (stw2.timepause)::interval) - ELSE NULL::interval - END), 'HH24:MI'::text) AS fri_timetotal, - max( - CASE - WHEN (stw2.isodow = (6)::double precision) THEN stw2.id - ELSE NULL::bigint - END) AS sat_id, - max( - CASE - WHEN (stw2.isodow = (6)::double precision) THEN to_char((stw2.timestart1)::interval, 'HH24:MI'::text) - ELSE NULL::text - END) AS sat_timestart1, - max( - CASE - WHEN (stw2.isodow = (6)::double precision) THEN to_char((stw2.timeend1)::interval, 'HH24:MI'::text) - ELSE NULL::text - END) AS sat_timeend1, - max( - CASE - WHEN (stw2.isodow = (6)::double precision) THEN to_char((stw2.timestart2)::interval, 'HH24:MI'::text) - ELSE NULL::text - END) AS sat_timestart2, - max( - CASE - WHEN (stw2.isodow = (6)::double precision) THEN to_char((stw2.timeend2)::interval, 'HH24:MI'::text) - ELSE NULL::text - END) AS sat_timeend2, - max( - CASE - WHEN (stw2.isodow = (6)::double precision) THEN to_char((stw2.timepause)::interval, 'HH24:MI'::text) - ELSE NULL::text - END) AS sat_timepause, - max( - CASE - WHEN (stw2.isodow = (6)::double precision) THEN to_char((stw2.vacancyhours)::interval, 'HH24:MI'::text) - ELSE NULL::text - END) AS sat_vacancyhours, - max( - CASE - WHEN (stw2.isodow = (6)::double precision) THEN stw2.id_vacancytype - ELSE NULL::integer - END) AS sat_vacancytype, - max( - CASE - WHEN (stw2.isodow = (6)::double precision) THEN stw2.vacancyname - ELSE NULL::text - END) AS sat_vacancyname, - max( - CASE - WHEN (stw2.isodow = (6)::double precision) THEN stw2.color - ELSE NULL::text - END) AS sat_color, - max( - CASE - WHEN (stw2.isodow = (6)::double precision) THEN stw2.daytype - ELSE NULL::integer - END) AS sat_daytype, - to_char(max( - CASE - WHEN (stw2.isodow = (6)::double precision) THEN ((stw2.time1 + stw2.time2) - (stw2.timepause)::interval) - ELSE NULL::interval - END), 'HH24:MI'::text) AS sat_timetotal, - max( - CASE - WHEN (stw2.isodow = (7)::double precision) THEN stw2.id - ELSE NULL::bigint - END) AS sun_id, - max( - CASE - WHEN (stw2.isodow = (7)::double precision) THEN to_char((stw2.timestart1)::interval, 'HH24:MI'::text) - ELSE NULL::text - END) AS sun_timestart1, - max( - CASE - WHEN (stw2.isodow = (7)::double precision) THEN to_char((stw2.timeend1)::interval, 'HH24:MI'::text) - ELSE NULL::text - END) AS sun_timeend1, - max( - CASE - WHEN (stw2.isodow = (7)::double precision) THEN to_char((stw2.timestart2)::interval, 'HH24:MI'::text) - ELSE NULL::text - END) AS sun_timestart2, - max( - CASE - WHEN (stw2.isodow = (7)::double precision) THEN to_char((stw2.timeend2)::interval, 'HH24:MI'::text) - ELSE NULL::text - END) AS sun_timeend2, - max( - CASE - WHEN (stw2.isodow = (7)::double precision) THEN to_char((stw2.timepause)::interval, 'HH24:MI'::text) - ELSE NULL::text - END) AS sun_timepause, - max( - CASE - WHEN (stw2.isodow = (7)::double precision) THEN to_char((stw2.vacancyhours)::interval, 'HH24:MI'::text) - ELSE NULL::text - END) AS sun_vacancyhours, - max( - CASE - WHEN (stw2.isodow = (7)::double precision) THEN stw2.id_vacancytype - ELSE NULL::integer - END) AS sun_vacancytype, - max( - CASE - WHEN (stw2.isodow = (7)::double precision) THEN stw2.vacancyname - ELSE NULL::text - END) AS sun_vacancyname, - max( - CASE - WHEN (stw2.isodow = (7)::double precision) THEN stw2.color - ELSE NULL::text - END) AS sun_color, - max( - CASE - WHEN (stw2.isodow = (7)::double precision) THEN stw2.daytype - ELSE NULL::integer - END) AS sun_daytype, - to_char(max( - CASE - WHEN (stw2.isodow = (7)::double precision) THEN ((stw2.time1 + stw2.time2) - (stw2.timepause)::interval) - ELSE NULL::interval - END), 'HH24:MI'::text) AS sun_timetotal, - to_char(sum(((stw2.time1 + stw2.time2) - (stw2.timepause)::interval)), 'HH24:MI'::text) AS week_timetotal, - CASE - WHEN ((stw2.calweek IS NOT NULL) AND (stw2.id_staff IS NOT NULL)) THEN public.weekvacancy('%%NEWSCHEMA%%'::text, stw2.calweek, stw2.id_staff) - ELSE NULL::text - END AS week_vacancy, - stw2.staffname AS dspstaffname - FROM ( SELECT stw.daydate, - date_part('week'::text, stw.daydate) AS calweek, - (date_trunc('week'::text, (stw.daydate)::timestamp with time zone))::date AS caldate, - date_part('isodow'::text, stw.daydate) AS isodow, - stw.id, - stw.id_staff, - ((st.surname || ' '::text) || st.prename) AS staffname, - stw.timestart1, - stw.timeend1, - stw.vacancyhours, - stw.id_vacancytype, - vt.color, - vt.vacancyname, - stw.daytype, - CASE - WHEN (stw.timestart1 > stw.timeend1) THEN ('24:00:00'::time without time zone - ((stw.timestart1 - stw.timeend1))::time without time zone) - ELSE (stw.timeend1 - stw.timestart1) - END AS time1, - stw.timestart2, - stw.timeend2, - CASE - WHEN (stw.timestart2 > stw.timeend2) THEN ('24:00:00'::time without time zone - ((stw.timestart2 - stw.timeend2))::time without time zone) - ELSE (stw.timeend2 - stw.timestart2) - END AS time2, - stw.timepause - FROM ((%%NEWSCHEMA%%.staffreportperioddays stw - LEFT JOIN %%NEWSCHEMA%%.staff st ON ((stw.id_staff = st.id))) - LEFT JOIN %%NEWSCHEMA%%.vacancytypes vt ON ((stw.id_vacancytype = vt.id)))) stw2 - GROUP BY stw2.calweek, stw2.caldate, stw2.id_staff, stw2.staffname; - -CREATE VIEW %%NEWSCHEMA%%.vw_staffworkplandata AS - SELECT date_part('isoyear'::text, swp.daydate) AS calyear, - date_part('week'::text, swp.daydate) AS calweek, - to_char((swp.daydate)::timestamp with time zone, 'dy'::text) AS weekday, - swp.id, - swp.id_staff, - swp.daydate, - ((st.surname || ' '::text) || st.prename) AS staffname, - to_char((swp.timestart1)::interval, 'HH24:MI'::text) AS timestart1, - to_char((swp.timeend1)::interval, 'HH24:MI'::text) AS timeend1, - to_char((swp.timestart2)::interval, 'HH24:MI'::text) AS timestart2, - to_char((swp.timeend2)::interval, 'HH24:MI'::text) AS timeend2, - to_char((swp.timepause)::interval, 'HH24:MI'::text) AS timepause, - to_char((swp.vacancyhours)::interval, 'HH24:MI'::text) AS vacancyhours, - to_char((swp.contracthours)::interval, 'HH24:MI'::text) AS contracthours, - to_char((swp.interruptionhours)::interval, 'HH24:MI'::text) AS interruptionhours, - swp.id_staffgroup, - swp.id_vacancytype, - swp.id_recuperationtype, - swp.daytype, - to_char((swp.workhours)::interval, 'HH24:MI'::text) AS totalhours, - to_char((swp.recuperationhours)::interval, 'HH24:MI'::text) AS recuperationhours, - to_char((swp.trackedhours)::interval, 'HH24:MI'::text) AS trackedhours, - swp.id_reportperiod - FROM (%%NEWSCHEMA%%.staffreportperioddays swp - JOIN %%NEWSCHEMA%%.staff st ON ((swp.id_staff = st.id))); - -CREATE VIEW %%NEWSCHEMA%%.vw_staffworkplanstafflist AS - SELECT sc.id AS id_staffcontract, - st.id AS id_staff, - ((st.surname || ' '::text) || st.prename) AS staffname, - sc.startdate, - sc.enddate, - sc.id_staffgroup, - sc.weekhours, - sc.weekdays - FROM (%%NEWSCHEMA%%.staff st - LEFT JOIN %%NEWSCHEMA%%.staffcontract sc ON ((st.id = sc.id_staff))); + ORDER BY st.surname, st.prename, srp.id_staff, rp.startdate, rp.enddate; CREATE VIEW %%NEWSCHEMA%%.vw_vacancylist AS SELECT vacancytypes.id, @@ -1717,135 +929,81 @@ CREATE VIEW %%NEWSCHEMA%%.vw_vacancylist AS vacancytypes.isworktime FROM %%NEWSCHEMA%%.vacancytypes; +CREATE TABLE %%NEWSCHEMA%%.workplandays ( + id integer NOT NULL, + id_workplan integer, + weekday integer, + start1 time without time zone, + end1 time without time zone, + start2 time without time zone, + end2 time without time zone, + pause time without time zone +); + +CREATE VIEW %%NEWSCHEMA%%.vw_workplandaysdata AS + SELECT workplandays.id, + workplandays.id_workplan, + workplandays.weekday, + workplandays.start1, + workplandays.end1, + workplandays.start2, + workplandays.end2, + workplandays.pause + FROM %%NEWSCHEMA%%.workplandays; + +CREATE VIEW %%NEWSCHEMA%%.vw_workplandayslist AS +SELECT + NULL::text AS workplan, + NULL::text AS weekhours, + NULL::integer AS id, + NULL::integer AS id_workplan, + NULL::integer AS weekday, + NULL::text AS start1, + NULL::text AS end1, + NULL::text AS start2, + NULL::text AS end2, + NULL::text AS pause, + NULL::text AS dayhours, + NULL::bigint AS staffcount; + CREATE VIEW %%NEWSCHEMA%%.vw_workplanlist AS SELECT workplans.id, workplans.workplan FROM %%NEWSCHEMA%%.workplans; -CREATE VIEW %%NEWSCHEMA%%.vw_workplansdata AS - SELECT workplans.id, - workplans.workplan, - to_char(((((((COALESCE(( - CASE - WHEN (workplans.mon_timeend2 IS NOT NULL) THEN ((workplans.mon_timeend2 - workplans.mon_timestart1) - (workplans.mon_timestart2 - workplans.mon_timeend1)) - ELSE (workplans.mon_timeend1 - workplans.mon_timestart1) - END - COALESCE((workplans.mon_timepause)::interval, '00:00:00'::interval)), '00:00:00'::interval) + COALESCE(( - CASE - WHEN (workplans.tue_timeend2 IS NOT NULL) THEN ((workplans.tue_timeend2 - workplans.tue_timestart1) - (workplans.tue_timestart2 - workplans.tue_timeend1)) - ELSE (workplans.tue_timeend1 - workplans.tue_timestart1) - END - COALESCE((workplans.tue_timepause)::interval, '00:00:00'::interval)), '00:00:00'::interval)) + COALESCE(( - CASE - WHEN (workplans.wed_timeend2 IS NOT NULL) THEN ((workplans.wed_timeend2 - workplans.wed_timestart1) - (workplans.wed_timestart2 - workplans.wed_timeend1)) - ELSE (workplans.wed_timeend1 - workplans.wed_timestart1) - END - COALESCE((workplans.wed_timepause)::interval, '00:00:00'::interval)), '00:00:00'::interval)) + COALESCE(( - CASE - WHEN (workplans.thu_timeend2 IS NOT NULL) THEN ((workplans.thu_timeend2 - workplans.thu_timestart1) - (workplans.thu_timestart2 - workplans.thu_timeend1)) - ELSE (workplans.thu_timeend1 - workplans.thu_timestart1) - END - COALESCE((workplans.thu_timepause)::interval, '00:00:00'::interval)), '00:00:00'::interval)) + COALESCE(( - CASE - WHEN (workplans.fri_timeend2 IS NOT NULL) THEN ((workplans.fri_timeend2 - workplans.fri_timestart1) - (workplans.fri_timestart2 - workplans.fri_timeend1)) - ELSE (workplans.fri_timeend1 - workplans.fri_timestart1) - END - COALESCE((workplans.fri_timepause)::interval, '00:00:00'::interval)), '00:00:00'::interval)) + COALESCE(( - CASE - WHEN (workplans.sat_timeend2 IS NOT NULL) THEN ((workplans.sat_timeend2 - workplans.sat_timestart1) - (workplans.sat_timestart2 - workplans.sat_timeend1)) - ELSE (workplans.sat_timeend1 - workplans.sat_timestart1) - END - COALESCE((workplans.sat_timepause)::interval, '00:00:00'::interval)), '00:00:00'::interval)) + COALESCE(( - CASE - WHEN (workplans.sun_timeend2 IS NOT NULL) THEN ((workplans.sun_timeend2 - workplans.sun_timestart1) - (workplans.sun_timestart2 - workplans.sun_timeend1)) - ELSE (workplans.sun_timeend1 - workplans.sun_timestart1) - END - COALESCE((workplans.sun_timepause)::interval, '00:00:00'::interval)), '00:00:00'::interval)), 'HH24:MI'::text) AS weektotal, - to_char((workplans.mon_timestart1)::interval, 'HH24:MI'::text) AS mon_timestart1, - to_char((workplans.mon_timeend1)::interval, 'HH24:MI'::text) AS mon_timeend1, - to_char((workplans.mon_timestart2)::interval, 'HH24:MI'::text) AS mon_timestart2, - to_char((workplans.mon_timeend2)::interval, 'HH24:MI'::text) AS mon_timeend2, - to_char((workplans.mon_timepause)::interval, 'HH24:MI'::text) AS mon_timepause, - to_char((workplans.mon_timestart2 - workplans.mon_timeend1), 'HH24:MI'::text) AS mon_interruption, - to_char(( - CASE - WHEN (workplans.mon_timeend2 IS NOT NULL) THEN ((workplans.mon_timeend2 - workplans.mon_timestart1) - (workplans.mon_timestart2 - workplans.mon_timeend1)) - ELSE (workplans.mon_timeend1 - workplans.mon_timestart1) - END - COALESCE((workplans.mon_timepause)::interval, '00:00:00'::interval)), 'HH24:MI'::text) AS mon_total, - to_char((workplans.tue_timestart1)::interval, 'HH24:MI'::text) AS tue_timestart1, - to_char((workplans.tue_timeend1)::interval, 'HH24:MI'::text) AS tue_timeend1, - to_char((workplans.tue_timestart2)::interval, 'HH24:MI'::text) AS tue_timestart2, - to_char((workplans.tue_timeend2)::interval, 'HH24:MI'::text) AS tue_timeend2, - to_char((workplans.tue_timepause)::interval, 'HH24:MI'::text) AS tue_timepause, - to_char((workplans.tue_timestart2 - workplans.tue_timeend1), 'HH24:MI'::text) AS tue_interruption, - to_char(( - CASE - WHEN (workplans.tue_timeend2 IS NOT NULL) THEN ((workplans.tue_timeend2 - workplans.tue_timestart1) - (workplans.tue_timestart2 - workplans.tue_timeend1)) - ELSE (workplans.tue_timeend1 - workplans.tue_timestart1) - END - COALESCE((workplans.tue_timepause)::interval, '00:00:00'::interval)), 'HH24:MI'::text) AS tue_total, - to_char((workplans.wed_timestart1)::interval, 'HH24:MI'::text) AS wed_timestart1, - to_char((workplans.wed_timeend1)::interval, 'HH24:MI'::text) AS wed_timeend1, - to_char((workplans.wed_timestart2)::interval, 'HH24:MI'::text) AS wed_timestart2, - to_char((workplans.wed_timeend2)::interval, 'HH24:MI'::text) AS wed_timeend2, - to_char((workplans.wed_timepause)::interval, 'HH24:MI'::text) AS wed_timepause, - to_char((workplans.wed_timestart2 - workplans.wed_timeend1), 'HH24:MI'::text) AS wed_interruption, - to_char(( - CASE - WHEN (workplans.wed_timeend2 IS NOT NULL) THEN ((workplans.wed_timeend2 - workplans.wed_timestart1) - (workplans.wed_timestart2 - workplans.wed_timeend1)) - ELSE (workplans.wed_timeend1 - workplans.wed_timestart1) - END - COALESCE((workplans.wed_timepause)::interval, '00:00:00'::interval)), 'HH24:MI'::text) AS wed_total, - to_char((workplans.thu_timestart1)::interval, 'HH24:MI'::text) AS thu_timestart1, - to_char((workplans.thu_timeend1)::interval, 'HH24:MI'::text) AS thu_timeend1, - to_char((workplans.thu_timestart2)::interval, 'HH24:MI'::text) AS thu_timestart2, - to_char((workplans.thu_timeend2)::interval, 'HH24:MI'::text) AS thu_timeend2, - to_char((workplans.thu_timepause)::interval, 'HH24:MI'::text) AS thu_timepause, - to_char((workplans.thu_timestart2 - workplans.thu_timeend1), 'HH24:MI'::text) AS thu_interruption, - to_char(( - CASE - WHEN (workplans.thu_timeend2 IS NOT NULL) THEN ((workplans.thu_timeend2 - workplans.thu_timestart1) - (workplans.thu_timestart2 - workplans.thu_timeend1)) - ELSE (workplans.thu_timeend1 - workplans.thu_timestart1) - END - COALESCE((workplans.thu_timepause)::interval, '00:00:00'::interval)), 'HH24:MI'::text) AS thu_total, - to_char((workplans.fri_timestart1)::interval, 'HH24:MI'::text) AS fri_timestart1, - to_char((workplans.fri_timeend1)::interval, 'HH24:MI'::text) AS fri_timeend1, - to_char((workplans.fri_timestart2)::interval, 'HH24:MI'::text) AS fri_timestart2, - to_char((workplans.fri_timeend2)::interval, 'HH24:MI'::text) AS fri_timeend2, - to_char((workplans.fri_timepause)::interval, 'HH24:MI'::text) AS fri_timepause, - to_char((workplans.fri_timestart2 - workplans.fri_timeend1), 'HH24:MI'::text) AS fri_interruption, - to_char(( - CASE - WHEN (workplans.fri_timeend2 IS NOT NULL) THEN ((workplans.fri_timeend2 - workplans.fri_timestart1) - (workplans.fri_timestart2 - workplans.fri_timeend1)) - ELSE (workplans.fri_timeend1 - workplans.fri_timestart1) - END - COALESCE((workplans.fri_timepause)::interval, '00:00:00'::interval)), 'HH24:MI'::text) AS fri_total, - to_char((workplans.sat_timestart1)::interval, 'HH24:MI'::text) AS sat_timestart1, - to_char((workplans.sat_timeend1)::interval, 'HH24:MI'::text) AS sat_timeend1, - to_char((workplans.sat_timestart2)::interval, 'HH24:MI'::text) AS sat_timestart2, - to_char((workplans.sat_timeend2)::interval, 'HH24:MI'::text) AS sat_timeend2, - to_char((workplans.sat_timepause)::interval, 'HH24:MI'::text) AS sat_timepause, - to_char((workplans.sat_timestart2 - workplans.sat_timeend1), 'HH24:MI'::text) AS sat_interruption, - to_char(( - CASE - WHEN (workplans.sat_timeend2 IS NOT NULL) THEN ((workplans.sat_timeend2 - workplans.sat_timestart1) - (workplans.sat_timestart2 - workplans.sat_timeend1)) - ELSE (workplans.sat_timeend1 - workplans.sat_timestart1) - END - COALESCE((workplans.sat_timepause)::interval, '00:00:00'::interval)), 'HH24:MI'::text) AS sat_total, - to_char((workplans.sun_timestart1)::interval, 'HH24:MI'::text) AS sun_timestart1, - to_char((workplans.sun_timeend1)::interval, 'HH24:MI'::text) AS sun_timeend1, - to_char((workplans.sun_timestart2)::interval, 'HH24:MI'::text) AS sun_timestart2, - to_char((workplans.sun_timeend2)::interval, 'HH24:MI'::text) AS sun_timeend2, - to_char((workplans.sun_timepause)::interval, 'HH24:MI'::text) AS sun_timepause, - to_char((workplans.sun_timestart2 - workplans.sat_timeend1), 'HH24:MI'::text) AS sun_interruption, - to_char(( - CASE - WHEN (workplans.sun_timeend2 IS NOT NULL) THEN ((workplans.sun_timeend2 - workplans.sun_timestart1) - (workplans.sun_timestart2 - workplans.sun_timeend1)) - ELSE (workplans.sun_timeend1 - workplans.sun_timestart1) - END - COALESCE((workplans.sun_timepause)::interval, '00:00:00'::interval)), 'HH24:MI'::text) AS sun_total - FROM %%NEWSCHEMA%%.workplans; +CREATE TABLE %%NEWSCHEMA%%.worktimes ( + id integer NOT NULL, + startdate date, + enddate date, + defaultdayhours interval, + maxdayhours interval, + defaultweekhours interval, + maxweekhours interval, + maxinterruptionhours interval, + isdefault boolean +); -CREATE VIEW %%NEWSCHEMA%%.vw_workplans AS - SELECT workplans.id, - workplans.workplan, - vw_workplansdata.weektotal, - ((((COALESCE(((to_char((workplans.mon_timestart1)::interval, 'HH24:MI'::text) || ' - '::text) || to_char((workplans.mon_timeend1)::interval, 'HH24:MI'::text)), ''::text) || COALESCE(((('
'::text || to_char((workplans.mon_timestart2)::interval, 'HH24:MI'::text)) || ' - '::text) || to_char((workplans.mon_timeend2)::interval, 'HH24:MI'::text)), ''::text)) || COALESCE((('
'::text || 'Pause: '::text) || to_char((workplans.mon_timepause)::interval, 'HH24:MI'::text)), ''::text)) || COALESCE((('
'::text || 'Coupure: '::text) || vw_workplansdata.mon_interruption), ''::text)) || COALESCE((('
'::text || 'Total: '::text) || vw_workplansdata.mon_total), ''::text)) AS dspmontimes, - ((((COALESCE(((to_char((workplans.tue_timestart1)::interval, 'HH24:MI'::text) || ' - '::text) || to_char((workplans.tue_timeend1)::interval, 'HH24:MI'::text)), ''::text) || COALESCE(((('
'::text || to_char((workplans.tue_timestart2)::interval, 'HH24:MI'::text)) || ' - '::text) || to_char((workplans.tue_timeend2)::interval, 'HH24:MI'::text)), ''::text)) || COALESCE((('
'::text || 'Pause: '::text) || to_char((workplans.tue_timepause)::interval, 'HH24:MI'::text)), ''::text)) || COALESCE((('
'::text || 'Coupure: '::text) || vw_workplansdata.tue_interruption), ''::text)) || COALESCE((('
'::text || 'Total: '::text) || vw_workplansdata.tue_total), ''::text)) AS dsptuetimes, - ((((COALESCE(((to_char((workplans.wed_timestart1)::interval, 'HH24:MI'::text) || ' - '::text) || to_char((workplans.wed_timeend1)::interval, 'HH24:MI'::text)), ''::text) || COALESCE(((('
'::text || to_char((workplans.wed_timestart2)::interval, 'HH24:MI'::text)) || ' - '::text) || to_char((workplans.wed_timeend2)::interval, 'HH24:MI'::text)), ''::text)) || COALESCE((('
'::text || 'Pause: '::text) || to_char((workplans.wed_timepause)::interval, 'HH24:MI'::text)), ''::text)) || COALESCE((('
'::text || 'Coupure: '::text) || vw_workplansdata.wed_interruption), ''::text)) || COALESCE((('
'::text || 'Total: '::text) || vw_workplansdata.wed_total), ''::text)) AS dspwedtimes, - ((((COALESCE(((to_char((workplans.thu_timestart1)::interval, 'HH24:MI'::text) || ' - '::text) || to_char((workplans.thu_timeend1)::interval, 'HH24:MI'::text)), ''::text) || COALESCE(((('
'::text || to_char((workplans.thu_timestart2)::interval, 'HH24:MI'::text)) || ' - '::text) || to_char((workplans.thu_timeend2)::interval, 'HH24:MI'::text)), ''::text)) || COALESCE((('
'::text || 'Pause: '::text) || to_char((workplans.thu_timepause)::interval, 'HH24:MI'::text)), ''::text)) || COALESCE((('
'::text || 'Coupure: '::text) || vw_workplansdata.thu_interruption), ''::text)) || COALESCE((('
'::text || 'Total: '::text) || vw_workplansdata.thu_total), ''::text)) AS dspthutimes, - ((((COALESCE(((to_char((workplans.fri_timestart1)::interval, 'HH24:MI'::text) || ' -'::text) || to_char((workplans.fri_timeend1)::interval, 'HH24:MI'::text)), ''::text) || COALESCE(((('
'::text || to_char((workplans.fri_timestart2)::interval, 'HH24:MI'::text)) || ' - '::text) || to_char((workplans.fri_timeend2)::interval, 'HH24:MI'::text)), ''::text)) || COALESCE((('
'::text || 'Pause: '::text) || to_char((workplans.fri_timepause)::interval, 'HH24:MI'::text)), ''::text)) || COALESCE((('
'::text || 'Coupure: '::text) || vw_workplansdata.fri_interruption), ''::text)) || COALESCE((('
'::text || 'Total: '::text) || vw_workplansdata.fri_total), ''::text)) AS dspfritimes, - ((((COALESCE(((to_char((workplans.sat_timestart1)::interval, 'HH24:MI'::text) || ' - '::text) || to_char((workplans.sat_timeend1)::interval, 'HH24:MI'::text)), ''::text) || COALESCE(((('
'::text || to_char((workplans.sat_timestart2)::interval, 'HH24:MI'::text)) || ' - '::text) || to_char((workplans.sat_timeend2)::interval, 'HH24:MI'::text)), ''::text)) || COALESCE((('
'::text || 'Pause: '::text) || to_char((workplans.sat_timepause)::interval, 'HH24:MI'::text)), ''::text)) || COALESCE((('
'::text || 'Coupure: '::text) || vw_workplansdata.sat_interruption), ''::text)) || COALESCE((('
'::text || 'Total: '::text) || vw_workplansdata.sat_total), ''::text)) AS dspsattimes, - ((((COALESCE(((to_char((workplans.sun_timestart1)::interval, 'HH24:MI'::text) || ' - '::text) || to_char((workplans.sun_timeend1)::interval, 'HH24:MI'::text)), ''::text) || COALESCE(((('
'::text || to_char((workplans.sun_timestart2)::interval, 'HH24:MI'::text)) || ' - '::text) || to_char((workplans.sun_timeend2)::interval, 'HH24:MI'::text)), ''::text)) || COALESCE((('
'::text || 'Pause: '::text) || to_char((workplans.sun_timepause)::interval, 'HH24:MI'::text)), ''::text)) || COALESCE((('
'::text || 'Coupure: '::text) || vw_workplansdata.sun_interruption), ''::text)) || COALESCE((('
'::text || 'Total: '::text) || vw_workplansdata.sun_total), ''::text)) AS dspsuntimes - FROM (%%NEWSCHEMA%%.workplans - JOIN %%NEWSCHEMA%%.vw_workplansdata ON ((workplans.id = vw_workplansdata.id))); +CREATE VIEW %%NEWSCHEMA%%.vw_worktimeslist AS + SELECT worktimes.id, + worktimes.startdate, + worktimes.enddate, + worktimes.isdefault, + to_char(worktimes.defaultdayhours, 'HH24:MI'::text) AS defaultdayhours, + to_char(worktimes.maxdayhours, 'HH24:MI'::text) AS maxdayhours, + to_char(worktimes.defaultweekhours, 'HH24:MI'::text) AS defaultweekhours, + to_char(worktimes.maxweekhours, 'HH24:MI'::text) AS maxweekhours, + to_char(worktimes.maxinterruptionhours, 'HH24:MI'::text) AS maxinterruptionhours + FROM %%NEWSCHEMA%%.worktimes + ORDER BY worktimes.startdate NULLS FIRST, worktimes.enddate NULLS FIRST; + +CREATE SEQUENCE %%NEWSCHEMA%%.workplandays_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + +ALTER SEQUENCE %%NEWSCHEMA%%.workplandays_id_seq OWNED BY %%NEWSCHEMA%%.workplandays.id; CREATE SEQUENCE %%NEWSCHEMA%%.workplans_id_seq START WITH 1 @@ -1856,6 +1014,15 @@ CREATE SEQUENCE %%NEWSCHEMA%%.workplans_id_seq ALTER SEQUENCE %%NEWSCHEMA%%.workplans_id_seq OWNED BY %%NEWSCHEMA%%.workplans.id; +CREATE SEQUENCE %%NEWSCHEMA%%.worktimes_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + +ALTER SEQUENCE %%NEWSCHEMA%%.worktimes_id_seq OWNED BY %%NEWSCHEMA%%.worktimes.id; + CREATE SEQUENCE %%NEWSCHEMA%%.worktypes_id_seq START WITH 1 INCREMENT BY 1 @@ -1865,39 +1032,6 @@ CREATE SEQUENCE %%NEWSCHEMA%%.worktypes_id_seq ALTER SEQUENCE %%NEWSCHEMA%%.worktypes_id_seq OWNED BY %%NEWSCHEMA%%.vacancytypes.id; -CREATE VIEW %%NEWSCHEMA%%.zzold_vw_staffworkplanlist AS -SELECT - NULL::double precision AS calweek, - NULL::double precision AS calyear, - NULL::date AS weekstart, - NULL::date AS weekend, - NULL::text AS dates, - NULL::integer AS id_staff, - NULL::text AS dspstaffname, - NULL::integer AS id_staffgroup, - NULL::text AS dspweektotals, - NULL::interval AS contracthours, - NULL::interval AS plannedhours, - NULL::interval AS vacancyhours, - NULL::interval AS recuperationhours, - NULL::interval AS hoursdiff, - NULL::bigint AS mon_id, - NULL::text AS dspmontimes, - NULL::bigint AS tue_id, - NULL::text AS dsptuetimes, - NULL::bigint AS wed_id, - NULL::text AS dspwedtimes, - NULL::bigint AS thu_id, - NULL::text AS dspthutimes, - NULL::bigint AS fri_id, - NULL::text AS dspfritimes, - NULL::bigint AS sat_id, - NULL::text AS dspsattimes, - NULL::bigint AS sun_id, - NULL::text AS dspsuntimes; - -ALTER TABLE ONLY %%NEWSCHEMA%%.editlog ALTER COLUMN id SET DEFAULT nextval('%%NEWSCHEMA%%.editlog_id_seq'::regclass); - ALTER TABLE ONLY %%NEWSCHEMA%%.reportperiod ALTER COLUMN id SET DEFAULT nextval('%%NEWSCHEMA%%.reportperiod_id_seq'::regclass); ALTER TABLE ONLY %%NEWSCHEMA%%.staff ALTER COLUMN id SET DEFAULT nextval('%%NEWSCHEMA%%.staff_id_seq'::regclass); @@ -1918,12 +1052,11 @@ ALTER TABLE ONLY %%NEWSCHEMA%%.vacancydays ALTER COLUMN id SET DEFAULT nextval(' ALTER TABLE ONLY %%NEWSCHEMA%%.vacancytypes ALTER COLUMN id SET DEFAULT nextval('%%NEWSCHEMA%%.worktypes_id_seq'::regclass); -ALTER TABLE ONLY %%NEWSCHEMA%%.workplans ALTER COLUMN id SET DEFAULT nextval('%%NEWSCHEMA%%.workplans_id_seq'::regclass); +ALTER TABLE ONLY %%NEWSCHEMA%%.workplandays ALTER COLUMN id SET DEFAULT nextval('%%NEWSCHEMA%%.workplandays_id_seq'::regclass); -ALTER TABLE ONLY %%NEWSCHEMA%%.zzold_staffreportperiodsums ALTER COLUMN id SET DEFAULT nextval('%%NEWSCHEMA%%.staffreportperiodsums_id_seq'::regclass); +ALTER TABLE ONLY %%NEWSCHEMA%%.workplans ALTER COLUMN id SET DEFAULT nextval('%%NEWSCHEMA%%.workplans_id_seq'::regclass); -ALTER TABLE ONLY %%NEWSCHEMA%%.editlog - ADD CONSTRAINT editlog_pkey PRIMARY KEY (id); +ALTER TABLE ONLY %%NEWSCHEMA%%.worktimes ALTER COLUMN id SET DEFAULT nextval('%%NEWSCHEMA%%.worktimes_id_seq'::regclass); ALTER TABLE ONLY %%NEWSCHEMA%%.reportperiod ADD CONSTRAINT reportperiod_pkey PRIMARY KEY (id); @@ -1940,9 +1073,6 @@ ALTER TABLE ONLY %%NEWSCHEMA%%.staffcontract ALTER TABLE ONLY %%NEWSCHEMA%%.staffreportperiod ADD CONSTRAINT staffreportperiod_pkey PRIMARY KEY (id); -ALTER TABLE ONLY %%NEWSCHEMA%%.zzold_staffreportperiodsums - ADD CONSTRAINT staffreportperiodsums_pkey PRIMARY KEY (id); - ALTER TABLE ONLY %%NEWSCHEMA%%.staffvacancy ADD CONSTRAINT staffvacancy_pkey PRIMARY KEY (id); @@ -1952,9 +1082,6 @@ ALTER TABLE ONLY %%NEWSCHEMA%%.staffreportperiodweeks ALTER TABLE ONLY %%NEWSCHEMA%%.staffreportperioddays ADD CONSTRAINT staffworkplan_pkey PRIMARY KEY (id); -ALTER TABLE ONLY %%NEWSCHEMA%%.zzold_staffreportperiodsums - ADD CONSTRAINT uniq_staffperiod_cal UNIQUE (id_reportperiod, id_staff); - ALTER TABLE ONLY %%NEWSCHEMA%%.staffreportperiod ADD CONSTRAINT uniq_staffreportperiod_cal UNIQUE (id_reportperiod, id_staff); @@ -1967,123 +1094,39 @@ ALTER TABLE ONLY %%NEWSCHEMA%%.staffreportperioddays ALTER TABLE ONLY %%NEWSCHEMA%%.vacancydays ADD CONSTRAINT vacancydays_pkey PRIMARY KEY (id); +ALTER TABLE ONLY %%NEWSCHEMA%%.workplandays + ADD CONSTRAINT workplandays_pkey PRIMARY KEY (id); + +ALTER TABLE ONLY %%NEWSCHEMA%%.workplandays + ADD CONSTRAINT workplandays_un UNIQUE (id_workplan, weekday); + ALTER TABLE ONLY %%NEWSCHEMA%%.workplans ADD CONSTRAINT workplans_pkey PRIMARY KEY (id); +ALTER TABLE ONLY %%NEWSCHEMA%%.worktimes + ADD CONSTRAINT worktimes_pkey PRIMARY KEY (id); + ALTER TABLE ONLY %%NEWSCHEMA%%.vacancytypes ADD CONSTRAINT worktypes_pkey PRIMARY KEY (id); -CREATE OR REPLACE VIEW %%NEWSCHEMA%%.zzold_vw_staffworkplanlist AS - SELECT stw2.calweek, - stw2.calyear, - stw2.caldate AS weekstart, - date((stw2.caldate + '6 days'::interval)) AS weekend, - public.getdateslist(stw2.caldate, 7) AS dates, - stw2.id_staff, - stw2.staffname AS dspstaffname, - stw2.id_staffgroup, - (((((((((((((((((((''::text || ''::text) || ''::text) || ''::text) || ''::text) || ''::text) || '
'::text) || 'Semaine '::text) || stw2.calweek) || '
Contrat:'::text) || to_char(sws.contracthours, 'HH24:MI'::text)) || '
Plan:'::text) || to_char(sws.workhours, 'HH24:MI'::text)) || '
Congé:'::text) || to_char(sws.vacancyhours, 'HH24:MI'::text)) || '
Récup:'::text) || to_char(sws.recuperationhours, 'HH24:MI'::text)) || '
A récup:'::text) || to_char(sws.diffhours, 'HH24:MI'::text)) || '
'::text) AS dspweektotals, - sws.contracthours, - sws.workhours AS plannedhours, - sws.vacancyhours, - sws.recuperationhours, - sws.diffhours AS hoursdiff, - max( - CASE - WHEN (stw2.isodow = 1) THEN stw2.id - ELSE NULL::bigint - END) AS mon_id, - max( - CASE - WHEN (stw2.isodow = 1) THEN ((((((((''::text || ''::text) || (COALESCE((((''::text), ''::text) || COALESCE(((((''::text), ''::text))) || COALESCE(((''::text), ''::text)) || COALESCE(((''::text), ''::text)) || COALESCE(((((((((''::text), ''::text)) || '
'::text) || to_char((stw2.caldate)::timestamp with time zone, 'DD.MM.YYYY'::text)) || '
'::text || (to_char((stw2.timestart1)::interval, 'HH24:MI'::text) || ' - '::text)) || to_char((stw2.timeend1)::interval, 'HH24:MI'::text)) || '
'::text || to_char((stw2.timestart2)::interval, 'HH24:MI'::text)) || ' - '::text) || to_char((stw2.timeend2)::interval, 'HH24:MI'::text)) || '
Pause:'::text || to_char((stw2.timepause)::interval, 'HH24:MI'::text)) || '
Plan:'::text || to_char((stw2.totaltime)::interval, 'HH24:MI'::text)) || '
'::text) || stw2.vacancyname) || ':'::text) || to_char((stw2.vacancyhours)::interval, 'HH24:MI'::text)) || '
'::text) - ELSE NULL::text - END) AS dspmontimes, - max( - CASE - WHEN (stw2.isodow = 2) THEN stw2.id - ELSE NULL::bigint - END) AS tue_id, - max( - CASE - WHEN (stw2.isodow = 2) THEN ((((((((''::text || ''::text) || (COALESCE((((''::text), ''::text) || COALESCE(((((''::text), ''::text))) || COALESCE(((''::text), ''::text)) || COALESCE(((''::text), ''::text)) || COALESCE(((((((((''::text), ''::text)) || '
'::text) || to_char((date((stw2.caldate + '1 day'::interval)))::timestamp with time zone, 'DD.MM.YYYY'::text)) || '
'::text || (to_char((stw2.timestart1)::interval, 'HH24:MI'::text) || ' - '::text)) || to_char((stw2.timeend1)::interval, 'HH24:MI'::text)) || '
'::text || to_char((stw2.timestart2)::interval, 'HH24:MI'::text)) || ' - '::text) || to_char((stw2.timeend2)::interval, 'HH24:MI'::text)) || '
Pause:'::text || to_char((stw2.timepause)::interval, 'HH24:MI'::text)) || '
Plan:'::text || to_char((stw2.totaltime)::interval, 'HH24:MI'::text)) || '
'::text) || stw2.vacancyname) || ':'::text) || to_char((stw2.vacancyhours)::interval, 'HH24:MI'::text)) || '
'::text) - ELSE NULL::text - END) AS dsptuetimes, - max( - CASE - WHEN (stw2.isodow = 3) THEN stw2.id - ELSE NULL::bigint - END) AS wed_id, - max( - CASE - WHEN (stw2.isodow = 3) THEN ((((((((''::text || ''::text) || (COALESCE((((''::text), ''::text) || COALESCE(((((''::text), ''::text))) || COALESCE(((''::text), ''::text)) || COALESCE(((''::text), ''::text)) || COALESCE(((((((((''::text), ''::text)) || '
'::text) || to_char((date((stw2.caldate + '2 days'::interval)))::timestamp with time zone, 'DD.MM.YYYY'::text)) || '
'::text || (to_char((stw2.timestart1)::interval, 'HH24:MI'::text) || ' - '::text)) || to_char((stw2.timeend1)::interval, 'HH24:MI'::text)) || '
'::text || to_char((stw2.timestart2)::interval, 'HH24:MI'::text)) || ' - '::text) || to_char((stw2.timeend2)::interval, 'HH24:MI'::text)) || '
Pause:'::text || to_char((stw2.timepause)::interval, 'HH24:MI'::text)) || '
Plan:'::text || to_char((stw2.totaltime)::interval, 'HH24:MI'::text)) || '
'::text) || stw2.vacancyname) || ':'::text) || to_char((stw2.vacancyhours)::interval, 'HH24:MI'::text)) || '
'::text) - ELSE NULL::text - END) AS dspwedtimes, - max( - CASE - WHEN (stw2.isodow = 4) THEN stw2.id - ELSE NULL::bigint - END) AS thu_id, - max( - CASE - WHEN (stw2.isodow = 4) THEN ((((((((''::text || ''::text) || (COALESCE((((''::text), ''::text) || COALESCE(((((''::text), ''::text))) || COALESCE(((''::text), ''::text)) || COALESCE(((''::text), ''::text)) || COALESCE(((((((((''::text), ''::text)) || '
'::text) || to_char((date((stw2.caldate + '3 days'::interval)))::timestamp with time zone, 'DD.MM.YYYY'::text)) || '
'::text || (to_char((stw2.timestart1)::interval, 'HH24:MI'::text) || ' - '::text)) || to_char((stw2.timeend1)::interval, 'HH24:MI'::text)) || '
'::text || to_char((stw2.timestart2)::interval, 'HH24:MI'::text)) || ' - '::text) || to_char((stw2.timeend2)::interval, 'HH24:MI'::text)) || '
Pause:'::text || to_char((stw2.timepause)::interval, 'HH24:MI'::text)) || '
Plan:'::text || to_char((stw2.totaltime)::interval, 'HH24:MI'::text)) || '
'::text) || stw2.vacancyname) || ':'::text) || to_char((stw2.vacancyhours)::interval, 'HH24:MI'::text)) || '
'::text) - ELSE NULL::text - END) AS dspthutimes, - max( - CASE - WHEN (stw2.isodow = 5) THEN stw2.id - ELSE NULL::bigint - END) AS fri_id, - max( - CASE - WHEN (stw2.isodow = 5) THEN ((((((((''::text || ''::text) || (COALESCE((((''::text), ''::text) || COALESCE(((((''::text), ''::text))) || COALESCE(((''::text), ''::text)) || COALESCE(((''::text), ''::text)) || COALESCE(((((((((''::text), ''::text)) || '
'::text) || to_char((date((stw2.caldate + '4 days'::interval)))::timestamp with time zone, 'DD.MM.YYYY'::text)) || '
'::text || (to_char((stw2.timestart1)::interval, 'HH24:MI'::text) || ' - '::text)) || to_char((stw2.timeend1)::interval, 'HH24:MI'::text)) || '
'::text || to_char((stw2.timestart2)::interval, 'HH24:MI'::text)) || ' - '::text) || to_char((stw2.timeend2)::interval, 'HH24:MI'::text)) || '
Pause:'::text || to_char((stw2.timepause)::interval, 'HH24:MI'::text)) || '
Plan:'::text || to_char((stw2.totaltime)::interval, 'HH24:MI'::text)) || '
'::text) || stw2.vacancyname) || ':'::text) || to_char((stw2.vacancyhours)::interval, 'HH24:MI'::text)) || '
'::text) - ELSE NULL::text - END) AS dspfritimes, - max( - CASE - WHEN (stw2.isodow = 6) THEN stw2.id - ELSE NULL::bigint - END) AS sat_id, - max( - CASE - WHEN (stw2.isodow = 6) THEN (((((((((''::text || ''::text) || COALESCE(((((''::text), ''::text)) || COALESCE(((((''::text), ''::text)) || COALESCE(((''::text), ''::text)) || COALESCE(((''::text), ''::text)) || COALESCE(((((((((''::text), ''::text)) || '
'::text) || to_char((date((stw2.caldate + '5 days'::interval)))::timestamp with time zone, 'DD.MM.YYYY'::text)) || '
'::text || to_char((stw2.timestart1)::interval, 'HH24:MI'::text)) || ' - '::text) || to_char((stw2.timeend1)::interval, 'HH24:MI'::text)) || '
'::text || to_char((stw2.timestart2)::interval, 'HH24:MI'::text)) || ' - '::text) || to_char((stw2.timeend2)::interval, 'HH24:MI'::text)) || '
Pause:'::text || to_char((stw2.timepause)::interval, 'HH24:MI'::text)) || '
Plan:'::text || to_char((stw2.totaltime)::interval, 'HH24:MI'::text)) || '
'::text) || stw2.vacancyname) || ':'::text) || to_char((stw2.vacancyhours)::interval, 'HH24:MI'::text)) || '
'::text) - ELSE NULL::text - END) AS dspsattimes, - max( - CASE - WHEN (stw2.isodow = 7) THEN stw2.id - ELSE NULL::bigint - END) AS sun_id, - max( - CASE - WHEN (stw2.isodow = 7) THEN (((((((((''::text || ''::text) || COALESCE((((''::text), ''::text)) || COALESCE(((((''::text), ''::text)) || COALESCE(((''::text), ''::text)) || COALESCE(((''::text), ''::text)) || COALESCE(((((((((''::text), ''::text)) || '
'::text) || to_char((date((stw2.caldate + '6 days'::interval)))::timestamp with time zone, 'DD.MM.YYYY'::text)) || '
'::text || (to_char((stw2.timestart1)::interval, 'HH24:MI'::text) || ' - '::text)) || to_char((stw2.timeend1)::interval, 'HH24:MI'::text)) || '
'::text || to_char((stw2.timestart2)::interval, 'HH24:MI'::text)) || ' - '::text) || to_char((stw2.timeend2)::interval, 'HH24:MI'::text)) || '
Pause:'::text || to_char((stw2.timepause)::interval, 'HH24:MI'::text)) || '
Plan:'::text || to_char((stw2.totaltime)::interval, 'HH24:MI'::text)) || '
'::text) || stw2.vacancyname) || ':'::text) || to_char((stw2.vacancyhours)::interval, 'HH24:MI'::text)) || '
'::text) - ELSE NULL::text - END) AS dspsuntimes - FROM (( SELECT date_part('isoyear'::text, stw.daydate) AS calyear, - date_part('week'::text, stw.daydate) AS calweek, - (date_trunc('week'::text, (stw.daydate)::timestamp with time zone))::date AS caldate, - (date_part('isodow'::text, stw.daydate))::integer AS isodow, - ((st.surname || ' '::text) || st.prename) AS staffname, - stw.daydate, - stw.id, - stw.id_staff, - stw.timestart1, - stw.timeend1, - stw.timestart2, - stw.timeend2, - stw.timepause, - stw.dayhours AS totaltime, - stw.vacancyhours, - stw.id_vacancytype, - stw.id_staffgroup, - stw.daytype, - vt.color, - vt.vacancyname - FROM ((%%NEWSCHEMA%%.staffreportperioddays stw - LEFT JOIN %%NEWSCHEMA%%.staff st ON ((stw.id_staff = st.id))) - LEFT JOIN %%NEWSCHEMA%%.vacancytypes vt ON ((stw.id_vacancytype = vt.id)))) stw2 - LEFT JOIN %%NEWSCHEMA%%.staffreportperiodweeks sws ON (((sws.id_staff = stw2.id_staff) AND (sws.calweek = stw2.calweek) AND ((sws.calyear)::double precision = stw2.calyear)))) - GROUP BY stw2.calweek, stw2.calyear, stw2.caldate, stw2.id_staff, stw2.staffname, sws.id, stw2.id_staffgroup - ORDER BY stw2.staffname, stw2.id_staff, stw2.calweek; +CREATE OR REPLACE VIEW %%NEWSCHEMA%%.vw_workplandayslist AS + SELECT (((wp.workplan || ' - Salarié(s): '::text) || count(DISTINCT sc.id_staff)) || ''::text) AS workplan, + to_char(wp.weekhours, 'HH24:MI'::text) AS weekhours, + wpd.id, + wpd.id_workplan, + wpd.weekday, + to_char((wpd.start1)::interval, 'HH24:MI'::text) AS start1, + to_char((wpd.end1)::interval, 'HH24:MI'::text) AS end1, + to_char((wpd.start2)::interval, 'HH24:MI'::text) AS start2, + to_char((wpd.end2)::interval, 'HH24:MI'::text) AS end2, + to_char((wpd.pause)::interval, 'HH24:MI'::text) AS pause, + to_char((((wpd.end1 - wpd.start1) + COALESCE((wpd.end2 - wpd.start2), '00:00:00'::interval)) - COALESCE((wpd.pause)::interval, '00:00:00'::interval)), 'HH24:MI'::text) AS dayhours, + count(DISTINCT sc.id_staff) AS staffcount + FROM ((%%NEWSCHEMA%%.workplandays wpd + LEFT JOIN %%NEWSCHEMA%%.workplans wp ON ((wpd.id_workplan = wp.id))) + LEFT JOIN %%NEWSCHEMA%%.staffcontract sc ON ((sc.id_workplan = wp.id))) + GROUP BY wpd.id, wp.id + ORDER BY wp.workplan, wpd.weekday; ALTER TABLE ONLY %%NEWSCHEMA%%.staffcontract ADD CONSTRAINT staffcontract_fk FOREIGN KEY (id_staff) REFERENCES %%NEWSCHEMA%%.staff(id); @@ -2109,3 +1152,6 @@ ALTER TABLE ONLY %%NEWSCHEMA%%.staffreportperioddays ALTER TABLE ONLY %%NEWSCHEMA%%.staffreportperioddays ADD CONSTRAINT staffworkplan_fk_1 FOREIGN KEY (id_staffgroup) REFERENCES %%NEWSCHEMA%%.staffgroups(id); +ALTER TABLE ONLY %%NEWSCHEMA%%.workplandays + ADD CONSTRAINT workplandays_fk FOREIGN KEY (id_workplan) REFERENCES %%NEWSCHEMA%%.workplans(id); + diff --git a/dev/db/potlu_db.pg.data.sql b/dev/db/potlu_db.pg.data.sql index 0fb25a7a..cbd425bf 100644 --- a/dev/db/potlu_db.pg.data.sql +++ b/dev/db/potlu_db.pg.data.sql @@ -64,18 +64,14 @@ INSERT INTO demo.timetrackuser (id, id_staff, stamp_in, stamp_out) VALUES (2, 1, INSERT INTO demo.timetrackuser (id, id_staff, stamp_in, stamp_out) VALUES (5, 1, '2019-10-04 17:05:00', '2019-10-05 01:04:00'); --- --- Data for Name: editlog; Type: TABLE DATA; Schema: portanova; Owner: - --- - - - -- -- Data for Name: reportperiod; Type: TABLE DATA; Schema: portanova; Owner: - -- INSERT INTO portanova.reportperiod (id, periodname, startdate, enddate, id_parentreportperiod) VALUES (27, NULL, '2019-12-30', '2020-02-23', NULL); INSERT INTO portanova.reportperiod (id, periodname, startdate, enddate, id_parentreportperiod) VALUES (29, NULL, '2020-02-24', '2020-04-19', 27); +INSERT INTO portanova.reportperiod (id, periodname, startdate, enddate, id_parentreportperiod) VALUES (30, NULL, '2020-04-20', '2020-06-14', 29); +INSERT INTO portanova.reportperiod (id, periodname, startdate, enddate, id_parentreportperiod) VALUES (31, NULL, '2020-06-15', '2020-08-09', 30); -- @@ -147,5097 +143,10091 @@ INSERT INTO portanova.staffgroups (id, groupname, groupcolor, editoruser_ids, is -- Data for Name: staffcontract; Type: TABLE DATA; Schema: portanova; Owner: - -- -INSERT INTO portanova.staffcontract (id, id_staff, startdate, id_staffgroup, weekdays, enddate, id_workplan, weekhours) VALUES (69, 130, '2005-01-08', 1, 6, NULL, 6, '40:00:00'); -INSERT INTO portanova.staffcontract (id, id_staff, startdate, id_staffgroup, weekdays, enddate, id_workplan, weekhours) VALUES (90, 132, '2020-01-01', 1, 6, '2020-01-15', 6, '40:00:00'); -INSERT INTO portanova.staffcontract (id, id_staff, startdate, id_staffgroup, weekdays, enddate, id_workplan, weekhours) VALUES (71, 133, '2013-01-07', 1, 6, NULL, 6, '40:00:00'); -INSERT INTO portanova.staffcontract (id, id_staff, startdate, id_staffgroup, weekdays, enddate, id_workplan, weekhours) VALUES (85, 121, '2020-01-01', 2, 6, '2020-07-31', 6, '40:00:00'); -INSERT INTO portanova.staffcontract (id, id_staff, startdate, id_staffgroup, weekdays, enddate, id_workplan, weekhours) VALUES (70, 131, '1995-07-01', 1, 6, NULL, 6, '20:00:00'); -INSERT INTO portanova.staffcontract (id, id_staff, startdate, id_staffgroup, weekdays, enddate, id_workplan, weekhours) VALUES (77, 108, '2020-01-06', 2, 6, NULL, 6, '40:00:00'); -INSERT INTO portanova.staffcontract (id, id_staff, startdate, id_staffgroup, weekdays, enddate, id_workplan, weekhours) VALUES (108, 129, '2019-07-15', 1, 6, NULL, 6, '40:00:00'); -INSERT INTO portanova.staffcontract (id, id_staff, startdate, id_staffgroup, weekdays, enddate, id_workplan, weekhours) VALUES (82, 117, '2020-05-01', 2, 6, NULL, 1, '40:00:00'); -INSERT INTO portanova.staffcontract (id, id_staff, startdate, id_staffgroup, weekdays, enddate, id_workplan, weekhours) VALUES (72, 135, '2006-10-23', 1, 6, NULL, 6, '40:00:00'); -INSERT INTO portanova.staffcontract (id, id_staff, startdate, id_staffgroup, weekdays, enddate, id_workplan, weekhours) VALUES (73, 136, '1992-03-15', 1, 6, NULL, 6, '40:00:00'); -INSERT INTO portanova.staffcontract (id, id_staff, startdate, id_staffgroup, weekdays, enddate, id_workplan, weekhours) VALUES (79, 111, '2020-01-01', 2, 6, NULL, 6, '40:00:00'); -INSERT INTO portanova.staffcontract (id, id_staff, startdate, id_staffgroup, weekdays, enddate, id_workplan, weekhours) VALUES (87, 126, '2020-01-01', 1, 6, '2019-05-31', 6, '40:00:00'); -INSERT INTO portanova.staffcontract (id, id_staff, startdate, id_staffgroup, weekdays, enddate, id_workplan, weekhours) VALUES (88, 127, '2020-01-01', 1, 6, NULL, 6, '40:00:00'); -INSERT INTO portanova.staffcontract (id, id_staff, startdate, id_staffgroup, weekdays, enddate, id_workplan, weekhours) VALUES (89, 128, '2020-01-01', 1, 6, NULL, 6, '40:00:00'); -INSERT INTO portanova.staffcontract (id, id_staff, startdate, id_staffgroup, weekdays, enddate, id_workplan, weekhours) VALUES (56, 103, '2014-03-01', 4, 6, NULL, 1, '40:00:00'); -INSERT INTO portanova.staffcontract (id, id_staff, startdate, id_staffgroup, weekdays, enddate, id_workplan, weekhours) VALUES (57, 104, '2015-11-15', 4, 6, NULL, 1, '30:00:00'); -INSERT INTO portanova.staffcontract (id, id_staff, startdate, id_staffgroup, weekdays, enddate, id_workplan, weekhours) VALUES (60, 109, '2005-04-19', 2, 6, NULL, 1, '40:00:00'); -INSERT INTO portanova.staffcontract (id, id_staff, startdate, id_staffgroup, weekdays, enddate, id_workplan, weekhours) VALUES (61, 113, '2016-05-19', 2, 6, NULL, 1, '40:00:00'); -INSERT INTO portanova.staffcontract (id, id_staff, startdate, id_staffgroup, weekdays, enddate, id_workplan, weekhours) VALUES (91, 134, '2020-01-01', 1, 6, NULL, 6, '40:00:00'); -INSERT INTO portanova.staffcontract (id, id_staff, startdate, id_staffgroup, weekdays, enddate, id_workplan, weekhours) VALUES (62, 114, '2007-08-14', 2, 6, NULL, 1, '40:00:00'); -INSERT INTO portanova.staffcontract (id, id_staff, startdate, id_staffgroup, weekdays, enddate, id_workplan, weekhours) VALUES (63, 115, '2013-05-01', 2, 6, NULL, 1, '40:00:00'); -INSERT INTO portanova.staffcontract (id, id_staff, startdate, id_staffgroup, weekdays, enddate, id_workplan, weekhours) VALUES (64, 118, '2018-02-12', 2, 6, NULL, 1, '40:00:00'); -INSERT INTO portanova.staffcontract (id, id_staff, startdate, id_staffgroup, weekdays, enddate, id_workplan, weekhours) VALUES (75, 102, '2020-01-01', 4, 6, NULL, 1, '40:00:00'); -INSERT INTO portanova.staffcontract (id, id_staff, startdate, id_staffgroup, weekdays, enddate, id_workplan, weekhours) VALUES (78, 110, '2020-01-01', 2, 6, NULL, 1, '40:00:00'); -INSERT INTO portanova.staffcontract (id, id_staff, startdate, id_staffgroup, weekdays, enddate, id_workplan, weekhours) VALUES (80, 112, '2020-01-01', 2, 6, '2020-05-31', 1, '40:00:00'); -INSERT INTO portanova.staffcontract (id, id_staff, startdate, id_staffgroup, weekdays, enddate, id_workplan, weekhours) VALUES (81, 116, '2020-01-01', 2, 6, '2019-02-28', 1, '40:00:00'); -INSERT INTO portanova.staffcontract (id, id_staff, startdate, id_staffgroup, weekdays, enddate, id_workplan, weekhours) VALUES (83, 119, '2020-01-01', 2, 6, NULL, 1, '40:00:00'); -INSERT INTO portanova.staffcontract (id, id_staff, startdate, id_staffgroup, weekdays, enddate, id_workplan, weekhours) VALUES (84, 120, '2020-01-01', 2, 6, '2019-03-31', 1, '40:00:00'); -INSERT INTO portanova.staffcontract (id, id_staff, startdate, id_staffgroup, weekdays, enddate, id_workplan, weekhours) VALUES (93, 138, '2020-01-01', 1, 6, '2020-06-30', 6, '40:00:00'); -INSERT INTO portanova.staffcontract (id, id_staff, startdate, id_staffgroup, weekdays, enddate, id_workplan, weekhours) VALUES (66, 124, '2016-04-01', 2, 6, '2019-05-31', 1, '12:30:00'); -INSERT INTO portanova.staffcontract (id, id_staff, startdate, id_staffgroup, weekdays, enddate, id_workplan, weekhours) VALUES (99, 145, '2020-01-01', 2, 6, NULL, 6, '40:00:00'); -INSERT INTO portanova.staffcontract (id, id_staff, startdate, id_staffgroup, weekdays, enddate, id_workplan, weekhours) VALUES (58, 105, '2011-10-01', 2, 6, NULL, 6, '40:00:00'); -INSERT INTO portanova.staffcontract (id, id_staff, startdate, id_staffgroup, weekdays, enddate, id_workplan, weekhours) VALUES (59, 106, '2015-07-01', 2, 6, NULL, 1, '12:30:00'); -INSERT INTO portanova.staffcontract (id, id_staff, startdate, id_staffgroup, weekdays, enddate, id_workplan, weekhours) VALUES (65, 122, '2015-10-15', 2, 6, NULL, 1, '40:00:00'); -INSERT INTO portanova.staffcontract (id, id_staff, startdate, id_staffgroup, weekdays, enddate, id_workplan, weekhours) VALUES (76, 107, '2020-01-01', 2, 6, '2019-07-31', 1, '40:00:00'); -INSERT INTO portanova.staffcontract (id, id_staff, startdate, id_staffgroup, weekdays, enddate, id_workplan, weekhours) VALUES (86, 123, '2020-01-01', 2, 6, '2017-03-31', 1, '40:00:00'); -INSERT INTO portanova.staffcontract (id, id_staff, startdate, id_staffgroup, weekdays, enddate, id_workplan, weekhours) VALUES (100, 146, '2020-01-01', 2, 6, NULL, 1, '40:00:00'); -INSERT INTO portanova.staffcontract (id, id_staff, startdate, id_staffgroup, weekdays, enddate, id_workplan, weekhours) VALUES (101, 147, '2020-01-01', 2, 6, '2020-08-31', 1, '40:00:00'); -INSERT INTO portanova.staffcontract (id, id_staff, startdate, id_staffgroup, weekdays, enddate, id_workplan, weekhours) VALUES (102, 148, '2020-01-01', 2, 6, NULL, 1, '40:00:00'); -INSERT INTO portanova.staffcontract (id, id_staff, startdate, id_staffgroup, weekdays, enddate, id_workplan, weekhours) VALUES (103, 149, '2020-01-01', 2, 6, NULL, 1, '40:00:00'); -INSERT INTO portanova.staffcontract (id, id_staff, startdate, id_staffgroup, weekdays, enddate, id_workplan, weekhours) VALUES (104, 150, '2020-01-01', 2, 6, '2019-07-31', 1, '40:00:00'); -INSERT INTO portanova.staffcontract (id, id_staff, startdate, id_staffgroup, weekdays, enddate, id_workplan, weekhours) VALUES (67, 125, '2003-10-01', 4, 6, NULL, 1, '20:00:00'); -INSERT INTO portanova.staffcontract (id, id_staff, startdate, id_staffgroup, weekdays, enddate, id_workplan, weekhours) VALUES (107, 151, '2020-02-01', 4, 6, NULL, 6, '40:00:00'); -INSERT INTO portanova.staffcontract (id, id_staff, startdate, id_staffgroup, weekdays, enddate, id_workplan, weekhours) VALUES (105, 129, '2018-11-15', 1, 6, '2019-06-15', 6, '40:00:00'); -INSERT INTO portanova.staffcontract (id, id_staff, startdate, id_staffgroup, weekdays, enddate, id_workplan, weekhours) VALUES (94, 139, '2020-01-01', 1, 6, '2020-09-30', 6, '40:00:00'); -INSERT INTO portanova.staffcontract (id, id_staff, startdate, id_staffgroup, weekdays, enddate, id_workplan, weekhours) VALUES (95, 140, '2020-01-01', 1, 6, '2020-01-31', 6, '40:00:00'); -INSERT INTO portanova.staffcontract (id, id_staff, startdate, id_staffgroup, weekdays, enddate, id_workplan, weekhours) VALUES (74, 142, '2014-04-15', 1, 6, NULL, 6, '40:00:00'); -INSERT INTO portanova.staffcontract (id, id_staff, startdate, id_staffgroup, weekdays, enddate, id_workplan, weekhours) VALUES (97, 143, '2020-01-01', 1, 6, NULL, 6, '40:00:00'); -INSERT INTO portanova.staffcontract (id, id_staff, startdate, id_staffgroup, weekdays, enddate, id_workplan, weekhours) VALUES (98, 144, '2020-01-01', 1, 6, '2020-03-31', 6, '40:00:00'); -INSERT INTO portanova.staffcontract (id, id_staff, startdate, id_staffgroup, weekdays, enddate, id_workplan, weekhours) VALUES (96, 141, '2020-01-01', 1, 6, '2022-08-31', 6, '40:00:00'); -INSERT INTO portanova.staffcontract (id, id_staff, startdate, id_staffgroup, weekdays, enddate, id_workplan, weekhours) VALUES (92, 137, '2020-01-01', 1, 6, '2019-07-31', 6, '40:00:00'); +INSERT INTO portanova.staffcontract (id, id_staff, startdate, id_staffgroup, weekdays, enddate, id_workplan, weekhours, defaultfreedays) VALUES (69, 130, '2005-01-08', 1, 6, NULL, 6, '40:00:00', '["7"]'); +INSERT INTO portanova.staffcontract (id, id_staff, startdate, id_staffgroup, weekdays, enddate, id_workplan, weekhours, defaultfreedays) VALUES (90, 132, '2020-01-01', 1, 6, '2020-01-15', 6, '40:00:00', '["7"]'); +INSERT INTO portanova.staffcontract (id, id_staff, startdate, id_staffgroup, weekdays, enddate, id_workplan, weekhours, defaultfreedays) VALUES (71, 133, '2013-01-07', 1, 6, NULL, 6, '40:00:00', '["7"]'); +INSERT INTO portanova.staffcontract (id, id_staff, startdate, id_staffgroup, weekdays, enddate, id_workplan, weekhours, defaultfreedays) VALUES (85, 121, '2020-01-01', 2, 6, '2020-07-31', 6, '40:00:00', '["7"]'); +INSERT INTO portanova.staffcontract (id, id_staff, startdate, id_staffgroup, weekdays, enddate, id_workplan, weekhours, defaultfreedays) VALUES (77, 108, '2020-01-06', 2, 6, NULL, 6, '40:00:00', '["7"]'); +INSERT INTO portanova.staffcontract (id, id_staff, startdate, id_staffgroup, weekdays, enddate, id_workplan, weekhours, defaultfreedays) VALUES (108, 129, '2019-07-15', 1, 6, NULL, 6, '40:00:00', '["7"]'); +INSERT INTO portanova.staffcontract (id, id_staff, startdate, id_staffgroup, weekdays, enddate, id_workplan, weekhours, defaultfreedays) VALUES (82, 117, '2020-05-01', 2, 6, NULL, 1, '40:00:00', '["7"]'); +INSERT INTO portanova.staffcontract (id, id_staff, startdate, id_staffgroup, weekdays, enddate, id_workplan, weekhours, defaultfreedays) VALUES (60, 109, '2005-04-19', 2, 6, NULL, 1, '40:00:00', '["7"]'); +INSERT INTO portanova.staffcontract (id, id_staff, startdate, id_staffgroup, weekdays, enddate, id_workplan, weekhours, defaultfreedays) VALUES (72, 135, '2006-10-23', 1, 6, NULL, 6, '40:00:00', '["7"]'); +INSERT INTO portanova.staffcontract (id, id_staff, startdate, id_staffgroup, weekdays, enddate, id_workplan, weekhours, defaultfreedays) VALUES (73, 136, '1992-03-15', 1, 6, NULL, 6, '40:00:00', '["7"]'); +INSERT INTO portanova.staffcontract (id, id_staff, startdate, id_staffgroup, weekdays, enddate, id_workplan, weekhours, defaultfreedays) VALUES (87, 126, '2020-01-01', 1, 6, '2019-05-31', 6, '40:00:00', '["7"]'); +INSERT INTO portanova.staffcontract (id, id_staff, startdate, id_staffgroup, weekdays, enddate, id_workplan, weekhours, defaultfreedays) VALUES (88, 127, '2020-01-01', 1, 6, NULL, 6, '40:00:00', '["7"]'); +INSERT INTO portanova.staffcontract (id, id_staff, startdate, id_staffgroup, weekdays, enddate, id_workplan, weekhours, defaultfreedays) VALUES (89, 128, '2020-01-01', 1, 6, NULL, 6, '40:00:00', '["7"]'); +INSERT INTO portanova.staffcontract (id, id_staff, startdate, id_staffgroup, weekdays, enddate, id_workplan, weekhours, defaultfreedays) VALUES (56, 103, '2014-03-01', 4, 6, NULL, 1, '40:00:00', '["7"]'); +INSERT INTO portanova.staffcontract (id, id_staff, startdate, id_staffgroup, weekdays, enddate, id_workplan, weekhours, defaultfreedays) VALUES (61, 113, '2016-05-19', 2, 6, NULL, 1, '40:00:00', '["7"]'); +INSERT INTO portanova.staffcontract (id, id_staff, startdate, id_staffgroup, weekdays, enddate, id_workplan, weekhours, defaultfreedays) VALUES (91, 134, '2020-01-01', 1, 6, NULL, 6, '40:00:00', '["7"]'); +INSERT INTO portanova.staffcontract (id, id_staff, startdate, id_staffgroup, weekdays, enddate, id_workplan, weekhours, defaultfreedays) VALUES (62, 114, '2007-08-14', 2, 6, NULL, 1, '40:00:00', '["7"]'); +INSERT INTO portanova.staffcontract (id, id_staff, startdate, id_staffgroup, weekdays, enddate, id_workplan, weekhours, defaultfreedays) VALUES (63, 115, '2013-05-01', 2, 6, NULL, 1, '40:00:00', '["7"]'); +INSERT INTO portanova.staffcontract (id, id_staff, startdate, id_staffgroup, weekdays, enddate, id_workplan, weekhours, defaultfreedays) VALUES (64, 118, '2018-02-12', 2, 6, NULL, 1, '40:00:00', '["7"]'); +INSERT INTO portanova.staffcontract (id, id_staff, startdate, id_staffgroup, weekdays, enddate, id_workplan, weekhours, defaultfreedays) VALUES (75, 102, '2020-01-01', 4, 6, NULL, 1, '40:00:00', '["7"]'); +INSERT INTO portanova.staffcontract (id, id_staff, startdate, id_staffgroup, weekdays, enddate, id_workplan, weekhours, defaultfreedays) VALUES (78, 110, '2020-01-01', 2, 6, NULL, 1, '40:00:00', '["7"]'); +INSERT INTO portanova.staffcontract (id, id_staff, startdate, id_staffgroup, weekdays, enddate, id_workplan, weekhours, defaultfreedays) VALUES (80, 112, '2020-01-01', 2, 6, '2020-05-31', 1, '40:00:00', '["7"]'); +INSERT INTO portanova.staffcontract (id, id_staff, startdate, id_staffgroup, weekdays, enddate, id_workplan, weekhours, defaultfreedays) VALUES (83, 119, '2020-01-01', 2, 6, NULL, 1, '40:00:00', '["7"]'); +INSERT INTO portanova.staffcontract (id, id_staff, startdate, id_staffgroup, weekdays, enddate, id_workplan, weekhours, defaultfreedays) VALUES (84, 120, '2020-01-01', 2, 6, '2019-03-31', 1, '40:00:00', '["7"]'); +INSERT INTO portanova.staffcontract (id, id_staff, startdate, id_staffgroup, weekdays, enddate, id_workplan, weekhours, defaultfreedays) VALUES (70, 131, '1995-07-01', 1, 5, NULL, 6, '20:00:00', '["6","7"]'); +INSERT INTO portanova.staffcontract (id, id_staff, startdate, id_staffgroup, weekdays, enddate, id_workplan, weekhours, defaultfreedays) VALUES (57, 104, '2015-11-15', 4, 5, NULL, 1, '30:00:00', '["6","7"]'); +INSERT INTO portanova.staffcontract (id, id_staff, startdate, id_staffgroup, weekdays, enddate, id_workplan, weekhours, defaultfreedays) VALUES (81, 116, '2020-01-01', 2, 6, '2020-02-28', 1, '40:00:00', '["7"]'); +INSERT INTO portanova.staffcontract (id, id_staff, startdate, id_staffgroup, weekdays, enddate, id_workplan, weekhours, defaultfreedays) VALUES (173, 111, '2020-04-01', 2, 6, NULL, 6, '40:00:00', '["7"]'); +INSERT INTO portanova.staffcontract (id, id_staff, startdate, id_staffgroup, weekdays, enddate, id_workplan, weekhours, defaultfreedays) VALUES (79, 111, '2020-01-01', 2, 6, '2020-03-31', 6, '40:00:00', '["7"]'); +INSERT INTO portanova.staffcontract (id, id_staff, startdate, id_staffgroup, weekdays, enddate, id_workplan, weekhours, defaultfreedays) VALUES (93, 138, '2020-01-01', 1, 6, '2020-06-30', 6, '40:00:00', '["7"]'); +INSERT INTO portanova.staffcontract (id, id_staff, startdate, id_staffgroup, weekdays, enddate, id_workplan, weekhours, defaultfreedays) VALUES (99, 145, '2020-01-01', 2, 6, NULL, 6, '40:00:00', '["7"]'); +INSERT INTO portanova.staffcontract (id, id_staff, startdate, id_staffgroup, weekdays, enddate, id_workplan, weekhours, defaultfreedays) VALUES (58, 105, '2011-10-01', 2, 6, NULL, 6, '40:00:00', '["7"]'); +INSERT INTO portanova.staffcontract (id, id_staff, startdate, id_staffgroup, weekdays, enddate, id_workplan, weekhours, defaultfreedays) VALUES (65, 122, '2015-10-15', 2, 6, NULL, 1, '40:00:00', '["7"]'); +INSERT INTO portanova.staffcontract (id, id_staff, startdate, id_staffgroup, weekdays, enddate, id_workplan, weekhours, defaultfreedays) VALUES (76, 107, '2020-01-01', 2, 6, '2019-07-31', 1, '40:00:00', '["7"]'); +INSERT INTO portanova.staffcontract (id, id_staff, startdate, id_staffgroup, weekdays, enddate, id_workplan, weekhours, defaultfreedays) VALUES (86, 123, '2020-01-01', 2, 6, '2017-03-31', 1, '40:00:00', '["7"]'); +INSERT INTO portanova.staffcontract (id, id_staff, startdate, id_staffgroup, weekdays, enddate, id_workplan, weekhours, defaultfreedays) VALUES (100, 146, '2020-01-01', 2, 6, NULL, 1, '40:00:00', '["7"]'); +INSERT INTO portanova.staffcontract (id, id_staff, startdate, id_staffgroup, weekdays, enddate, id_workplan, weekhours, defaultfreedays) VALUES (101, 147, '2020-01-01', 2, 6, '2020-08-31', 1, '40:00:00', '["7"]'); +INSERT INTO portanova.staffcontract (id, id_staff, startdate, id_staffgroup, weekdays, enddate, id_workplan, weekhours, defaultfreedays) VALUES (102, 148, '2020-01-01', 2, 6, NULL, 1, '40:00:00', '["7"]'); +INSERT INTO portanova.staffcontract (id, id_staff, startdate, id_staffgroup, weekdays, enddate, id_workplan, weekhours, defaultfreedays) VALUES (103, 149, '2020-01-01', 2, 6, NULL, 1, '40:00:00', '["7"]'); +INSERT INTO portanova.staffcontract (id, id_staff, startdate, id_staffgroup, weekdays, enddate, id_workplan, weekhours, defaultfreedays) VALUES (104, 150, '2020-01-01', 2, 6, '2019-07-31', 1, '40:00:00', '["7"]'); +INSERT INTO portanova.staffcontract (id, id_staff, startdate, id_staffgroup, weekdays, enddate, id_workplan, weekhours, defaultfreedays) VALUES (107, 151, '2020-02-01', 4, 6, NULL, 6, '40:00:00', '["7"]'); +INSERT INTO portanova.staffcontract (id, id_staff, startdate, id_staffgroup, weekdays, enddate, id_workplan, weekhours, defaultfreedays) VALUES (105, 129, '2018-11-15', 1, 6, '2019-06-15', 6, '40:00:00', '["7"]'); +INSERT INTO portanova.staffcontract (id, id_staff, startdate, id_staffgroup, weekdays, enddate, id_workplan, weekhours, defaultfreedays) VALUES (94, 139, '2020-01-01', 1, 6, '2020-09-30', 6, '40:00:00', '["7"]'); +INSERT INTO portanova.staffcontract (id, id_staff, startdate, id_staffgroup, weekdays, enddate, id_workplan, weekhours, defaultfreedays) VALUES (95, 140, '2020-01-01', 1, 6, '2020-01-31', 6, '40:00:00', '["7"]'); +INSERT INTO portanova.staffcontract (id, id_staff, startdate, id_staffgroup, weekdays, enddate, id_workplan, weekhours, defaultfreedays) VALUES (74, 142, '2014-04-15', 1, 6, NULL, 6, '40:00:00', '["7"]'); +INSERT INTO portanova.staffcontract (id, id_staff, startdate, id_staffgroup, weekdays, enddate, id_workplan, weekhours, defaultfreedays) VALUES (97, 143, '2020-01-01', 1, 6, NULL, 6, '40:00:00', '["7"]'); +INSERT INTO portanova.staffcontract (id, id_staff, startdate, id_staffgroup, weekdays, enddate, id_workplan, weekhours, defaultfreedays) VALUES (98, 144, '2020-01-01', 1, 6, '2020-03-31', 6, '40:00:00', '["7"]'); +INSERT INTO portanova.staffcontract (id, id_staff, startdate, id_staffgroup, weekdays, enddate, id_workplan, weekhours, defaultfreedays) VALUES (96, 141, '2020-01-01', 1, 6, '2022-08-31', 6, '40:00:00', '["7"]'); +INSERT INTO portanova.staffcontract (id, id_staff, startdate, id_staffgroup, weekdays, enddate, id_workplan, weekhours, defaultfreedays) VALUES (92, 137, '2020-01-01', 1, 6, '2019-07-31', 6, '40:00:00', '["7"]'); +INSERT INTO portanova.staffcontract (id, id_staff, startdate, id_staffgroup, weekdays, enddate, id_workplan, weekhours, defaultfreedays) VALUES (66, 124, '2016-04-01', 2, 3, '2019-05-31', 1, '12:30:00', '["5","6","7"]'); +INSERT INTO portanova.staffcontract (id, id_staff, startdate, id_staffgroup, weekdays, enddate, id_workplan, weekhours, defaultfreedays) VALUES (59, 106, '2015-07-01', 2, 3, NULL, 1, '12:30:00', '["5","6","7"]'); +INSERT INTO portanova.staffcontract (id, id_staff, startdate, id_staffgroup, weekdays, enddate, id_workplan, weekhours, defaultfreedays) VALUES (67, 125, '2003-10-01', 4, 6, NULL, 1, '20:00:00', '["7"]'); -- -- Data for Name: staffreportperiod; Type: TABLE DATA; Schema: portanova; Owner: - -- -INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (1081, 29, 149, '320:00:00', '320:00:00', '320:00:00', '00:00:00', '00:00:00', '00:00:00', NULL); -INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (992, 27, 146, '304:00:00', '313:20:00', '304:00:00', '00:00:00', '00:00:00', '-09:20:00', NULL); -INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (1082, 29, 103, '320:00:00', '320:00:00', '320:00:00', '00:00:00', '00:00:00', '00:00:00', NULL); -INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (1083, 29, 121, '320:00:00', '320:00:00', '320:00:00', '00:00:00', '00:00:00', '00:00:00', NULL); -INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (1084, 29, 125, '320:00:00', '160:00:00', '320:00:00', '00:00:00', '00:00:00', '160:00:00', NULL); -INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (1085, 29, 119, '320:00:00', '320:00:00', '320:00:00', '00:00:00', '00:00:00', '00:00:00', NULL); -INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (1086, 29, 113, '320:00:00', '320:00:00', '320:00:00', '00:00:00', '00:00:00', '00:00:00', NULL); -INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (1087, 29, 147, '320:00:00', '320:00:00', '320:00:00', '00:00:00', '00:00:00', '00:00:00', NULL); -INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (1088, 29, 131, '320:00:00', '160:00:00', '320:00:00', '00:00:00', '00:00:00', '160:00:00', NULL); -INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (1089, 29, 104, '320:00:00', '240:00:00', '320:00:00', '00:00:00', '00:00:00', '80:00:00', NULL); -INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (1090, 29, 151, '320:00:00', '320:00:00', '320:00:00', '00:00:00', '00:00:00', '00:00:00', NULL); -INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (1091, 29, 138, '320:00:00', '320:00:00', '320:00:00', '00:00:00', '00:00:00', '00:00:00', NULL); -INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (1092, 29, 105, '320:00:00', '320:00:00', '320:00:00', '00:00:00', '00:00:00', '00:00:00', NULL); -INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (1093, 29, 134, '320:00:00', '320:00:00', '320:00:00', '00:00:00', '00:00:00', '00:00:00', NULL); -INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (993, 27, 132, '88:00:00', '93:20:00', '88:00:00', '00:00:00', '00:00:00', '-05:20:00', NULL); -INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (994, 27, 115, '320:00:00', '320:00:00', '320:00:00', '00:00:00', '00:00:00', '00:00:00', NULL); -INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (995, 27, 114, '320:00:00', '320:00:00', '320:00:00', '00:00:00', '00:00:00', '00:00:00', NULL); -INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (996, 27, 112, '304:00:00', '313:20:00', '304:00:00', '00:00:00', '00:00:00', '-09:20:00', NULL); -INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (997, 27, 108, '280:00:00', '280:00:00', '280:00:00', '00:00:00', '00:00:00', '00:00:00', NULL); -INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (998, 27, 135, '320:00:00', '320:00:00', '320:00:00', '00:00:00', '00:00:00', '00:00:00', NULL); -INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (999, 27, 127, '304:00:00', '313:20:00', '304:00:00', '00:00:00', '00:00:00', '-09:20:00', NULL); -INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (1000, 27, 149, '304:00:00', '313:20:00', '304:00:00', '00:00:00', '00:00:00', '-09:20:00', NULL); -INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (1001, 27, 103, '320:00:00', '320:00:00', '320:00:00', '00:00:00', '00:00:00', '00:00:00', NULL); -INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (1002, 27, 121, '304:00:00', '313:20:00', '304:00:00', '00:00:00', '00:00:00', '-09:20:00', NULL); -INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (1003, 27, 125, '320:00:00', '160:00:00', '320:00:00', '00:00:00', '00:00:00', '160:00:00', NULL); -INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (1004, 27, 119, '304:00:00', '313:20:00', '304:00:00', '00:00:00', '00:00:00', '-09:20:00', NULL); -INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (1005, 27, 113, '320:00:00', '320:00:00', '320:00:00', '00:00:00', '00:00:00', '00:00:00', NULL); -INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (1006, 27, 147, '304:00:00', '313:20:00', '304:00:00', '00:00:00', '00:00:00', '-09:20:00', NULL); -INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (1007, 27, 131, '320:00:00', '160:00:00', '320:00:00', '00:00:00', '00:00:00', '160:00:00', NULL); -INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (1008, 27, 104, '320:00:00', '240:00:00', '320:00:00', '00:00:00', '00:00:00', '80:00:00', NULL); -INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (1009, 27, 151, '120:00:00', '133:20:00', '120:00:00', '00:00:00', '00:00:00', '-13:20:00', NULL); -INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (1010, 27, 138, '304:00:00', '313:20:00', '304:00:00', '00:00:00', '00:00:00', '-09:20:00', NULL); -INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (1011, 27, 105, '320:00:00', '320:00:00', '320:00:00', '00:00:00', '00:00:00', '00:00:00', NULL); -INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (1012, 27, 134, '304:00:00', '313:20:00', '304:00:00', '00:00:00', '00:00:00', '-09:20:00', NULL); -INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (1013, 27, 144, '304:00:00', '313:20:00', '304:00:00', '00:00:00', '00:00:00', '-09:20:00', NULL); -INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (1014, 27, 102, '304:00:00', '313:20:00', '304:00:00', '00:00:00', '00:00:00', '-09:20:00', NULL); -INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (1015, 27, 109, '320:00:00', '320:00:00', '320:00:00', '00:00:00', '00:00:00', '00:00:00', NULL); -INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (1016, 27, 118, '320:00:00', '320:00:00', '320:00:00', '00:00:00', '00:00:00', '00:00:00', NULL); -INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (1017, 27, 133, '320:00:00', '320:00:00', '320:00:00', '00:00:00', '00:00:00', '00:00:00', NULL); -INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (1018, 27, 111, '304:00:00', '313:20:00', '304:00:00', '00:00:00', '00:00:00', '-09:20:00', NULL); -INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (1019, 27, 128, '304:00:00', '313:20:00', '304:00:00', '00:00:00', '00:00:00', '-09:20:00', NULL); -INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (1020, 27, 142, '320:00:00', '320:00:00', '320:00:00', '00:00:00', '00:00:00', '00:00:00', NULL); -INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (1021, 27, 136, '320:00:00', '320:00:00', '320:00:00', '00:00:00', '00:00:00', '00:00:00', NULL); -INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (1022, 27, 140, '184:00:00', '186:40:00', '184:00:00', '00:00:00', '00:00:00', '-02:40:00', NULL); -INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (1023, 27, 139, '304:00:00', '313:20:00', '304:00:00', '00:00:00', '00:00:00', '-09:20:00', NULL); -INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (1024, 27, 141, '304:00:00', '313:20:00', '304:00:00', '00:00:00', '00:00:00', '-09:20:00', NULL); -INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (1025, 27, 122, '320:00:00', '320:00:00', '320:00:00', '00:00:00', '00:00:00', '00:00:00', NULL); -INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (1026, 27, 106, '320:00:00', '100:00:00', '320:00:00', '00:00:00', '00:00:00', '220:00:00', NULL); -INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (1027, 27, 110, '304:00:00', '313:20:00', '304:00:00', '00:00:00', '00:00:00', '-09:20:00', NULL); -INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (1028, 27, 145, '304:00:00', '313:20:00', '304:00:00', '00:00:00', '00:00:00', '-09:20:00', NULL); -INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (1029, 27, 148, '304:00:00', '313:20:00', '304:00:00', '00:00:00', '00:00:00', '-09:20:00', NULL); -INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (1030, 27, 130, '320:00:00', '320:00:00', '320:00:00', '00:00:00', '00:00:00', '00:00:00', NULL); -INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (956, 27, 129, '320:00:00', '320:00:00', '320:00:00', '00:00:00', '00:00:00', '00:00:00', NULL); -INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (1032, 27, 143, '304:00:00', '313:20:00', '304:00:00', '00:00:00', '00:00:00', '-09:20:00', NULL); -INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (1074, 29, 146, '320:00:00', '320:00:00', '320:00:00', '00:00:00', '00:00:00', '00:00:00', NULL); -INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (1075, 29, 115, '320:00:00', '320:00:00', '320:00:00', '00:00:00', '00:00:00', '00:00:00', NULL); -INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (1076, 29, 114, '320:00:00', '320:00:00', '320:00:00', '00:00:00', '00:00:00', '00:00:00', NULL); -INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (1077, 29, 112, '320:00:00', '320:00:00', '320:00:00', '00:00:00', '00:00:00', '00:00:00', NULL); -INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (1078, 29, 108, '320:00:00', '320:00:00', '320:00:00', '00:00:00', '00:00:00', '00:00:00', NULL); -INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (1079, 29, 135, '320:00:00', '320:00:00', '320:00:00', '00:00:00', '00:00:00', '00:00:00', NULL); -INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (1080, 29, 127, '320:00:00', '320:00:00', '320:00:00', '00:00:00', '00:00:00', '00:00:00', NULL); -INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (1094, 29, 144, '216:00:00', '213:20:00', '216:00:00', '00:00:00', '00:00:00', '02:40:00', NULL); -INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (1095, 29, 102, '320:00:00', '320:00:00', '320:00:00', '00:00:00', '00:00:00', '00:00:00', NULL); -INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (1096, 29, 109, '320:00:00', '320:00:00', '320:00:00', '00:00:00', '00:00:00', '00:00:00', NULL); -INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (1097, 29, 118, '320:00:00', '320:00:00', '320:00:00', '00:00:00', '00:00:00', '00:00:00', NULL); -INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (1098, 29, 133, '320:00:00', '320:00:00', '320:00:00', '00:00:00', '00:00:00', '00:00:00', NULL); -INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (1099, 29, 111, '320:00:00', '320:00:00', '320:00:00', '00:00:00', '00:00:00', '00:00:00', NULL); -INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (1100, 29, 128, '320:00:00', '320:00:00', '320:00:00', '00:00:00', '00:00:00', '00:00:00', NULL); -INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (1101, 29, 142, '320:00:00', '320:00:00', '320:00:00', '00:00:00', '00:00:00', '00:00:00', NULL); -INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (1102, 29, 136, '320:00:00', '320:00:00', '320:00:00', '00:00:00', '00:00:00', '00:00:00', NULL); -INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (1103, 29, 139, '320:00:00', '320:00:00', '320:00:00', '00:00:00', '00:00:00', '00:00:00', NULL); -INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (1104, 29, 141, '320:00:00', '320:00:00', '320:00:00', '00:00:00', '00:00:00', '00:00:00', NULL); -INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (1105, 29, 122, '320:00:00', '320:00:00', '320:00:00', '00:00:00', '00:00:00', '00:00:00', NULL); -INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (1106, 29, 106, '320:00:00', '100:00:00', '320:00:00', '00:00:00', '00:00:00', '220:00:00', NULL); -INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (1107, 29, 110, '320:00:00', '320:00:00', '320:00:00', '00:00:00', '00:00:00', '00:00:00', NULL); -INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (1108, 29, 145, '320:00:00', '320:00:00', '320:00:00', '00:00:00', '00:00:00', '00:00:00', NULL); -INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (1109, 29, 148, '320:00:00', '320:00:00', '320:00:00', '00:00:00', '00:00:00', '00:00:00', NULL); -INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (1110, 29, 130, '320:00:00', '320:00:00', '320:00:00', '00:00:00', '00:00:00', '00:00:00', NULL); -INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (1111, 29, 129, '320:00:00', '320:00:00', '320:00:00', '00:00:00', '00:00:00', '00:00:00', NULL); -INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (1112, 29, 143, '320:00:00', '320:00:00', '320:00:00', '00:00:00', '00:00:00', '00:00:00', NULL); +INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, payedhours, diffhourspayed) VALUES (1730, 27, 116, '304:00:00', '306:40:00', '304:00:00', '00:00:00', '00:00:00', '-02:40:00', NULL, NULL); +INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, payedhours, diffhourspayed) VALUES (992, 27, 146, '304:00:00', '306:40:00', '304:00:00', '00:00:00', '00:00:00', '-02:40:00', NULL, NULL); +INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, payedhours, diffhourspayed) VALUES (993, 27, 132, '88:00:00', '106:40:00', '88:00:00', '00:00:00', '00:00:00', '-18:40:00', NULL, NULL); +INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, payedhours, diffhourspayed) VALUES (994, 27, 115, '320:00:00', '320:00:00', '320:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, NULL); +INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, payedhours, diffhourspayed) VALUES (995, 27, 114, '320:00:00', '320:00:00', '320:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, NULL); +INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, payedhours, diffhourspayed) VALUES (996, 27, 112, '304:00:00', '306:40:00', '304:00:00', '00:00:00', '00:00:00', '-02:40:00', NULL, NULL); +INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, payedhours, diffhourspayed) VALUES (1086, 29, 113, '320:00:00', '320:00:00', '320:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, NULL); +INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, payedhours, diffhourspayed) VALUES (1087, 29, 147, '320:00:00', '320:00:00', '320:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, NULL); +INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, payedhours, diffhourspayed) VALUES (1088, 29, 131, '320:00:00', '160:00:00', '320:00:00', '00:00:00', '00:00:00', '160:00:00', NULL, NULL); +INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, payedhours, diffhourspayed) VALUES (1089, 29, 104, '320:00:00', '240:00:00', '320:00:00', '00:00:00', '00:00:00', '80:00:00', NULL, NULL); +INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, payedhours, diffhourspayed) VALUES (1090, 29, 151, '320:00:00', '320:00:00', '320:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, NULL); +INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, payedhours, diffhourspayed) VALUES (1091, 29, 138, '320:00:00', '320:00:00', '320:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, NULL); +INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, payedhours, diffhourspayed) VALUES (1092, 29, 105, '320:00:00', '320:00:00', '320:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, NULL); +INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, payedhours, diffhourspayed) VALUES (1093, 29, 134, '320:00:00', '320:00:00', '320:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, NULL); +INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, payedhours, diffhourspayed) VALUES (1094, 29, 144, '216:00:00', '240:00:00', '216:00:00', '00:00:00', '00:00:00', '-24:00:00', NULL, NULL); +INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, payedhours, diffhourspayed) VALUES (1095, 29, 102, '320:00:00', '320:00:00', '320:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, NULL); +INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, payedhours, diffhourspayed) VALUES (1096, 29, 109, '320:00:00', '320:00:00', '320:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, NULL); +INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, payedhours, diffhourspayed) VALUES (1097, 29, 118, '320:00:00', '320:00:00', '320:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, NULL); +INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, payedhours, diffhourspayed) VALUES (1098, 29, 133, '320:00:00', '320:00:00', '320:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, NULL); +INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, payedhours, diffhourspayed) VALUES (1099, 29, 111, '320:00:00', '320:00:00', '320:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, NULL); +INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, payedhours, diffhourspayed) VALUES (1100, 29, 128, '320:00:00', '320:00:00', '320:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, NULL); +INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, payedhours, diffhourspayed) VALUES (1101, 29, 142, '320:00:00', '320:00:00', '320:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, NULL); +INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, payedhours, diffhourspayed) VALUES (1102, 29, 136, '320:00:00', '320:00:00', '320:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, NULL); +INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, payedhours, diffhourspayed) VALUES (1103, 29, 139, '320:00:00', '320:00:00', '320:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, NULL); +INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, payedhours, diffhourspayed) VALUES (1104, 29, 141, '320:00:00', '320:00:00', '320:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, NULL); +INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, payedhours, diffhourspayed) VALUES (1105, 29, 122, '320:00:00', '320:00:00', '320:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, NULL); +INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, payedhours, diffhourspayed) VALUES (1106, 29, 106, '320:00:00', '100:00:00', '320:00:00', '00:00:00', '00:00:00', '220:00:00', NULL, NULL); +INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, payedhours, diffhourspayed) VALUES (1107, 29, 110, '320:00:00', '320:00:00', '320:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, NULL); +INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, payedhours, diffhourspayed) VALUES (1108, 29, 145, '320:00:00', '320:00:00', '320:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, NULL); +INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, payedhours, diffhourspayed) VALUES (1109, 29, 148, '320:00:00', '320:00:00', '320:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, NULL); +INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, payedhours, diffhourspayed) VALUES (1110, 29, 130, '320:00:00', '320:00:00', '320:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, NULL); +INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, payedhours, diffhourspayed) VALUES (1111, 29, 129, '320:00:00', '320:00:00', '320:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, NULL); +INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, payedhours, diffhourspayed) VALUES (1112, 29, 143, '320:00:00', '320:00:00', '320:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, NULL); +INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, payedhours, diffhourspayed) VALUES (1152, 30, 146, '320:00:00', '320:00:00', '320:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, NULL); +INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, payedhours, diffhourspayed) VALUES (1153, 30, 115, '320:00:00', '320:00:00', '320:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, NULL); +INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, payedhours, diffhourspayed) VALUES (1154, 30, 114, '320:00:00', '320:00:00', '320:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, NULL); +INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, payedhours, diffhourspayed) VALUES (1166, 30, 147, '320:00:00', '320:00:00', '320:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, NULL); +INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, payedhours, diffhourspayed) VALUES (1178, 30, 128, '320:00:00', '320:00:00', '320:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, NULL); +INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, payedhours, diffhourspayed) VALUES (1179, 30, 142, '320:00:00', '320:00:00', '320:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, NULL); +INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, payedhours, diffhourspayed) VALUES (1180, 30, 136, '320:00:00', '320:00:00', '320:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, NULL); +INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, payedhours, diffhourspayed) VALUES (1181, 30, 139, '320:00:00', '320:00:00', '320:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, NULL); +INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, payedhours, diffhourspayed) VALUES (1182, 30, 141, '320:00:00', '320:00:00', '320:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, NULL); +INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, payedhours, diffhourspayed) VALUES (1183, 30, 122, '320:00:00', '320:00:00', '320:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, NULL); +INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, payedhours, diffhourspayed) VALUES (1184, 30, 106, '320:00:00', '100:00:00', '320:00:00', '00:00:00', '00:00:00', '220:00:00', NULL, NULL); +INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, payedhours, diffhourspayed) VALUES (1185, 30, 110, '320:00:00', '320:00:00', '320:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, NULL); +INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, payedhours, diffhourspayed) VALUES (1186, 30, 145, '320:00:00', '320:00:00', '320:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, NULL); +INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, payedhours, diffhourspayed) VALUES (1187, 30, 148, '320:00:00', '320:00:00', '320:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, NULL); +INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, payedhours, diffhourspayed) VALUES (1545, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '01:00:00', NULL); +INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, payedhours, diffhourspayed) VALUES (997, 27, 108, '280:00:00', '280:00:00', '280:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, NULL); +INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, payedhours, diffhourspayed) VALUES (998, 27, 135, '320:00:00', '320:00:00', '320:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, NULL); +INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, payedhours, diffhourspayed) VALUES (1006, 27, 147, '304:00:00', '306:40:00', '304:00:00', '00:00:00', '00:00:00', '-02:40:00', NULL, NULL); +INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, payedhours, diffhourspayed) VALUES (1007, 27, 131, '320:00:00', '160:00:00', '320:00:00', '00:00:00', '00:00:00', '160:00:00', NULL, NULL); +INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, payedhours, diffhourspayed) VALUES (1008, 27, 104, '320:00:00', '240:00:00', '320:00:00', '00:00:00', '00:00:00', '80:00:00', NULL, NULL); +INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, payedhours, diffhourspayed) VALUES (1075, 29, 115, '320:00:00', '320:00:00', '320:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, NULL); +INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, payedhours, diffhourspayed) VALUES (1076, 29, 114, '320:00:00', '320:00:00', '320:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, NULL); +INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, payedhours, diffhourspayed) VALUES (1077, 29, 112, '320:00:00', '320:00:00', '320:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, NULL); +INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, payedhours, diffhourspayed) VALUES (1078, 29, 108, '320:00:00', '320:00:00', '320:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, NULL); +INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, payedhours, diffhourspayed) VALUES (1079, 29, 135, '320:00:00', '320:00:00', '320:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, NULL); +INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, payedhours, diffhourspayed) VALUES (1080, 29, 127, '320:00:00', '320:00:00', '320:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, NULL); +INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, payedhours, diffhourspayed) VALUES (1081, 29, 149, '320:00:00', '320:00:00', '320:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, NULL); +INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, payedhours, diffhourspayed) VALUES (1082, 29, 103, '320:00:00', '320:00:00', '320:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, NULL); +INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, payedhours, diffhourspayed) VALUES (1083, 29, 121, '320:00:00', '320:00:00', '320:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, NULL); +INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, payedhours, diffhourspayed) VALUES (1084, 29, 125, '320:00:00', '160:00:00', '320:00:00', '00:00:00', '00:00:00', '160:00:00', NULL, NULL); +INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, payedhours, diffhourspayed) VALUES (1085, 29, 119, '320:00:00', '320:00:00', '320:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, NULL); +INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, payedhours, diffhourspayed) VALUES (1198, 31, 103, '320:00:00', '320:00:00', '320:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, NULL); +INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, payedhours, diffhourspayed) VALUES (1199, 31, 121, '280:00:00', '280:00:00', '280:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, NULL); +INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, payedhours, diffhourspayed) VALUES (1200, 31, 117, '320:00:00', '320:00:00', '320:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, NULL); +INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, payedhours, diffhourspayed) VALUES (1201, 31, 125, '320:00:00', '160:00:00', '320:00:00', '00:00:00', '00:00:00', '160:00:00', NULL, NULL); +INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, payedhours, diffhourspayed) VALUES (1202, 31, 119, '320:00:00', '320:00:00', '320:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, NULL); +INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, payedhours, diffhourspayed) VALUES (1203, 31, 113, '320:00:00', '320:00:00', '320:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, NULL); +INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, payedhours, diffhourspayed) VALUES (1204, 31, 147, '320:00:00', '320:00:00', '320:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, NULL); +INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, payedhours, diffhourspayed) VALUES (1205, 31, 131, '320:00:00', '160:00:00', '320:00:00', '00:00:00', '00:00:00', '160:00:00', NULL, NULL); +INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, payedhours, diffhourspayed) VALUES (1206, 31, 104, '320:00:00', '240:00:00', '320:00:00', '00:00:00', '00:00:00', '80:00:00', NULL, NULL); +INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, payedhours, diffhourspayed) VALUES (1207, 31, 151, '320:00:00', '320:00:00', '320:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, NULL); +INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, payedhours, diffhourspayed) VALUES (1208, 31, 138, '96:00:00', '120:00:00', '96:00:00', '00:00:00', '00:00:00', '-24:00:00', NULL, NULL); +INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, payedhours, diffhourspayed) VALUES (1209, 31, 105, '320:00:00', '320:00:00', '320:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, NULL); +INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, payedhours, diffhourspayed) VALUES (1009, 27, 151, '120:00:00', '160:00:00', '120:00:00', '00:00:00', '00:00:00', '-40:00:00', NULL, NULL); +INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, payedhours, diffhourspayed) VALUES (1010, 27, 138, '304:00:00', '306:40:00', '304:00:00', '00:00:00', '00:00:00', '-02:40:00', NULL, NULL); +INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, payedhours, diffhourspayed) VALUES (1014, 27, 102, '304:00:00', '306:40:00', '304:00:00', '00:00:00', '00:00:00', '-02:40:00', NULL, NULL); +INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, payedhours, diffhourspayed) VALUES (1015, 27, 109, '320:00:00', '320:00:00', '320:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, NULL); +INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, payedhours, diffhourspayed) VALUES (1016, 27, 118, '320:00:00', '320:00:00', '320:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, NULL); +INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, payedhours, diffhourspayed) VALUES (1017, 27, 133, '320:00:00', '320:00:00', '320:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, NULL); +INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, payedhours, diffhourspayed) VALUES (1018, 27, 111, '306:40:00', '306:40:00', '306:40:00', '00:00:00', '00:00:00', '00:00:00', NULL, NULL); +INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, payedhours, diffhourspayed) VALUES (1019, 27, 128, '304:00:00', '306:40:00', '304:00:00', '00:00:00', '00:00:00', '-02:40:00', NULL, NULL); +INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, payedhours, diffhourspayed) VALUES (1020, 27, 142, '320:00:00', '320:00:00', '320:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, NULL); +INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, payedhours, diffhourspayed) VALUES (1021, 27, 136, '320:00:00', '320:00:00', '320:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, NULL); +INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, payedhours, diffhourspayed) VALUES (1022, 27, 140, '184:00:00', '186:40:00', '184:00:00', '00:00:00', '00:00:00', '-02:40:00', NULL, NULL); +INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, payedhours, diffhourspayed) VALUES (1023, 27, 139, '304:00:00', '306:40:00', '304:00:00', '00:00:00', '00:00:00', '-02:40:00', NULL, NULL); +INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, payedhours, diffhourspayed) VALUES (1024, 27, 141, '304:00:00', '306:40:00', '304:00:00', '00:00:00', '00:00:00', '-02:40:00', NULL, NULL); +INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, payedhours, diffhourspayed) VALUES (1025, 27, 122, '320:00:00', '320:00:00', '320:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, NULL); +INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, payedhours, diffhourspayed) VALUES (1032, 27, 143, '304:00:00', '306:40:00', '304:00:00', '00:00:00', '00:00:00', '-02:40:00', NULL, NULL); +INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, payedhours, diffhourspayed) VALUES (1772, 29, 116, '40:00:00', '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, NULL); +INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, payedhours, diffhourspayed) VALUES (1074, 29, 146, '320:00:00', '320:00:00', '320:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, NULL); +INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, payedhours, diffhourspayed) VALUES (999, 27, 127, '304:00:00', '306:40:00', '304:00:00', '00:00:00', '00:00:00', '-02:40:00', NULL, NULL); +INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, payedhours, diffhourspayed) VALUES (1000, 27, 149, '304:00:00', '306:40:00', '304:00:00', '00:00:00', '00:00:00', '-02:40:00', NULL, NULL); +INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, payedhours, diffhourspayed) VALUES (1001, 27, 103, '316:00:00', '320:00:00', '320:00:00', '04:00:00', '00:00:00', '00:00:00', NULL, NULL); +INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, payedhours, diffhourspayed) VALUES (1002, 27, 121, '304:00:00', '306:40:00', '304:00:00', '00:00:00', '00:00:00', '-02:40:00', NULL, NULL); +INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, payedhours, diffhourspayed) VALUES (1003, 27, 125, '160:00:00', '160:00:00', '160:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, NULL); +INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, payedhours, diffhourspayed) VALUES (1004, 27, 119, '304:00:00', '306:40:00', '304:00:00', '00:00:00', '00:00:00', '-02:40:00', NULL, NULL); +INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, payedhours, diffhourspayed) VALUES (1005, 27, 113, '320:00:00', '320:00:00', '320:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, NULL); +INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, payedhours, diffhourspayed) VALUES (1011, 27, 105, '320:00:00', '320:00:00', '320:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, NULL); +INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, payedhours, diffhourspayed) VALUES (1012, 27, 134, '304:00:00', '306:40:00', '304:00:00', '00:00:00', '00:00:00', '-02:40:00', NULL, NULL); +INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, payedhours, diffhourspayed) VALUES (1013, 27, 144, '304:00:00', '306:40:00', '304:00:00', '00:00:00', '00:00:00', '-02:40:00', NULL, NULL); +INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, payedhours, diffhourspayed) VALUES (1026, 27, 106, '320:00:00', '100:00:00', '320:00:00', '00:00:00', '00:00:00', '220:00:00', NULL, NULL); +INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, payedhours, diffhourspayed) VALUES (1027, 27, 110, '304:00:00', '306:40:00', '304:00:00', '00:00:00', '00:00:00', '-02:40:00', NULL, NULL); +INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, payedhours, diffhourspayed) VALUES (1028, 27, 145, '304:00:00', '306:40:00', '304:00:00', '00:00:00', '00:00:00', '-02:40:00', NULL, NULL); +INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, payedhours, diffhourspayed) VALUES (1029, 27, 148, '304:00:00', '306:40:00', '304:00:00', '00:00:00', '00:00:00', '-02:40:00', NULL, NULL); +INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, payedhours, diffhourspayed) VALUES (1030, 27, 130, '320:00:00', '320:00:00', '320:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, NULL); +INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, payedhours, diffhourspayed) VALUES (956, 27, 129, '320:00:00', '320:00:00', '320:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, NULL); +INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, payedhours, diffhourspayed) VALUES (1155, 30, 112, '240:00:00', '240:00:00', '240:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, NULL); +INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, payedhours, diffhourspayed) VALUES (1156, 30, 108, '320:00:00', '320:00:00', '320:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, NULL); +INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, payedhours, diffhourspayed) VALUES (1157, 30, 135, '320:00:00', '320:00:00', '320:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, NULL); +INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, payedhours, diffhourspayed) VALUES (1158, 30, 127, '320:00:00', '320:00:00', '320:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, NULL); +INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, payedhours, diffhourspayed) VALUES (1159, 30, 149, '320:00:00', '320:00:00', '320:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, NULL); +INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, payedhours, diffhourspayed) VALUES (1160, 30, 103, '320:00:00', '320:00:00', '320:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, NULL); +INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, payedhours, diffhourspayed) VALUES (1161, 30, 121, '320:00:00', '320:00:00', '320:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, NULL); +INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, payedhours, diffhourspayed) VALUES (1162, 30, 117, '248:00:00', '280:00:00', '248:00:00', '00:00:00', '00:00:00', '-32:00:00', NULL, NULL); +INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, payedhours, diffhourspayed) VALUES (1163, 30, 125, '320:00:00', '160:00:00', '320:00:00', '00:00:00', '00:00:00', '160:00:00', NULL, NULL); +INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, payedhours, diffhourspayed) VALUES (1164, 30, 119, '320:00:00', '320:00:00', '320:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, NULL); +INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, payedhours, diffhourspayed) VALUES (1165, 30, 113, '320:00:00', '320:00:00', '320:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, NULL); +INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, payedhours, diffhourspayed) VALUES (1188, 30, 130, '320:00:00', '320:00:00', '320:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, NULL); +INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, payedhours, diffhourspayed) VALUES (1189, 30, 129, '320:00:00', '320:00:00', '320:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, NULL); +INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, payedhours, diffhourspayed) VALUES (1190, 30, 143, '320:00:00', '320:00:00', '320:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, NULL); +INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, payedhours, diffhourspayed) VALUES (1191, 31, 146, '320:00:00', '320:00:00', '320:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, NULL); +INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, payedhours, diffhourspayed) VALUES (1192, 31, 115, '320:00:00', '320:00:00', '320:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, NULL); +INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, payedhours, diffhourspayed) VALUES (1193, 31, 114, '320:00:00', '320:00:00', '320:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, NULL); +INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, payedhours, diffhourspayed) VALUES (1194, 31, 108, '320:00:00', '320:00:00', '320:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, NULL); +INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, payedhours, diffhourspayed) VALUES (1195, 31, 135, '320:00:00', '320:00:00', '320:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, NULL); +INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, payedhours, diffhourspayed) VALUES (1196, 31, 127, '320:00:00', '320:00:00', '320:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, NULL); +INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, payedhours, diffhourspayed) VALUES (1197, 31, 149, '320:00:00', '320:00:00', '320:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, NULL); +INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, payedhours, diffhourspayed) VALUES (1167, 30, 131, '320:00:00', '160:00:00', '320:00:00', '00:00:00', '00:00:00', '160:00:00', NULL, NULL); +INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, payedhours, diffhourspayed) VALUES (1168, 30, 104, '320:00:00', '240:00:00', '320:00:00', '00:00:00', '00:00:00', '80:00:00', NULL, NULL); +INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, payedhours, diffhourspayed) VALUES (1169, 30, 151, '320:00:00', '320:00:00', '320:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, NULL); +INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, payedhours, diffhourspayed) VALUES (1170, 30, 138, '320:00:00', '320:00:00', '320:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, NULL); +INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, payedhours, diffhourspayed) VALUES (1171, 30, 105, '320:00:00', '320:00:00', '320:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, NULL); +INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, payedhours, diffhourspayed) VALUES (1172, 30, 134, '320:00:00', '320:00:00', '320:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, NULL); +INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, payedhours, diffhourspayed) VALUES (1173, 30, 102, '320:00:00', '320:00:00', '320:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, NULL); +INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, payedhours, diffhourspayed) VALUES (1174, 30, 109, '320:00:00', '320:00:00', '320:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, NULL); +INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, payedhours, diffhourspayed) VALUES (1175, 30, 118, '320:00:00', '320:00:00', '320:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, NULL); +INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, payedhours, diffhourspayed) VALUES (1176, 30, 133, '320:00:00', '320:00:00', '320:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, NULL); +INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, payedhours, diffhourspayed) VALUES (1177, 30, 111, '320:00:00', '320:00:00', '320:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, NULL); +INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, payedhours, diffhourspayed) VALUES (1210, 31, 134, '320:00:00', '320:00:00', '320:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, NULL); +INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, payedhours, diffhourspayed) VALUES (1211, 31, 102, '320:00:00', '320:00:00', '320:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, NULL); +INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, payedhours, diffhourspayed) VALUES (1212, 31, 109, '320:00:00', '320:00:00', '320:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, NULL); +INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, payedhours, diffhourspayed) VALUES (1213, 31, 118, '320:00:00', '320:00:00', '320:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, NULL); +INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, payedhours, diffhourspayed) VALUES (1214, 31, 133, '320:00:00', '320:00:00', '320:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, NULL); +INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, payedhours, diffhourspayed) VALUES (1215, 31, 111, '320:00:00', '320:00:00', '320:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, NULL); +INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, payedhours, diffhourspayed) VALUES (1216, 31, 128, '320:00:00', '320:00:00', '320:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, NULL); +INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, payedhours, diffhourspayed) VALUES (1217, 31, 142, '320:00:00', '320:00:00', '320:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, NULL); +INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, payedhours, diffhourspayed) VALUES (1218, 31, 136, '320:00:00', '320:00:00', '320:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, NULL); +INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, payedhours, diffhourspayed) VALUES (1219, 31, 139, '320:00:00', '320:00:00', '320:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, NULL); +INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, payedhours, diffhourspayed) VALUES (1220, 31, 141, '320:00:00', '320:00:00', '320:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, NULL); +INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, payedhours, diffhourspayed) VALUES (1221, 31, 122, '320:00:00', '320:00:00', '320:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, NULL); +INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, payedhours, diffhourspayed) VALUES (1222, 31, 106, '320:00:00', '100:00:00', '320:00:00', '00:00:00', '00:00:00', '220:00:00', NULL, NULL); +INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, payedhours, diffhourspayed) VALUES (1223, 31, 110, '320:00:00', '320:00:00', '320:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, NULL); +INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, payedhours, diffhourspayed) VALUES (1224, 31, 145, '320:00:00', '320:00:00', '320:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, NULL); +INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, payedhours, diffhourspayed) VALUES (1225, 31, 148, '320:00:00', '320:00:00', '320:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, NULL); +INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, payedhours, diffhourspayed) VALUES (1226, 31, 130, '320:00:00', '320:00:00', '320:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, NULL); +INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, payedhours, diffhourspayed) VALUES (1227, 31, 129, '320:00:00', '320:00:00', '320:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, NULL); +INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, payedhours, diffhourspayed) VALUES (1228, 31, 143, '320:00:00', '320:00:00', '320:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, NULL); -- -- Data for Name: staffreportperioddays; Type: TABLE DATA; Schema: portanova; Owner: - -- -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (988797, 146, '2020-01-22', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (988798, 146, '2020-01-23', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (988799, 146, '2020-01-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (988800, 146, '2020-01-25', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (988801, 146, '2020-01-26', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (988802, 146, '2020-01-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (988803, 146, '2020-01-28', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (988804, 146, '2020-01-29', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (988805, 146, '2020-01-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (993102, 115, '2020-01-23', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (993103, 115, '2020-01-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (993104, 115, '2020-01-25', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (993105, 115, '2020-01-26', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (993106, 115, '2020-01-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (993107, 115, '2020-01-28', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (993131, 115, '2020-02-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (993132, 115, '2020-02-22', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (993133, 115, '2020-02-23', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (995247, 114, '2020-01-16', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (995248, 114, '2020-01-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (995249, 114, '2020-01-18', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (995250, 114, '2020-01-19', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (995251, 114, '2020-01-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (995252, 114, '2020-01-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (995253, 114, '2020-01-22', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (995254, 114, '2020-01-23', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (995255, 114, '2020-01-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (995256, 114, '2020-01-25', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (995257, 114, '2020-01-26', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (995258, 114, '2020-01-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (995259, 114, '2020-01-28', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (995260, 114, '2020-01-29', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (995261, 114, '2020-01-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (995262, 114, '2020-01-31', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (995263, 114, '2020-02-01', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (995264, 114, '2020-02-02', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (995265, 114, '2020-02-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (995266, 114, '2020-02-04', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079166, 146, '2020-03-01', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079167, 146, '2020-03-02', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079168, 146, '2020-03-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079169, 146, '2020-03-04', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (995267, 114, '2020-02-05', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (995268, 114, '2020-02-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (995269, 114, '2020-02-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (995270, 114, '2020-02-08', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (995271, 114, '2020-02-09', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (995272, 114, '2020-02-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (995273, 114, '2020-02-11', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (995274, 114, '2020-02-12', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (995275, 114, '2020-02-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (995276, 114, '2020-02-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (997427, 112, '2020-02-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (997428, 112, '2020-02-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (997429, 112, '2020-02-15', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (997430, 112, '2020-02-16', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (997431, 112, '2020-02-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (997432, 112, '2020-02-18', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (997433, 112, '2020-02-19', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (997434, 112, '2020-02-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (997435, 112, '2020-02-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (997436, 112, '2020-02-22', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (997437, 112, '2020-02-23', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (999560, 108, '2020-01-25', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (999561, 108, '2020-01-26', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (999562, 108, '2020-01-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (999563, 108, '2020-01-28', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (999564, 108, '2020-01-29', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (999565, 108, '2020-01-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (999566, 108, '2020-01-31', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (999567, 108, '2020-02-01', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (999568, 108, '2020-02-02', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (999569, 108, '2020-02-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (999570, 108, '2020-02-04', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (999571, 108, '2020-02-05', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (999572, 108, '2020-02-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (999573, 108, '2020-02-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079170, 146, '2020-03-05', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079171, 146, '2020-03-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079172, 146, '2020-03-07', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079173, 146, '2020-03-08', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (999574, 108, '2020-02-08', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (999575, 108, '2020-02-09', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (999581, 108, '2020-02-15', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1001724, 135, '2020-02-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1001725, 135, '2020-02-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1001726, 135, '2020-02-08', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1001727, 135, '2020-02-09', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1001728, 135, '2020-02-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1001729, 135, '2020-02-11', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1001730, 135, '2020-02-12', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1001731, 135, '2020-02-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1001732, 135, '2020-02-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1001733, 135, '2020-02-15', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1001734, 135, '2020-02-16', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1001735, 135, '2020-02-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1001736, 135, '2020-02-18', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1001737, 135, '2020-02-19', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1001738, 135, '2020-02-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1001739, 135, '2020-02-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1001740, 135, '2020-02-22', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1001741, 135, '2020-02-23', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1003860, 127, '2020-01-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1003861, 127, '2020-01-22', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1003862, 127, '2020-01-23', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1003863, 127, '2020-01-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1003864, 127, '2020-01-25', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1003865, 127, '2020-01-26', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1003866, 127, '2020-01-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1003867, 127, '2020-01-28', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1003868, 127, '2020-01-29', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1003869, 127, '2020-01-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1003870, 127, '2020-01-31', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1003871, 127, '2020-02-01', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1003872, 127, '2020-02-02', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1003873, 127, '2020-02-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1006019, 149, '2020-01-28', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1006020, 149, '2020-01-29', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079174, 146, '2020-03-09', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079175, 146, '2020-03-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079176, 146, '2020-03-11', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079177, 146, '2020-03-12', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1006021, 149, '2020-01-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1006022, 149, '2020-01-31', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1006023, 149, '2020-02-01', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1006024, 149, '2020-02-02', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1006025, 149, '2020-02-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1006026, 149, '2020-02-04', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1006027, 149, '2020-02-05', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1006028, 149, '2020-02-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1006029, 149, '2020-02-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1006030, 149, '2020-02-08', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1006031, 149, '2020-02-09', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1006032, 149, '2020-02-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1006033, 149, '2020-02-11', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1006034, 149, '2020-02-12', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1006035, 149, '2020-02-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1006036, 149, '2020-02-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1006037, 149, '2020-02-15', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1006038, 149, '2020-02-16', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1006039, 149, '2020-02-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1006040, 149, '2020-02-18', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1006041, 149, '2020-02-19', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1006042, 149, '2020-02-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1006043, 149, '2020-02-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1006044, 149, '2020-02-22', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1006045, 149, '2020-02-23', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1008165, 103, '2020-01-22', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1008166, 103, '2020-01-23', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1008167, 103, '2020-01-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1008168, 103, '2020-01-25', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1008169, 103, '2020-01-26', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1008170, 103, '2020-01-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1008171, 103, '2020-01-28', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1008172, 103, '2020-01-29', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1008173, 103, '2020-01-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1008174, 103, '2020-01-31', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1010312, 121, '2020-01-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079178, 146, '2020-03-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079179, 146, '2020-03-14', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079180, 146, '2020-03-15', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079181, 146, '2020-03-16', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079182, 146, '2020-03-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1010313, 121, '2020-01-18', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1010314, 121, '2020-01-19', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1010315, 121, '2020-01-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1010316, 121, '2020-01-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1010317, 121, '2020-01-22', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1010318, 121, '2020-01-23', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1010319, 121, '2020-01-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1010320, 121, '2020-01-25', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1010321, 121, '2020-01-26', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1010322, 121, '2020-01-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1010323, 121, '2020-01-28', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1010324, 121, '2020-01-29', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1010325, 121, '2020-01-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1010326, 121, '2020-01-31', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1010327, 121, '2020-02-01', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1010328, 121, '2020-02-02', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1010329, 121, '2020-02-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1010330, 121, '2020-02-04', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1010331, 121, '2020-02-05', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1010332, 121, '2020-02-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1010333, 121, '2020-02-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1010334, 121, '2020-02-08', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1010335, 121, '2020-02-09', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1010336, 121, '2020-02-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1010337, 121, '2020-02-11', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1010338, 121, '2020-02-12', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1010339, 121, '2020-02-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1010340, 121, '2020-02-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1010341, 121, '2020-02-15', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1010342, 121, '2020-02-16', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1010343, 121, '2020-02-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1010344, 121, '2020-02-18', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1010345, 121, '2020-02-19', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1010346, 121, '2020-02-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1010347, 121, '2020-02-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079183, 146, '2020-03-18', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079184, 146, '2020-03-19', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079185, 146, '2020-03-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079186, 146, '2020-03-21', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079187, 146, '2020-03-22', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1010348, 121, '2020-02-22', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1010349, 121, '2020-02-23', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1012469, 125, '2020-01-22', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1012470, 125, '2020-01-23', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1012471, 125, '2020-01-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1012472, 125, '2020-01-25', NULL, NULL, NULL, NULL, NULL, '00:00:00', '03:20:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1012473, 125, '2020-01-26', NULL, NULL, NULL, NULL, NULL, '00:00:00', '03:20:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1012474, 125, '2020-01-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1012475, 125, '2020-01-28', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1012476, 125, '2020-01-29', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1012477, 125, '2020-01-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1012478, 125, '2020-01-31', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1014612, 119, '2020-01-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1014613, 119, '2020-01-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1014614, 119, '2020-01-15', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1014615, 119, '2020-01-16', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1014616, 119, '2020-01-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1014617, 119, '2020-01-18', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1014618, 119, '2020-01-19', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1014619, 119, '2020-01-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1014620, 119, '2020-01-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1014621, 119, '2020-01-22', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1014622, 119, '2020-01-23', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1014623, 119, '2020-01-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1014624, 119, '2020-01-25', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1014625, 119, '2020-01-26', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1014626, 119, '2020-01-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1014627, 119, '2020-01-28', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1014628, 119, '2020-01-29', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1014629, 119, '2020-01-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1014630, 119, '2020-01-31', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1014631, 119, '2020-02-01', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1014632, 119, '2020-02-02', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1014633, 119, '2020-02-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1014634, 119, '2020-02-04', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079188, 146, '2020-03-23', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079189, 146, '2020-03-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079190, 146, '2020-03-25', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079191, 146, '2020-03-26', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1014635, 119, '2020-02-05', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1014636, 119, '2020-02-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1014637, 119, '2020-02-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1014638, 119, '2020-02-08', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1014639, 119, '2020-02-09', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1014640, 119, '2020-02-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1014641, 119, '2020-02-11', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1014642, 119, '2020-02-12', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1014643, 119, '2020-02-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1014644, 119, '2020-02-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1014645, 119, '2020-02-15', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1014646, 119, '2020-02-16', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1014647, 119, '2020-02-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1014648, 119, '2020-02-18', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1014649, 119, '2020-02-19', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1014650, 119, '2020-02-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1014651, 119, '2020-02-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1014652, 119, '2020-02-22', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1014653, 119, '2020-02-23', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1016773, 113, '2020-01-22', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1016774, 113, '2020-01-23', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1016775, 113, '2020-01-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1016776, 113, '2020-01-25', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1016777, 113, '2020-01-26', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1016778, 113, '2020-01-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1016779, 113, '2020-01-28', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1016780, 113, '2020-01-29', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1016781, 113, '2020-01-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1016782, 113, '2020-01-31', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1018917, 147, '2020-01-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1018918, 147, '2020-01-15', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1018919, 147, '2020-01-16', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1018920, 147, '2020-01-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1018921, 147, '2020-01-18', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1018922, 147, '2020-01-19', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1018923, 147, '2020-01-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079192, 146, '2020-03-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079193, 146, '2020-03-28', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079194, 146, '2020-03-29', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079195, 146, '2020-03-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079196, 146, '2020-03-31', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1018924, 147, '2020-01-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1018925, 147, '2020-01-22', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1018926, 147, '2020-01-23', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1018927, 147, '2020-01-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1018928, 147, '2020-01-25', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1018929, 147, '2020-01-26', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1018930, 147, '2020-01-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1018931, 147, '2020-01-28', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1018932, 147, '2020-01-29', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1018933, 147, '2020-01-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1018934, 147, '2020-01-31', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1018935, 147, '2020-02-01', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1018936, 147, '2020-02-02', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1018937, 147, '2020-02-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1018938, 147, '2020-02-04', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1018939, 147, '2020-02-05', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1018940, 147, '2020-02-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1018941, 147, '2020-02-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1018942, 147, '2020-02-08', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1018943, 147, '2020-02-09', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1018944, 147, '2020-02-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1018945, 147, '2020-02-11', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1018946, 147, '2020-02-12', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1018947, 147, '2020-02-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1018948, 147, '2020-02-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1018949, 147, '2020-02-15', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1018950, 147, '2020-02-16', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1018951, 147, '2020-02-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1018952, 147, '2020-02-18', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1018953, 147, '2020-02-19', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1018954, 147, '2020-02-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1021078, 131, '2020-01-23', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1021079, 131, '2020-01-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1021080, 131, '2020-01-25', NULL, NULL, NULL, NULL, NULL, '00:00:00', '03:20:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1021081, 131, '2020-01-26', NULL, NULL, NULL, NULL, NULL, '00:00:00', '03:20:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079197, 146, '2020-04-01', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079198, 146, '2020-04-02', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079199, 146, '2020-04-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079200, 146, '2020-04-04', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079201, 146, '2020-04-05', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1021082, 131, '2020-01-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1021083, 131, '2020-01-28', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1021107, 131, '2020-02-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1021108, 131, '2020-02-22', NULL, NULL, NULL, NULL, NULL, '00:00:00', '03:20:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1021109, 131, '2020-02-23', NULL, NULL, NULL, NULL, NULL, '00:00:00', '03:20:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1023223, 104, '2020-01-16', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '05:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1023224, 104, '2020-01-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '05:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1023225, 104, '2020-01-18', NULL, NULL, NULL, NULL, NULL, '00:00:00', '05:00:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1023226, 104, '2020-01-19', NULL, NULL, NULL, NULL, NULL, '00:00:00', '05:00:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1023227, 104, '2020-01-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '05:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1023228, 104, '2020-01-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '05:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1023229, 104, '2020-01-22', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '05:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1023230, 104, '2020-01-23', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '05:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1023231, 104, '2020-01-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '05:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1023232, 104, '2020-01-25', NULL, NULL, NULL, NULL, NULL, '00:00:00', '05:00:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1023233, 104, '2020-01-26', NULL, NULL, NULL, NULL, NULL, '00:00:00', '05:00:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1023234, 104, '2020-01-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '05:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1023235, 104, '2020-01-28', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '05:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1023236, 104, '2020-01-29', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '05:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1023237, 104, '2020-01-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '05:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1023238, 104, '2020-01-31', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '05:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1023239, 104, '2020-02-01', NULL, NULL, NULL, NULL, NULL, '00:00:00', '05:00:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1023240, 104, '2020-02-02', NULL, NULL, NULL, NULL, NULL, '00:00:00', '05:00:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1023241, 104, '2020-02-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '05:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1023242, 104, '2020-02-04', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '05:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1023243, 104, '2020-02-05', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '05:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1023244, 104, '2020-02-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '05:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1023245, 104, '2020-02-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '05:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1023246, 104, '2020-02-08', NULL, NULL, NULL, NULL, NULL, '00:00:00', '05:00:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1023247, 104, '2020-02-09', NULL, NULL, NULL, NULL, NULL, '00:00:00', '05:00:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1023248, 104, '2020-02-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '05:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1023249, 104, '2020-02-11', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '05:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1023250, 104, '2020-02-12', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '05:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1023251, 104, '2020-02-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '05:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1023252, 104, '2020-02-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '05:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1027530, 138, '2020-01-19', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079202, 146, '2020-04-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079203, 146, '2020-04-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079204, 146, '2020-04-08', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079205, 146, '2020-04-09', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1027531, 138, '2020-01-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1027532, 138, '2020-01-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1027533, 138, '2020-01-22', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1027534, 138, '2020-01-23', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1027535, 138, '2020-01-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1027536, 138, '2020-01-25', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1027537, 138, '2020-01-26', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1027538, 138, '2020-01-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1027539, 138, '2020-01-28', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1027540, 138, '2020-01-29', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1027541, 138, '2020-01-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1027542, 138, '2020-01-31', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1027543, 138, '2020-02-01', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1027544, 138, '2020-02-02', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1027545, 138, '2020-02-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1027546, 138, '2020-02-04', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1027547, 138, '2020-02-05', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1027548, 138, '2020-02-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1027549, 138, '2020-02-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1027550, 138, '2020-02-08', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1027551, 138, '2020-02-09', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1027557, 138, '2020-02-15', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1029700, 105, '2020-02-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1029701, 105, '2020-02-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1029702, 105, '2020-02-08', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1029703, 105, '2020-02-09', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1029704, 105, '2020-02-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1029705, 105, '2020-02-11', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1029706, 105, '2020-02-12', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1029707, 105, '2020-02-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1029708, 105, '2020-02-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1029709, 105, '2020-02-15', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1029710, 105, '2020-02-16', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1029711, 105, '2020-02-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1029712, 105, '2020-02-18', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1029713, 105, '2020-02-19', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079206, 146, '2020-04-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079207, 146, '2020-04-11', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079208, 146, '2020-04-12', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079209, 146, '2020-04-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079210, 146, '2020-04-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1029714, 105, '2020-02-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1029715, 105, '2020-02-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1029716, 105, '2020-02-22', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1029717, 105, '2020-02-23', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1031836, 134, '2020-01-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1031837, 134, '2020-01-22', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1031838, 134, '2020-01-23', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1031839, 134, '2020-01-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1031840, 134, '2020-01-25', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1031841, 134, '2020-01-26', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1031842, 134, '2020-01-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1031843, 134, '2020-01-28', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1031844, 134, '2020-01-29', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1031845, 134, '2020-01-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1031846, 134, '2020-01-31', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1031847, 134, '2020-02-01', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1031848, 134, '2020-02-02', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1031849, 134, '2020-02-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1033995, 144, '2020-01-28', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1033996, 144, '2020-01-29', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1033997, 144, '2020-01-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1033998, 144, '2020-01-31', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1033999, 144, '2020-02-01', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1034000, 144, '2020-02-02', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1034001, 144, '2020-02-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1034002, 144, '2020-02-04', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1034003, 144, '2020-02-05', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1034004, 144, '2020-02-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1034005, 144, '2020-02-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1034006, 144, '2020-02-08', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1034007, 144, '2020-02-09', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1034008, 144, '2020-02-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1034009, 144, '2020-02-11', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1034010, 144, '2020-02-12', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1034011, 144, '2020-02-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079211, 146, '2020-04-15', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079212, 146, '2020-04-16', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079213, 146, '2020-04-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079214, 146, '2020-04-18', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079215, 146, '2020-04-19', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1034012, 144, '2020-02-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1034013, 144, '2020-02-15', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1034014, 144, '2020-02-16', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1034015, 144, '2020-02-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1034016, 144, '2020-02-18', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1034017, 144, '2020-02-19', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1034018, 144, '2020-02-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1034019, 144, '2020-02-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1034020, 144, '2020-02-22', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1034021, 144, '2020-02-23', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1036141, 102, '2020-01-22', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1036142, 102, '2020-01-23', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1036143, 102, '2020-01-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1036144, 102, '2020-01-25', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1036145, 102, '2020-01-26', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1036146, 102, '2020-01-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1036147, 102, '2020-01-28', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1036148, 102, '2020-01-29', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1036149, 102, '2020-01-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1036150, 102, '2020-01-31', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1038288, 109, '2020-01-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1038289, 109, '2020-01-18', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1038290, 109, '2020-01-19', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1038291, 109, '2020-01-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1038292, 109, '2020-01-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1038293, 109, '2020-01-22', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1038294, 109, '2020-01-23', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1038295, 109, '2020-01-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1038296, 109, '2020-01-25', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1038297, 109, '2020-01-26', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1038298, 109, '2020-01-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1038299, 109, '2020-01-28', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1038300, 109, '2020-01-29', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1038301, 109, '2020-01-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1038302, 109, '2020-01-31', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1038303, 109, '2020-02-01', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1038304, 109, '2020-02-02', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079216, 115, '2020-02-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079217, 115, '2020-02-25', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079218, 115, '2020-02-26', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079219, 115, '2020-02-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1038305, 109, '2020-02-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1038306, 109, '2020-02-04', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1038307, 109, '2020-02-05', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1038308, 109, '2020-02-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1038309, 109, '2020-02-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1038310, 109, '2020-02-08', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1038311, 109, '2020-02-09', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1038312, 109, '2020-02-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1038313, 109, '2020-02-11', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1038314, 109, '2020-02-12', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1038315, 109, '2020-02-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1038316, 109, '2020-02-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1038317, 109, '2020-02-15', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1038318, 109, '2020-02-16', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1038319, 109, '2020-02-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1038320, 109, '2020-02-18', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1038321, 109, '2020-02-19', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1038322, 109, '2020-02-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1038323, 109, '2020-02-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1038324, 109, '2020-02-22', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1038325, 109, '2020-02-23', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1040445, 118, '2020-01-22', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1040446, 118, '2020-01-23', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1040447, 118, '2020-01-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1040448, 118, '2020-01-25', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1040449, 118, '2020-01-26', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1040450, 118, '2020-01-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1040451, 118, '2020-01-28', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1040452, 118, '2020-01-29', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1040453, 118, '2020-01-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1040454, 118, '2020-01-31', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1042588, 133, '2020-01-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1042589, 133, '2020-01-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1042590, 133, '2020-01-15', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079220, 115, '2020-02-28', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079221, 115, '2020-02-29', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079222, 115, '2020-03-01', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079223, 115, '2020-03-02', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079224, 115, '2020-03-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1042591, 133, '2020-01-16', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1042592, 133, '2020-01-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1042593, 133, '2020-01-18', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1042594, 133, '2020-01-19', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1042595, 133, '2020-01-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1042596, 133, '2020-01-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1042597, 133, '2020-01-22', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1042598, 133, '2020-01-23', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1042599, 133, '2020-01-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1042600, 133, '2020-01-25', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1042601, 133, '2020-01-26', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1042602, 133, '2020-01-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1042603, 133, '2020-01-28', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1042604, 133, '2020-01-29', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1042605, 133, '2020-01-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1042606, 133, '2020-01-31', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1042607, 133, '2020-02-01', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1042608, 133, '2020-02-02', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1042609, 133, '2020-02-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1042610, 133, '2020-02-04', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1042611, 133, '2020-02-05', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1042612, 133, '2020-02-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1042613, 133, '2020-02-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1042614, 133, '2020-02-08', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1042615, 133, '2020-02-09', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1042616, 133, '2020-02-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1042617, 133, '2020-02-11', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1042618, 133, '2020-02-12', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1042619, 133, '2020-02-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1042620, 133, '2020-02-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1042621, 133, '2020-02-15', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1042622, 133, '2020-02-16', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1042623, 133, '2020-02-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1042624, 133, '2020-02-18', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1042625, 133, '2020-02-19', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079225, 115, '2020-03-04', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079226, 115, '2020-03-05', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079227, 115, '2020-03-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079228, 115, '2020-03-07', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079229, 115, '2020-03-08', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1042626, 133, '2020-02-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1042627, 133, '2020-02-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1042628, 133, '2020-02-22', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1042629, 133, '2020-02-23', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1044749, 111, '2020-01-22', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1044750, 111, '2020-01-23', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1044751, 111, '2020-01-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1044752, 111, '2020-01-25', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1044753, 111, '2020-01-26', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1044754, 111, '2020-01-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1044755, 111, '2020-01-28', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1044756, 111, '2020-01-29', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1044757, 111, '2020-01-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1044758, 111, '2020-01-31', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1046893, 128, '2020-01-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1046894, 128, '2020-01-15', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1046895, 128, '2020-01-16', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1046896, 128, '2020-01-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1046897, 128, '2020-01-18', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1046898, 128, '2020-01-19', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1046899, 128, '2020-01-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1046900, 128, '2020-01-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1046901, 128, '2020-01-22', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1046902, 128, '2020-01-23', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1046903, 128, '2020-01-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1046904, 128, '2020-01-25', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1046905, 128, '2020-01-26', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1046906, 128, '2020-01-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1046907, 128, '2020-01-28', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1046908, 128, '2020-01-29', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1046909, 128, '2020-01-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1046910, 128, '2020-01-31', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1046911, 128, '2020-02-01', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1046912, 128, '2020-02-02', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1046913, 128, '2020-02-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079230, 115, '2020-03-09', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079231, 115, '2020-03-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079232, 115, '2020-03-11', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079233, 115, '2020-03-12', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1046914, 128, '2020-02-04', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1046915, 128, '2020-02-05', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1046916, 128, '2020-02-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1046917, 128, '2020-02-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1046918, 128, '2020-02-08', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1046919, 128, '2020-02-09', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1046920, 128, '2020-02-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1046921, 128, '2020-02-11', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1046922, 128, '2020-02-12', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1046923, 128, '2020-02-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1046924, 128, '2020-02-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1046925, 128, '2020-02-15', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1046926, 128, '2020-02-16', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1046927, 128, '2020-02-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1046928, 128, '2020-02-18', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1046929, 128, '2020-02-19', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1046930, 128, '2020-02-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1049054, 142, '2020-01-23', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1049055, 142, '2020-01-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1049056, 142, '2020-01-25', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1049057, 142, '2020-01-26', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1049058, 142, '2020-01-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1049059, 142, '2020-01-28', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1049083, 142, '2020-02-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1049084, 142, '2020-02-22', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1049085, 142, '2020-02-23', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1051199, 136, '2020-01-16', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1051200, 136, '2020-01-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1051201, 136, '2020-01-18', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1051202, 136, '2020-01-19', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1051203, 136, '2020-01-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1051204, 136, '2020-01-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1051205, 136, '2020-01-22', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1051206, 136, '2020-01-23', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1051207, 136, '2020-01-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1051208, 136, '2020-01-25', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1051209, 136, '2020-01-26', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079234, 115, '2020-03-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079235, 115, '2020-03-14', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079236, 115, '2020-03-15', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079237, 115, '2020-03-16', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1051210, 136, '2020-01-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1051211, 136, '2020-01-28', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1051212, 136, '2020-01-29', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1051213, 136, '2020-01-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1051214, 136, '2020-01-31', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1051215, 136, '2020-02-01', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1051216, 136, '2020-02-02', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1051217, 136, '2020-02-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1051218, 136, '2020-02-04', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1051219, 136, '2020-02-05', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1051220, 136, '2020-02-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1051221, 136, '2020-02-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1051222, 136, '2020-02-08', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1051223, 136, '2020-02-09', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1051224, 136, '2020-02-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1051225, 136, '2020-02-11', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1051226, 136, '2020-02-12', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1051227, 136, '2020-02-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1051228, 136, '2020-02-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1055506, 139, '2020-01-19', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1055507, 139, '2020-01-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1055508, 139, '2020-01-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1055509, 139, '2020-01-22', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1055510, 139, '2020-01-23', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1055511, 139, '2020-01-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1055512, 139, '2020-01-25', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1055513, 139, '2020-01-26', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1055514, 139, '2020-01-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1055515, 139, '2020-01-28', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1055516, 139, '2020-01-29', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1055517, 139, '2020-01-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1055518, 139, '2020-01-31', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1055519, 139, '2020-02-01', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1055520, 139, '2020-02-02', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079238, 115, '2020-03-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079239, 115, '2020-03-18', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079240, 115, '2020-03-19', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079241, 115, '2020-03-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079242, 115, '2020-03-21', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079243, 115, '2020-03-22', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1055521, 139, '2020-02-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1055522, 139, '2020-02-04', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1055523, 139, '2020-02-05', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1055524, 139, '2020-02-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1055525, 139, '2020-02-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1055526, 139, '2020-02-08', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1055527, 139, '2020-02-09', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1055533, 139, '2020-02-15', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1057676, 141, '2020-02-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1057677, 141, '2020-02-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1057678, 141, '2020-02-08', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1057679, 141, '2020-02-09', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1057680, 141, '2020-02-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1057681, 141, '2020-02-11', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1057682, 141, '2020-02-12', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1057683, 141, '2020-02-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1057684, 141, '2020-02-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1057685, 141, '2020-02-15', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1057686, 141, '2020-02-16', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1057687, 141, '2020-02-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1057688, 141, '2020-02-18', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1057689, 141, '2020-02-19', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1057690, 141, '2020-02-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1057691, 141, '2020-02-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1057692, 141, '2020-02-22', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1057693, 141, '2020-02-23', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1059812, 122, '2020-01-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1059813, 122, '2020-01-22', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1059814, 122, '2020-01-23', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1059815, 122, '2020-01-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1059816, 122, '2020-01-25', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1059817, 122, '2020-01-26', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1059818, 122, '2020-01-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1059819, 122, '2020-01-28', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1059820, 122, '2020-01-29', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1059821, 122, '2020-01-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1059822, 122, '2020-01-31', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079244, 115, '2020-03-23', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079245, 115, '2020-03-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079246, 115, '2020-03-25', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079247, 115, '2020-03-26', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1059823, 122, '2020-02-01', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1059824, 122, '2020-02-02', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1059825, 122, '2020-02-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1061971, 106, '2020-01-28', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '02:05:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1061972, 106, '2020-01-29', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '02:05:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1061973, 106, '2020-01-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '02:05:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1061974, 106, '2020-01-31', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '02:05:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1061975, 106, '2020-02-01', NULL, NULL, NULL, NULL, NULL, '00:00:00', '02:05:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1061976, 106, '2020-02-02', NULL, NULL, NULL, NULL, NULL, '00:00:00', '02:05:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1061977, 106, '2020-02-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '02:05:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1061978, 106, '2020-02-04', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '02:05:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1061979, 106, '2020-02-05', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '02:05:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1061980, 106, '2020-02-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '02:05:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1061981, 106, '2020-02-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '02:05:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1061982, 106, '2020-02-08', NULL, NULL, NULL, NULL, NULL, '00:00:00', '02:05:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1061983, 106, '2020-02-09', NULL, NULL, NULL, NULL, NULL, '00:00:00', '02:05:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1061984, 106, '2020-02-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '02:05:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1061985, 106, '2020-02-11', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '02:05:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1061986, 106, '2020-02-12', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '02:05:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1061987, 106, '2020-02-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '02:05:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1061988, 106, '2020-02-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '02:05:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1061989, 106, '2020-02-15', NULL, NULL, NULL, NULL, NULL, '00:00:00', '02:05:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1061990, 106, '2020-02-16', NULL, NULL, NULL, NULL, NULL, '00:00:00', '02:05:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1061991, 106, '2020-02-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '02:05:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1061992, 106, '2020-02-18', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '02:05:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1061993, 106, '2020-02-19', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '02:05:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1061994, 106, '2020-02-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '02:05:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1061995, 106, '2020-02-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '02:05:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1061996, 106, '2020-02-22', NULL, NULL, NULL, NULL, NULL, '00:00:00', '02:05:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1061997, 106, '2020-02-23', NULL, NULL, NULL, NULL, NULL, '00:00:00', '02:05:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1064117, 110, '2020-01-22', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1064118, 110, '2020-01-23', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1064119, 110, '2020-01-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1064120, 110, '2020-01-25', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1064121, 110, '2020-01-26', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1064122, 110, '2020-01-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079248, 115, '2020-03-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079249, 115, '2020-03-28', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079250, 115, '2020-03-29', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079251, 115, '2020-03-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079252, 115, '2020-03-31', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1064123, 110, '2020-01-28', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1064124, 110, '2020-01-29', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1064125, 110, '2020-01-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1064126, 110, '2020-01-31', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1066264, 145, '2020-01-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1066265, 145, '2020-01-18', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1066266, 145, '2020-01-19', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1066267, 145, '2020-01-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1066268, 145, '2020-01-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1066269, 145, '2020-01-22', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1066270, 145, '2020-01-23', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1066271, 145, '2020-01-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1066272, 145, '2020-01-25', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1066273, 145, '2020-01-26', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1066274, 145, '2020-01-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1066275, 145, '2020-01-28', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1066276, 145, '2020-01-29', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1066277, 145, '2020-01-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1066278, 145, '2020-01-31', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1066279, 145, '2020-02-01', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1066280, 145, '2020-02-02', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1066281, 145, '2020-02-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1066282, 145, '2020-02-04', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1066283, 145, '2020-02-05', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1066284, 145, '2020-02-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1066285, 145, '2020-02-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1066286, 145, '2020-02-08', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1066287, 145, '2020-02-09', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1066288, 145, '2020-02-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1066289, 145, '2020-02-11', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1066290, 145, '2020-02-12', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1066291, 145, '2020-02-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1066292, 145, '2020-02-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1066293, 145, '2020-02-15', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1066294, 145, '2020-02-16', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079253, 115, '2020-04-01', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079254, 115, '2020-04-02', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079255, 115, '2020-04-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079256, 115, '2020-04-04', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1066295, 145, '2020-02-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1066296, 145, '2020-02-18', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1066297, 145, '2020-02-19', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1066298, 145, '2020-02-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1066299, 145, '2020-02-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1066300, 145, '2020-02-22', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1066301, 145, '2020-02-23', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1068421, 148, '2020-01-22', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1068422, 148, '2020-01-23', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1068423, 148, '2020-01-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1068424, 148, '2020-01-25', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1068425, 148, '2020-01-26', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1068426, 148, '2020-01-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1068427, 148, '2020-01-28', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1068428, 148, '2020-01-29', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1068429, 148, '2020-01-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1068430, 148, '2020-01-31', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1070564, 130, '2020-01-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1070565, 130, '2020-01-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1070566, 130, '2020-01-15', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1070567, 130, '2020-01-16', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1070568, 130, '2020-01-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1070569, 130, '2020-01-18', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1070570, 130, '2020-01-19', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1070571, 130, '2020-01-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1070572, 130, '2020-01-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1070573, 130, '2020-01-22', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1070574, 130, '2020-01-23', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1070575, 130, '2020-01-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1070576, 130, '2020-01-25', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1070577, 130, '2020-01-26', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1070578, 130, '2020-01-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1070579, 130, '2020-01-28', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1070580, 130, '2020-01-29', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1070581, 130, '2020-01-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079257, 115, '2020-04-05', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079258, 115, '2020-04-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079259, 115, '2020-04-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079260, 115, '2020-04-08', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079261, 115, '2020-04-09', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1070582, 130, '2020-01-31', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1070583, 130, '2020-02-01', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1070584, 130, '2020-02-02', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1070585, 130, '2020-02-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1070586, 130, '2020-02-04', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1070587, 130, '2020-02-05', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1070588, 130, '2020-02-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1070589, 130, '2020-02-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1070590, 130, '2020-02-08', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1070591, 130, '2020-02-09', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1070592, 130, '2020-02-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1070593, 130, '2020-02-11', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1070594, 130, '2020-02-12', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1070595, 130, '2020-02-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1070596, 130, '2020-02-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1070597, 130, '2020-02-15', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1070598, 130, '2020-02-16', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1070599, 130, '2020-02-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1070600, 130, '2020-02-18', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1070601, 130, '2020-02-19', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1070602, 130, '2020-02-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1070603, 130, '2020-02-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1070604, 130, '2020-02-22', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1070605, 130, '2020-02-23', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (914490, 129, '2020-01-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (914491, 129, '2020-01-28', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (914492, 129, '2020-01-29', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (914493, 129, '2020-01-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (914494, 129, '2020-01-31', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (914495, 129, '2020-02-01', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (914496, 129, '2020-02-02', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (914497, 129, '2020-02-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (914498, 129, '2020-02-04', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (914499, 129, '2020-02-05', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079262, 115, '2020-04-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079263, 115, '2020-04-11', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079264, 115, '2020-04-12', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079265, 115, '2020-04-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079266, 115, '2020-04-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (914500, 129, '2020-02-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (914501, 129, '2020-02-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (914502, 129, '2020-02-08', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (914503, 129, '2020-02-09', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (914504, 129, '2020-02-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (914505, 129, '2020-02-11', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (914506, 129, '2020-02-12', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (914507, 129, '2020-02-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (914508, 129, '2020-02-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (914509, 129, '2020-02-15', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (914510, 129, '2020-02-16', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (914511, 129, '2020-02-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (914512, 129, '2020-02-18', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (914513, 129, '2020-02-19', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (914514, 129, '2020-02-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (914515, 129, '2020-02-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (914516, 129, '2020-02-22', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1074877, 143, '2020-01-22', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1074878, 143, '2020-01-23', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1074879, 143, '2020-01-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1074880, 143, '2020-01-25', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1074881, 143, '2020-01-26', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1074882, 143, '2020-01-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1074883, 143, '2020-01-28', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1074884, 143, '2020-01-29', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1074885, 143, '2020-01-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1074886, 143, '2020-01-31', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079160, 146, '2020-02-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079161, 146, '2020-02-25', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079162, 146, '2020-02-26', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079163, 146, '2020-02-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079164, 146, '2020-02-28', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079165, 146, '2020-02-29', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079267, 115, '2020-04-15', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079268, 115, '2020-04-16', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079269, 115, '2020-04-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079270, 115, '2020-04-18', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079271, 115, '2020-04-19', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079272, 114, '2020-02-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079273, 114, '2020-02-25', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079274, 114, '2020-02-26', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079275, 114, '2020-02-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079276, 114, '2020-02-28', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079277, 114, '2020-02-29', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079278, 114, '2020-03-01', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (988776, 146, '2020-01-01', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (988777, 146, '2020-01-02', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (988778, 146, '2020-01-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (988779, 146, '2020-01-04', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (988780, 146, '2020-01-05', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (988781, 146, '2020-01-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (988782, 146, '2020-01-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (988783, 146, '2020-01-08', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (988784, 146, '2020-01-09', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (988785, 146, '2020-01-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (988786, 146, '2020-01-11', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (988787, 146, '2020-01-12', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079279, 114, '2020-03-02', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079280, 114, '2020-03-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079281, 114, '2020-03-04', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079282, 114, '2020-03-05', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079283, 114, '2020-03-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (988788, 146, '2020-01-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (988789, 146, '2020-01-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079284, 114, '2020-03-07', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (988790, 146, '2020-01-15', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (988791, 146, '2020-01-16', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079285, 114, '2020-03-08', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (988792, 146, '2020-01-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (988793, 146, '2020-01-18', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079286, 114, '2020-03-09', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (988794, 146, '2020-01-19', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (988795, 146, '2020-01-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (988796, 146, '2020-01-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (988806, 146, '2020-01-31', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (988807, 146, '2020-02-01', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (988808, 146, '2020-02-02', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (988809, 146, '2020-02-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (988810, 146, '2020-02-04', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (988811, 146, '2020-02-05', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (988812, 146, '2020-02-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (988813, 146, '2020-02-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (988814, 146, '2020-02-08', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (988815, 146, '2020-02-09', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (988816, 146, '2020-02-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (988817, 146, '2020-02-11', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (988818, 146, '2020-02-12', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (988819, 146, '2020-02-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (988820, 146, '2020-02-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (988821, 146, '2020-02-15', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (988822, 146, '2020-02-16', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (988823, 146, '2020-02-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (988824, 146, '2020-02-18', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079287, 114, '2020-03-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (988825, 146, '2020-02-19', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (988826, 146, '2020-02-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079288, 114, '2020-03-11', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (988827, 146, '2020-02-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (988828, 146, '2020-02-22', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079289, 114, '2020-03-12', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (988829, 146, '2020-02-23', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079290, 114, '2020-03-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079291, 114, '2020-03-14', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079292, 114, '2020-03-15', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079293, 114, '2020-03-16', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079294, 114, '2020-03-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079295, 114, '2020-03-18', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079296, 114, '2020-03-19', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079297, 114, '2020-03-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079298, 114, '2020-03-21', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079299, 114, '2020-03-22', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079300, 114, '2020-03-23', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079301, 114, '2020-03-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079302, 114, '2020-03-25', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079303, 114, '2020-03-26', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079304, 114, '2020-03-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079305, 114, '2020-03-28', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079306, 114, '2020-03-29', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079307, 114, '2020-03-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079308, 114, '2020-03-31', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079309, 114, '2020-04-01', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079310, 114, '2020-04-02', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079311, 114, '2020-04-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079312, 114, '2020-04-04', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079313, 114, '2020-04-05', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079314, 114, '2020-04-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079315, 114, '2020-04-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079316, 114, '2020-04-08', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079317, 114, '2020-04-09', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079318, 114, '2020-04-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079319, 114, '2020-04-11', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079320, 114, '2020-04-12', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079321, 114, '2020-04-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079322, 114, '2020-04-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079323, 114, '2020-04-15', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079324, 114, '2020-04-16', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079325, 114, '2020-04-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079326, 114, '2020-04-18', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079327, 114, '2020-04-19', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079328, 112, '2020-02-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079329, 112, '2020-02-25', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079330, 112, '2020-02-26', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079331, 112, '2020-02-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079332, 112, '2020-02-28', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079333, 112, '2020-02-29', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079334, 112, '2020-03-01', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079335, 112, '2020-03-02', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079336, 112, '2020-03-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079337, 112, '2020-03-04', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079338, 112, '2020-03-05', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079339, 112, '2020-03-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079340, 112, '2020-03-07', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079341, 112, '2020-03-08', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079342, 112, '2020-03-09', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079343, 112, '2020-03-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079344, 112, '2020-03-11', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079345, 112, '2020-03-12', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079346, 112, '2020-03-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079347, 112, '2020-03-14', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079348, 112, '2020-03-15', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079349, 112, '2020-03-16', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079350, 112, '2020-03-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079351, 112, '2020-03-18', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079352, 112, '2020-03-19', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079353, 112, '2020-03-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079354, 112, '2020-03-21', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079355, 112, '2020-03-22', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079356, 112, '2020-03-23', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079357, 112, '2020-03-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079358, 112, '2020-03-25', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079359, 112, '2020-03-26', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079360, 112, '2020-03-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079361, 112, '2020-03-28', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079362, 112, '2020-03-29', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079363, 112, '2020-03-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079364, 112, '2020-03-31', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079365, 112, '2020-04-01', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079366, 112, '2020-04-02', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079367, 112, '2020-04-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079368, 112, '2020-04-04', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079369, 112, '2020-04-05', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079370, 112, '2020-04-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079371, 112, '2020-04-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079372, 112, '2020-04-08', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079373, 112, '2020-04-09', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079374, 112, '2020-04-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079375, 112, '2020-04-11', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079376, 112, '2020-04-12', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079377, 112, '2020-04-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079378, 112, '2020-04-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079379, 112, '2020-04-15', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079380, 112, '2020-04-16', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079381, 112, '2020-04-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079382, 112, '2020-04-18', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079383, 112, '2020-04-19', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079384, 108, '2020-02-24', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079385, 108, '2020-02-25', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079386, 108, '2020-02-26', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079387, 108, '2020-02-27', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079388, 108, '2020-02-28', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079389, 108, '2020-02-29', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079390, 108, '2020-03-01', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079391, 108, '2020-03-02', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079392, 108, '2020-03-03', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079393, 108, '2020-03-04', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079394, 108, '2020-03-05', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079395, 108, '2020-03-06', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079396, 108, '2020-03-07', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079397, 108, '2020-03-08', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079398, 108, '2020-03-09', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079399, 108, '2020-03-10', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079400, 108, '2020-03-11', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079401, 108, '2020-03-12', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079402, 108, '2020-03-13', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079403, 108, '2020-03-14', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079404, 108, '2020-03-15', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079405, 108, '2020-03-16', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079406, 108, '2020-03-17', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079407, 108, '2020-03-18', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079408, 108, '2020-03-19', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079409, 108, '2020-03-20', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079410, 108, '2020-03-21', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079411, 108, '2020-03-22', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079412, 108, '2020-03-23', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079413, 108, '2020-03-24', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079414, 108, '2020-03-25', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079415, 108, '2020-03-26', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079416, 108, '2020-03-27', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079417, 108, '2020-03-28', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079418, 108, '2020-03-29', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079419, 108, '2020-03-30', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079420, 108, '2020-03-31', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079421, 108, '2020-04-01', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079422, 108, '2020-04-02', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079423, 108, '2020-04-03', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079424, 108, '2020-04-04', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079425, 108, '2020-04-05', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079426, 108, '2020-04-06', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079427, 108, '2020-04-07', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079428, 108, '2020-04-08', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079429, 108, '2020-04-09', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079430, 108, '2020-04-10', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079431, 108, '2020-04-11', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079432, 108, '2020-04-12', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079433, 108, '2020-04-13', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079434, 108, '2020-04-14', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079435, 108, '2020-04-15', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079436, 108, '2020-04-16', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079437, 108, '2020-04-17', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079438, 108, '2020-04-18', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079439, 108, '2020-04-19', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079440, 135, '2020-02-24', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079441, 135, '2020-02-25', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079442, 135, '2020-02-26', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079443, 135, '2020-02-27', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079444, 135, '2020-02-28', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079445, 135, '2020-02-29', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079446, 135, '2020-03-01', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079447, 135, '2020-03-02', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079448, 135, '2020-03-03', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079449, 135, '2020-03-04', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079450, 135, '2020-03-05', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079451, 135, '2020-03-06', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079452, 135, '2020-03-07', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079453, 135, '2020-03-08', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079454, 135, '2020-03-09', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079455, 135, '2020-03-10', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079456, 135, '2020-03-11', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079457, 135, '2020-03-12', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079458, 135, '2020-03-13', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079459, 135, '2020-03-14', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079460, 135, '2020-03-15', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079461, 135, '2020-03-16', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079462, 135, '2020-03-17', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079463, 135, '2020-03-18', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079464, 135, '2020-03-19', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079465, 135, '2020-03-20', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079466, 135, '2020-03-21', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079467, 135, '2020-03-22', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079468, 135, '2020-03-23', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079469, 135, '2020-03-24', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079470, 135, '2020-03-25', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079471, 135, '2020-03-26', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079472, 135, '2020-03-27', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079473, 135, '2020-03-28', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079474, 135, '2020-03-29', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079475, 135, '2020-03-30', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079476, 135, '2020-03-31', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079477, 135, '2020-04-01', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079478, 135, '2020-04-02', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079479, 135, '2020-04-03', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079480, 135, '2020-04-04', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079481, 135, '2020-04-05', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079482, 135, '2020-04-06', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079483, 135, '2020-04-07', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079484, 135, '2020-04-08', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079485, 135, '2020-04-09', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079486, 135, '2020-04-10', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079487, 135, '2020-04-11', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079488, 135, '2020-04-12', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079489, 135, '2020-04-13', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079490, 135, '2020-04-14', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079491, 135, '2020-04-15', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079492, 135, '2020-04-16', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079493, 135, '2020-04-17', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079494, 135, '2020-04-18', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079495, 135, '2020-04-19', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079496, 127, '2020-02-24', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079497, 127, '2020-02-25', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079498, 127, '2020-02-26', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079499, 127, '2020-02-27', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079500, 127, '2020-02-28', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079501, 127, '2020-02-29', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079502, 127, '2020-03-01', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079503, 127, '2020-03-02', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079504, 127, '2020-03-03', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079505, 127, '2020-03-04', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079506, 127, '2020-03-05', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079507, 127, '2020-03-06', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079508, 127, '2020-03-07', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079509, 127, '2020-03-08', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079510, 127, '2020-03-09', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079511, 127, '2020-03-10', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079512, 127, '2020-03-11', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079513, 127, '2020-03-12', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079514, 127, '2020-03-13', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079515, 127, '2020-03-14', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079516, 127, '2020-03-15', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079517, 127, '2020-03-16', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079518, 127, '2020-03-17', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079519, 127, '2020-03-18', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079520, 127, '2020-03-19', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079521, 127, '2020-03-20', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079522, 127, '2020-03-21', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079523, 127, '2020-03-22', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079524, 127, '2020-03-23', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079525, 127, '2020-03-24', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079526, 127, '2020-03-25', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079527, 127, '2020-03-26', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079528, 127, '2020-03-27', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079529, 127, '2020-03-28', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079530, 127, '2020-03-29', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079531, 127, '2020-03-30', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079532, 127, '2020-03-31', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079533, 127, '2020-04-01', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079534, 127, '2020-04-02', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079535, 127, '2020-04-03', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079536, 127, '2020-04-04', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079537, 127, '2020-04-05', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079538, 127, '2020-04-06', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079539, 127, '2020-04-07', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079540, 127, '2020-04-08', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079541, 127, '2020-04-09', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079542, 127, '2020-04-10', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079543, 127, '2020-04-11', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079544, 127, '2020-04-12', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079545, 127, '2020-04-13', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079546, 127, '2020-04-14', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079547, 127, '2020-04-15', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079548, 127, '2020-04-16', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079549, 127, '2020-04-17', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079550, 127, '2020-04-18', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079551, 127, '2020-04-19', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079552, 149, '2020-02-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079553, 149, '2020-02-25', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079554, 149, '2020-02-26', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079555, 149, '2020-02-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079556, 149, '2020-02-28', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079557, 149, '2020-02-29', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079558, 149, '2020-03-01', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079559, 149, '2020-03-02', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079560, 149, '2020-03-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079561, 149, '2020-03-04', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079562, 149, '2020-03-05', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079563, 149, '2020-03-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079564, 149, '2020-03-07', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079565, 149, '2020-03-08', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079566, 149, '2020-03-09', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079567, 149, '2020-03-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079568, 149, '2020-03-11', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079569, 149, '2020-03-12', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079570, 149, '2020-03-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079571, 149, '2020-03-14', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079572, 149, '2020-03-15', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079573, 149, '2020-03-16', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079574, 149, '2020-03-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079575, 149, '2020-03-18', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079576, 149, '2020-03-19', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079577, 149, '2020-03-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079578, 149, '2020-03-21', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079579, 149, '2020-03-22', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079580, 149, '2020-03-23', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079581, 149, '2020-03-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (990928, 132, '2020-01-01', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (990929, 132, '2020-01-02', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (990930, 132, '2020-01-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (990931, 132, '2020-01-04', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (990932, 132, '2020-01-05', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (990933, 132, '2020-01-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (990934, 132, '2020-01-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (990935, 132, '2020-01-08', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (990936, 132, '2020-01-09', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (990937, 132, '2020-01-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (990938, 132, '2020-01-11', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (990939, 132, '2020-01-12', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (990940, 132, '2020-01-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (990941, 132, '2020-01-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (990942, 132, '2020-01-15', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079582, 149, '2020-03-25', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079583, 149, '2020-03-26', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079584, 149, '2020-03-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079585, 149, '2020-03-28', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079586, 149, '2020-03-29', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079587, 149, '2020-03-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079588, 149, '2020-03-31', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079589, 149, '2020-04-01', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079590, 149, '2020-04-02', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079591, 149, '2020-04-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079592, 149, '2020-04-04', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079593, 149, '2020-04-05', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079594, 149, '2020-04-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079595, 149, '2020-04-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079596, 149, '2020-04-08', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079597, 149, '2020-04-09', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079598, 149, '2020-04-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079599, 149, '2020-04-11', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079600, 149, '2020-04-12', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079601, 149, '2020-04-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079602, 149, '2020-04-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079603, 149, '2020-04-15', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079604, 149, '2020-04-16', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079605, 149, '2020-04-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079606, 149, '2020-04-18', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079607, 149, '2020-04-19', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079608, 103, '2020-02-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079609, 103, '2020-02-25', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079610, 103, '2020-02-26', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079611, 103, '2020-02-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079612, 103, '2020-02-28', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079613, 103, '2020-02-29', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079614, 103, '2020-03-01', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079615, 103, '2020-03-02', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079616, 103, '2020-03-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079617, 103, '2020-03-04', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079618, 103, '2020-03-05', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079619, 103, '2020-03-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079620, 103, '2020-03-07', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079621, 103, '2020-03-08', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079622, 103, '2020-03-09', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079623, 103, '2020-03-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079624, 103, '2020-03-11', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079625, 103, '2020-03-12', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079626, 103, '2020-03-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079627, 103, '2020-03-14', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079628, 103, '2020-03-15', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079629, 103, '2020-03-16', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079630, 103, '2020-03-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079631, 103, '2020-03-18', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079632, 103, '2020-03-19', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079633, 103, '2020-03-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079634, 103, '2020-03-21', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079635, 103, '2020-03-22', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079636, 103, '2020-03-23', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079637, 103, '2020-03-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079638, 103, '2020-03-25', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079639, 103, '2020-03-26', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079640, 103, '2020-03-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079641, 103, '2020-03-28', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079642, 103, '2020-03-29', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079643, 103, '2020-03-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079644, 103, '2020-03-31', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079645, 103, '2020-04-01', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079646, 103, '2020-04-02', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079647, 103, '2020-04-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079648, 103, '2020-04-04', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079649, 103, '2020-04-05', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079650, 103, '2020-04-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079651, 103, '2020-04-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079652, 103, '2020-04-08', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079653, 103, '2020-04-09', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079654, 103, '2020-04-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079655, 103, '2020-04-11', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079656, 103, '2020-04-12', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079657, 103, '2020-04-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079658, 103, '2020-04-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079659, 103, '2020-04-15', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079660, 103, '2020-04-16', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079661, 103, '2020-04-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079662, 103, '2020-04-18', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079663, 103, '2020-04-19', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079664, 121, '2020-02-24', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079665, 121, '2020-02-25', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079666, 121, '2020-02-26', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079667, 121, '2020-02-27', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079668, 121, '2020-02-28', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079669, 121, '2020-02-29', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079670, 121, '2020-03-01', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079671, 121, '2020-03-02', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079672, 121, '2020-03-03', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079673, 121, '2020-03-04', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079674, 121, '2020-03-05', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079675, 121, '2020-03-06', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079676, 121, '2020-03-07', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079677, 121, '2020-03-08', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079678, 121, '2020-03-09', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079679, 121, '2020-03-10', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079680, 121, '2020-03-11', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079681, 121, '2020-03-12', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079682, 121, '2020-03-13', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079683, 121, '2020-03-14', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079684, 121, '2020-03-15', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079685, 121, '2020-03-16', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079686, 121, '2020-03-17', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079687, 121, '2020-03-18', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079688, 121, '2020-03-19', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079689, 121, '2020-03-20', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079690, 121, '2020-03-21', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079691, 121, '2020-03-22', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079692, 121, '2020-03-23', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079693, 121, '2020-03-24', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079694, 121, '2020-03-25', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079695, 121, '2020-03-26', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079696, 121, '2020-03-27', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079697, 121, '2020-03-28', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079698, 121, '2020-03-29', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079699, 121, '2020-03-30', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079700, 121, '2020-03-31', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079701, 121, '2020-04-01', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079702, 121, '2020-04-02', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079703, 121, '2020-04-03', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079704, 121, '2020-04-04', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079705, 121, '2020-04-05', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079706, 121, '2020-04-06', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079707, 121, '2020-04-07', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079708, 121, '2020-04-08', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079709, 121, '2020-04-09', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079710, 121, '2020-04-10', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079711, 121, '2020-04-11', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079712, 121, '2020-04-12', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079713, 121, '2020-04-13', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079714, 121, '2020-04-14', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079715, 121, '2020-04-15', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079716, 121, '2020-04-16', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079717, 121, '2020-04-17', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079718, 121, '2020-04-18', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079719, 121, '2020-04-19', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079720, 125, '2020-02-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079721, 125, '2020-02-25', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079722, 125, '2020-02-26', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079723, 125, '2020-02-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079724, 125, '2020-02-28', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079725, 125, '2020-02-29', NULL, NULL, NULL, NULL, NULL, '00:00:00', '03:20:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079726, 125, '2020-03-01', NULL, NULL, NULL, NULL, NULL, '00:00:00', '03:20:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079727, 125, '2020-03-02', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079728, 125, '2020-03-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079729, 125, '2020-03-04', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079730, 125, '2020-03-05', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079731, 125, '2020-03-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079732, 125, '2020-03-07', NULL, NULL, NULL, NULL, NULL, '00:00:00', '03:20:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079733, 125, '2020-03-08', NULL, NULL, NULL, NULL, NULL, '00:00:00', '03:20:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079734, 125, '2020-03-09', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079735, 125, '2020-03-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079736, 125, '2020-03-11', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079737, 125, '2020-03-12', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079738, 125, '2020-03-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079739, 125, '2020-03-14', NULL, NULL, NULL, NULL, NULL, '00:00:00', '03:20:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079740, 125, '2020-03-15', NULL, NULL, NULL, NULL, NULL, '00:00:00', '03:20:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079741, 125, '2020-03-16', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079742, 125, '2020-03-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079743, 125, '2020-03-18', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079744, 125, '2020-03-19', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079745, 125, '2020-03-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079746, 125, '2020-03-21', NULL, NULL, NULL, NULL, NULL, '00:00:00', '03:20:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079747, 125, '2020-03-22', NULL, NULL, NULL, NULL, NULL, '00:00:00', '03:20:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079748, 125, '2020-03-23', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079749, 125, '2020-03-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079750, 125, '2020-03-25', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079751, 125, '2020-03-26', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079752, 125, '2020-03-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079753, 125, '2020-03-28', NULL, NULL, NULL, NULL, NULL, '00:00:00', '03:20:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079754, 125, '2020-03-29', NULL, NULL, NULL, NULL, NULL, '00:00:00', '03:20:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079755, 125, '2020-03-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079756, 125, '2020-03-31', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079757, 125, '2020-04-01', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079758, 125, '2020-04-02', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079759, 125, '2020-04-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079760, 125, '2020-04-04', NULL, NULL, NULL, NULL, NULL, '00:00:00', '03:20:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079761, 125, '2020-04-05', NULL, NULL, NULL, NULL, NULL, '00:00:00', '03:20:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079762, 125, '2020-04-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079763, 125, '2020-04-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079764, 125, '2020-04-08', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079765, 125, '2020-04-09', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079766, 125, '2020-04-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079767, 125, '2020-04-11', NULL, NULL, NULL, NULL, NULL, '00:00:00', '03:20:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079768, 125, '2020-04-12', NULL, NULL, NULL, NULL, NULL, '00:00:00', '03:20:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079769, 125, '2020-04-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079770, 125, '2020-04-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079771, 125, '2020-04-15', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079772, 125, '2020-04-16', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079773, 125, '2020-04-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079774, 125, '2020-04-18', NULL, NULL, NULL, NULL, NULL, '00:00:00', '03:20:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079775, 125, '2020-04-19', NULL, NULL, NULL, NULL, NULL, '00:00:00', '03:20:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079776, 119, '2020-02-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079777, 119, '2020-02-25', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079778, 119, '2020-02-26', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079779, 119, '2020-02-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079780, 119, '2020-02-28', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079781, 119, '2020-02-29', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079782, 119, '2020-03-01', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079783, 119, '2020-03-02', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079784, 119, '2020-03-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079785, 119, '2020-03-04', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079786, 119, '2020-03-05', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079787, 119, '2020-03-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079788, 119, '2020-03-07', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079789, 119, '2020-03-08', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079790, 119, '2020-03-09', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079791, 119, '2020-03-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079792, 119, '2020-03-11', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079793, 119, '2020-03-12', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079794, 119, '2020-03-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079795, 119, '2020-03-14', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079796, 119, '2020-03-15', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079797, 119, '2020-03-16', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079798, 119, '2020-03-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079799, 119, '2020-03-18', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079800, 119, '2020-03-19', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079801, 119, '2020-03-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079802, 119, '2020-03-21', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079803, 119, '2020-03-22', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079804, 119, '2020-03-23', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079805, 119, '2020-03-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079806, 119, '2020-03-25', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079807, 119, '2020-03-26', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079808, 119, '2020-03-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079809, 119, '2020-03-28', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079810, 119, '2020-03-29', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079811, 119, '2020-03-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079812, 119, '2020-03-31', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079813, 119, '2020-04-01', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079814, 119, '2020-04-02', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079815, 119, '2020-04-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079816, 119, '2020-04-04', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079817, 119, '2020-04-05', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079818, 119, '2020-04-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079819, 119, '2020-04-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079820, 119, '2020-04-08', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079821, 119, '2020-04-09', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079822, 119, '2020-04-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079823, 119, '2020-04-11', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079824, 119, '2020-04-12', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079825, 119, '2020-04-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079826, 119, '2020-04-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079827, 119, '2020-04-15', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079828, 119, '2020-04-16', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079829, 119, '2020-04-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079830, 119, '2020-04-18', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079831, 119, '2020-04-19', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079832, 113, '2020-02-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079833, 113, '2020-02-25', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079834, 113, '2020-02-26', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079835, 113, '2020-02-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079836, 113, '2020-02-28', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079837, 113, '2020-02-29', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079838, 113, '2020-03-01', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079839, 113, '2020-03-02', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079840, 113, '2020-03-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079841, 113, '2020-03-04', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (993134, 115, '2019-12-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (993135, 115, '2019-12-31', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079842, 113, '2020-03-05', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079843, 113, '2020-03-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079844, 113, '2020-03-07', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079845, 113, '2020-03-08', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079846, 113, '2020-03-09', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079847, 113, '2020-03-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079848, 113, '2020-03-11', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079849, 113, '2020-03-12', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079850, 113, '2020-03-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079851, 113, '2020-03-14', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079852, 113, '2020-03-15', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079853, 113, '2020-03-16', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079854, 113, '2020-03-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079855, 113, '2020-03-18', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079856, 113, '2020-03-19', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079857, 113, '2020-03-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079858, 113, '2020-03-21', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079859, 113, '2020-03-22', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079860, 113, '2020-03-23', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079861, 113, '2020-03-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079862, 113, '2020-03-25', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079863, 113, '2020-03-26', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079864, 113, '2020-03-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079865, 113, '2020-03-28', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079866, 113, '2020-03-29', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079867, 113, '2020-03-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079868, 113, '2020-03-31', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079869, 113, '2020-04-01', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079870, 113, '2020-04-02', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079871, 113, '2020-04-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079872, 113, '2020-04-04', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079873, 113, '2020-04-05', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079874, 113, '2020-04-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079875, 113, '2020-04-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079876, 113, '2020-04-08', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079877, 113, '2020-04-09', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079878, 113, '2020-04-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079879, 113, '2020-04-11', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079880, 113, '2020-04-12', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079881, 113, '2020-04-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079882, 113, '2020-04-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079883, 113, '2020-04-15', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079884, 113, '2020-04-16', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079885, 113, '2020-04-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079886, 113, '2020-04-18', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079887, 113, '2020-04-19', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079888, 147, '2020-02-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (993080, 115, '2020-01-01', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (993081, 115, '2020-01-02', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (993082, 115, '2020-01-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (993083, 115, '2020-01-04', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (993084, 115, '2020-01-05', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (993085, 115, '2020-01-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (993086, 115, '2020-01-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (993087, 115, '2020-01-08', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (993088, 115, '2020-01-09', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (993089, 115, '2020-01-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (993090, 115, '2020-01-11', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (993091, 115, '2020-01-12', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (993092, 115, '2020-01-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (993093, 115, '2020-01-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079889, 147, '2020-02-25', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079890, 147, '2020-02-26', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079891, 147, '2020-02-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079892, 147, '2020-02-28', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (993094, 115, '2020-01-15', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (993095, 115, '2020-01-16', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079893, 147, '2020-02-29', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (993096, 115, '2020-01-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (993097, 115, '2020-01-18', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079894, 147, '2020-03-01', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (993098, 115, '2020-01-19', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (993099, 115, '2020-01-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079895, 147, '2020-03-02', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (993100, 115, '2020-01-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (993101, 115, '2020-01-22', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079896, 147, '2020-03-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (993108, 115, '2020-01-29', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (993109, 115, '2020-01-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (993110, 115, '2020-01-31', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (993111, 115, '2020-02-01', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (993112, 115, '2020-02-02', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (993113, 115, '2020-02-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (993114, 115, '2020-02-04', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (993115, 115, '2020-02-05', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (993116, 115, '2020-02-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (993117, 115, '2020-02-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (993118, 115, '2020-02-08', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (993119, 115, '2020-02-09', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (993120, 115, '2020-02-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (993121, 115, '2020-02-11', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (993122, 115, '2020-02-12', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079897, 147, '2020-03-04', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (993123, 115, '2020-02-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (993124, 115, '2020-02-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079898, 147, '2020-03-05', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (993125, 115, '2020-02-15', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (993126, 115, '2020-02-16', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079899, 147, '2020-03-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (993127, 115, '2020-02-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (993128, 115, '2020-02-18', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079900, 147, '2020-03-07', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (993129, 115, '2020-02-19', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (993130, 115, '2020-02-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079901, 147, '2020-03-08', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079902, 147, '2020-03-09', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079903, 147, '2020-03-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079904, 147, '2020-03-11', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079905, 147, '2020-03-12', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079906, 147, '2020-03-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079907, 147, '2020-03-14', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079908, 147, '2020-03-15', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079909, 147, '2020-03-16', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079910, 147, '2020-03-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079911, 147, '2020-03-18', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079912, 147, '2020-03-19', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079913, 147, '2020-03-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079914, 147, '2020-03-21', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079915, 147, '2020-03-22', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079916, 147, '2020-03-23', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079917, 147, '2020-03-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079918, 147, '2020-03-25', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079919, 147, '2020-03-26', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079920, 147, '2020-03-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079921, 147, '2020-03-28', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079922, 147, '2020-03-29', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079923, 147, '2020-03-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079924, 147, '2020-03-31', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079925, 147, '2020-04-01', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079926, 147, '2020-04-02', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079927, 147, '2020-04-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079928, 147, '2020-04-04', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079929, 147, '2020-04-05', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079930, 147, '2020-04-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079931, 147, '2020-04-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079932, 147, '2020-04-08', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079933, 147, '2020-04-09', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079934, 147, '2020-04-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079935, 147, '2020-04-11', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079936, 147, '2020-04-12', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079937, 147, '2020-04-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079938, 147, '2020-04-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079939, 147, '2020-04-15', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079940, 147, '2020-04-16', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079941, 147, '2020-04-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079942, 147, '2020-04-18', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079943, 147, '2020-04-19', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079944, 131, '2020-02-24', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079945, 131, '2020-02-25', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079946, 131, '2020-02-26', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079947, 131, '2020-02-27', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079948, 131, '2020-02-28', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079949, 131, '2020-02-29', NULL, NULL, NULL, NULL, NULL, '00:00:00', '03:20:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079950, 131, '2020-03-01', NULL, NULL, NULL, NULL, NULL, '00:00:00', '03:20:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079951, 131, '2020-03-02', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079952, 131, '2020-03-03', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079953, 131, '2020-03-04', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079954, 131, '2020-03-05', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079955, 131, '2020-03-06', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079956, 131, '2020-03-07', NULL, NULL, NULL, NULL, NULL, '00:00:00', '03:20:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079957, 131, '2020-03-08', NULL, NULL, NULL, NULL, NULL, '00:00:00', '03:20:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079958, 131, '2020-03-09', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079959, 131, '2020-03-10', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079960, 131, '2020-03-11', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079961, 131, '2020-03-12', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079962, 131, '2020-03-13', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079963, 131, '2020-03-14', NULL, NULL, NULL, NULL, NULL, '00:00:00', '03:20:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079964, 131, '2020-03-15', NULL, NULL, NULL, NULL, NULL, '00:00:00', '03:20:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079965, 131, '2020-03-16', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079966, 131, '2020-03-17', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079967, 131, '2020-03-18', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079968, 131, '2020-03-19', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079969, 131, '2020-03-20', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079970, 131, '2020-03-21', NULL, NULL, NULL, NULL, NULL, '00:00:00', '03:20:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079971, 131, '2020-03-22', NULL, NULL, NULL, NULL, NULL, '00:00:00', '03:20:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079972, 131, '2020-03-23', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079973, 131, '2020-03-24', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079974, 131, '2020-03-25', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079975, 131, '2020-03-26', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079976, 131, '2020-03-27', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079977, 131, '2020-03-28', NULL, NULL, NULL, NULL, NULL, '00:00:00', '03:20:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079978, 131, '2020-03-29', NULL, NULL, NULL, NULL, NULL, '00:00:00', '03:20:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079979, 131, '2020-03-30', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079980, 131, '2020-03-31', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079981, 131, '2020-04-01', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079982, 131, '2020-04-02', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079983, 131, '2020-04-03', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079984, 131, '2020-04-04', NULL, NULL, NULL, NULL, NULL, '00:00:00', '03:20:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079985, 131, '2020-04-05', NULL, NULL, NULL, NULL, NULL, '00:00:00', '03:20:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079986, 131, '2020-04-06', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079987, 131, '2020-04-07', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079988, 131, '2020-04-08', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079989, 131, '2020-04-09', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079990, 131, '2020-04-10', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079991, 131, '2020-04-11', NULL, NULL, NULL, NULL, NULL, '00:00:00', '03:20:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079992, 131, '2020-04-12', NULL, NULL, NULL, NULL, NULL, '00:00:00', '03:20:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079993, 131, '2020-04-13', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079994, 131, '2020-04-14', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079995, 131, '2020-04-15', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079996, 131, '2020-04-16', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079997, 131, '2020-04-17', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079998, 131, '2020-04-18', NULL, NULL, NULL, NULL, NULL, '00:00:00', '03:20:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079999, 131, '2020-04-19', NULL, NULL, NULL, NULL, NULL, '00:00:00', '03:20:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080000, 104, '2020-02-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '05:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080001, 104, '2020-02-25', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '05:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080002, 104, '2020-02-26', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '05:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080003, 104, '2020-02-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '05:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080004, 104, '2020-02-28', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '05:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080005, 104, '2020-02-29', NULL, NULL, NULL, NULL, NULL, '00:00:00', '05:00:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080006, 104, '2020-03-01', NULL, NULL, NULL, NULL, NULL, '00:00:00', '05:00:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080007, 104, '2020-03-02', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '05:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080008, 104, '2020-03-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '05:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080009, 104, '2020-03-04', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '05:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080010, 104, '2020-03-05', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '05:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080011, 104, '2020-03-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '05:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080012, 104, '2020-03-07', NULL, NULL, NULL, NULL, NULL, '00:00:00', '05:00:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080013, 104, '2020-03-08', NULL, NULL, NULL, NULL, NULL, '00:00:00', '05:00:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080014, 104, '2020-03-09', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '05:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080015, 104, '2020-03-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '05:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080016, 104, '2020-03-11', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '05:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080017, 104, '2020-03-12', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '05:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080018, 104, '2020-03-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '05:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080019, 104, '2020-03-14', NULL, NULL, NULL, NULL, NULL, '00:00:00', '05:00:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080020, 104, '2020-03-15', NULL, NULL, NULL, NULL, NULL, '00:00:00', '05:00:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080021, 104, '2020-03-16', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '05:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080022, 104, '2020-03-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '05:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080023, 104, '2020-03-18', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '05:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080024, 104, '2020-03-19', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '05:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080025, 104, '2020-03-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '05:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080026, 104, '2020-03-21', NULL, NULL, NULL, NULL, NULL, '00:00:00', '05:00:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080027, 104, '2020-03-22', NULL, NULL, NULL, NULL, NULL, '00:00:00', '05:00:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080028, 104, '2020-03-23', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '05:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080029, 104, '2020-03-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '05:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080030, 104, '2020-03-25', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '05:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080031, 104, '2020-03-26', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '05:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080032, 104, '2020-03-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '05:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080033, 104, '2020-03-28', NULL, NULL, NULL, NULL, NULL, '00:00:00', '05:00:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080034, 104, '2020-03-29', NULL, NULL, NULL, NULL, NULL, '00:00:00', '05:00:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080035, 104, '2020-03-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '05:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080036, 104, '2020-03-31', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '05:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080037, 104, '2020-04-01', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '05:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080038, 104, '2020-04-02', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '05:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080039, 104, '2020-04-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '05:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080040, 104, '2020-04-04', NULL, NULL, NULL, NULL, NULL, '00:00:00', '05:00:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080041, 104, '2020-04-05', NULL, NULL, NULL, NULL, NULL, '00:00:00', '05:00:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080042, 104, '2020-04-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '05:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080043, 104, '2020-04-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '05:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080044, 104, '2020-04-08', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '05:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080045, 104, '2020-04-09', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '05:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080046, 104, '2020-04-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '05:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080047, 104, '2020-04-11', NULL, NULL, NULL, NULL, NULL, '00:00:00', '05:00:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080048, 104, '2020-04-12', NULL, NULL, NULL, NULL, NULL, '00:00:00', '05:00:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080049, 104, '2020-04-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '05:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080050, 104, '2020-04-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '05:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080051, 104, '2020-04-15', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '05:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080052, 104, '2020-04-16', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '05:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080053, 104, '2020-04-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '05:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080054, 104, '2020-04-18', NULL, NULL, NULL, NULL, NULL, '00:00:00', '05:00:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080055, 104, '2020-04-19', NULL, NULL, NULL, NULL, NULL, '00:00:00', '05:00:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080056, 151, '2020-02-24', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080057, 151, '2020-02-25', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080058, 151, '2020-02-26', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080059, 151, '2020-02-27', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080060, 151, '2020-02-28', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080061, 151, '2020-02-29', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080062, 151, '2020-03-01', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080063, 151, '2020-03-02', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080064, 151, '2020-03-03', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080065, 151, '2020-03-04', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080066, 151, '2020-03-05', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080067, 151, '2020-03-06', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080068, 151, '2020-03-07', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080069, 151, '2020-03-08', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080070, 151, '2020-03-09', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080071, 151, '2020-03-10', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080072, 151, '2020-03-11', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080073, 151, '2020-03-12', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080074, 151, '2020-03-13', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080075, 151, '2020-03-14', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080076, 151, '2020-03-15', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080077, 151, '2020-03-16', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080078, 151, '2020-03-17', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080079, 151, '2020-03-18', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080080, 151, '2020-03-19', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080081, 151, '2020-03-20', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080082, 151, '2020-03-21', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080083, 151, '2020-03-22', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080084, 151, '2020-03-23', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080085, 151, '2020-03-24', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080086, 151, '2020-03-25', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080087, 151, '2020-03-26', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080088, 151, '2020-03-27', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080089, 151, '2020-03-28', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080090, 151, '2020-03-29', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080091, 151, '2020-03-30', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080092, 151, '2020-03-31', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080093, 151, '2020-04-01', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080094, 151, '2020-04-02', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080095, 151, '2020-04-03', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080096, 151, '2020-04-04', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080097, 151, '2020-04-05', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080098, 151, '2020-04-06', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080099, 151, '2020-04-07', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080100, 151, '2020-04-08', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080101, 151, '2020-04-09', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080102, 151, '2020-04-10', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080103, 151, '2020-04-11', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080104, 151, '2020-04-12', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080105, 151, '2020-04-13', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080106, 151, '2020-04-14', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080107, 151, '2020-04-15', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080108, 151, '2020-04-16', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080109, 151, '2020-04-17', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080110, 151, '2020-04-18', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080111, 151, '2020-04-19', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080112, 138, '2020-02-24', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080113, 138, '2020-02-25', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080114, 138, '2020-02-26', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080115, 138, '2020-02-27', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080116, 138, '2020-02-28', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080117, 138, '2020-02-29', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080118, 138, '2020-03-01', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080119, 138, '2020-03-02', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080120, 138, '2020-03-03', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080121, 138, '2020-03-04', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080122, 138, '2020-03-05', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080123, 138, '2020-03-06', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080124, 138, '2020-03-07', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080125, 138, '2020-03-08', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080126, 138, '2020-03-09', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080127, 138, '2020-03-10', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080128, 138, '2020-03-11', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080129, 138, '2020-03-12', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080130, 138, '2020-03-13', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080131, 138, '2020-03-14', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080132, 138, '2020-03-15', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080133, 138, '2020-03-16', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080134, 138, '2020-03-17', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080135, 138, '2020-03-18', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080136, 138, '2020-03-19', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080137, 138, '2020-03-20', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080138, 138, '2020-03-21', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080139, 138, '2020-03-22', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080140, 138, '2020-03-23', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080141, 138, '2020-03-24', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080142, 138, '2020-03-25', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080143, 138, '2020-03-26', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080144, 138, '2020-03-27', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080145, 138, '2020-03-28', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080146, 138, '2020-03-29', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080147, 138, '2020-03-30', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080148, 138, '2020-03-31', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080149, 138, '2020-04-01', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080150, 138, '2020-04-02', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080151, 138, '2020-04-03', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080152, 138, '2020-04-04', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080153, 138, '2020-04-05', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080154, 138, '2020-04-06', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080155, 138, '2020-04-07', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080156, 138, '2020-04-08', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080157, 138, '2020-04-09', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080158, 138, '2020-04-10', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080159, 138, '2020-04-11', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080160, 138, '2020-04-12', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080161, 138, '2020-04-13', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080162, 138, '2020-04-14', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080163, 138, '2020-04-15', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080164, 138, '2020-04-16', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080165, 138, '2020-04-17', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080166, 138, '2020-04-18', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080167, 138, '2020-04-19', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080168, 105, '2020-02-24', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080169, 105, '2020-02-25', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080170, 105, '2020-02-26', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080171, 105, '2020-02-27', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080172, 105, '2020-02-28', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080173, 105, '2020-02-29', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080174, 105, '2020-03-01', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080175, 105, '2020-03-02', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080176, 105, '2020-03-03', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080177, 105, '2020-03-04', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080178, 105, '2020-03-05', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080179, 105, '2020-03-06', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080180, 105, '2020-03-07', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080181, 105, '2020-03-08', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080182, 105, '2020-03-09', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080183, 105, '2020-03-10', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080184, 105, '2020-03-11', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080185, 105, '2020-03-12', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080186, 105, '2020-03-13', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080187, 105, '2020-03-14', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080188, 105, '2020-03-15', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080189, 105, '2020-03-16', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080190, 105, '2020-03-17', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080191, 105, '2020-03-18', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080192, 105, '2020-03-19', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080193, 105, '2020-03-20', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080194, 105, '2020-03-21', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080195, 105, '2020-03-22', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080196, 105, '2020-03-23', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080197, 105, '2020-03-24', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080198, 105, '2020-03-25', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080199, 105, '2020-03-26', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080200, 105, '2020-03-27', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080201, 105, '2020-03-28', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080202, 105, '2020-03-29', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080203, 105, '2020-03-30', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080204, 105, '2020-03-31', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080205, 105, '2020-04-01', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080206, 105, '2020-04-02', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080207, 105, '2020-04-03', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080208, 105, '2020-04-04', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080209, 105, '2020-04-05', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080210, 105, '2020-04-06', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080211, 105, '2020-04-07', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080212, 105, '2020-04-08', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080213, 105, '2020-04-09', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080214, 105, '2020-04-10', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080215, 105, '2020-04-11', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080216, 105, '2020-04-12', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080217, 105, '2020-04-13', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080218, 105, '2020-04-14', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080219, 105, '2020-04-15', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080220, 105, '2020-04-16', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080221, 105, '2020-04-17', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080222, 105, '2020-04-18', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080223, 105, '2020-04-19', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080224, 134, '2020-02-24', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080225, 134, '2020-02-25', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080226, 134, '2020-02-26', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080227, 134, '2020-02-27', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080228, 134, '2020-02-28', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080229, 134, '2020-02-29', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080230, 134, '2020-03-01', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080231, 134, '2020-03-02', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080232, 134, '2020-03-03', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080233, 134, '2020-03-04', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080234, 134, '2020-03-05', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080235, 134, '2020-03-06', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080236, 134, '2020-03-07', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080237, 134, '2020-03-08', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080238, 134, '2020-03-09', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080239, 134, '2020-03-10', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080240, 134, '2020-03-11', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080241, 134, '2020-03-12', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080242, 134, '2020-03-13', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080243, 134, '2020-03-14', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080244, 134, '2020-03-15', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080245, 134, '2020-03-16', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080246, 134, '2020-03-17', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080247, 134, '2020-03-18', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080248, 134, '2020-03-19', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080249, 134, '2020-03-20', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080250, 134, '2020-03-21', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080251, 134, '2020-03-22', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080252, 134, '2020-03-23', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080253, 134, '2020-03-24', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080254, 134, '2020-03-25', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080255, 134, '2020-03-26', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080256, 134, '2020-03-27', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080257, 134, '2020-03-28', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080258, 134, '2020-03-29', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080259, 134, '2020-03-30', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080260, 134, '2020-03-31', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080261, 134, '2020-04-01', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080262, 134, '2020-04-02', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080263, 134, '2020-04-03', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080264, 134, '2020-04-04', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080265, 134, '2020-04-05', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080266, 134, '2020-04-06', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080267, 134, '2020-04-07', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080268, 134, '2020-04-08', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080269, 134, '2020-04-09', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080270, 134, '2020-04-10', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080271, 134, '2020-04-11', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080272, 134, '2020-04-12', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080273, 134, '2020-04-13', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080274, 134, '2020-04-14', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080275, 134, '2020-04-15', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080276, 134, '2020-04-16', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080277, 134, '2020-04-17', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080278, 134, '2020-04-18', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080279, 134, '2020-04-19', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080280, 144, '2020-02-24', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080281, 144, '2020-02-25', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080282, 144, '2020-02-26', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080283, 144, '2020-02-27', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080284, 144, '2020-02-28', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080285, 144, '2020-02-29', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080286, 144, '2020-03-01', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080287, 144, '2020-03-02', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080288, 144, '2020-03-03', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080289, 144, '2020-03-04', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080290, 144, '2020-03-05', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080291, 144, '2020-03-06', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080292, 144, '2020-03-07', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080293, 144, '2020-03-08', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080294, 144, '2020-03-09', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080295, 144, '2020-03-10', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080296, 144, '2020-03-11', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080297, 144, '2020-03-12', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080298, 144, '2020-03-13', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080299, 144, '2020-03-14', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080300, 144, '2020-03-15', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080301, 144, '2020-03-16', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080302, 144, '2020-03-17', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080303, 144, '2020-03-18', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080304, 144, '2020-03-19', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080305, 144, '2020-03-20', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080306, 144, '2020-03-21', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080307, 144, '2020-03-22', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080308, 144, '2020-03-23', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080309, 144, '2020-03-24', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080310, 144, '2020-03-25', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080311, 144, '2020-03-26', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080312, 144, '2020-03-27', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080313, 144, '2020-03-28', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080314, 144, '2020-03-29', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080315, 144, '2020-03-30', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080316, 144, '2020-03-31', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080317, 102, '2020-02-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080318, 102, '2020-02-25', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080319, 102, '2020-02-26', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080320, 102, '2020-02-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080321, 102, '2020-02-28', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080322, 102, '2020-02-29', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080323, 102, '2020-03-01', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080324, 102, '2020-03-02', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080325, 102, '2020-03-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080326, 102, '2020-03-04', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080327, 102, '2020-03-05', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080328, 102, '2020-03-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080329, 102, '2020-03-07', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080330, 102, '2020-03-08', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080331, 102, '2020-03-09', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080332, 102, '2020-03-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080333, 102, '2020-03-11', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080334, 102, '2020-03-12', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080335, 102, '2020-03-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080336, 102, '2020-03-14', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080337, 102, '2020-03-15', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080338, 102, '2020-03-16', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080339, 102, '2020-03-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080340, 102, '2020-03-18', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080341, 102, '2020-03-19', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080342, 102, '2020-03-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080343, 102, '2020-03-21', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080344, 102, '2020-03-22', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080345, 102, '2020-03-23', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080346, 102, '2020-03-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080347, 102, '2020-03-25', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080348, 102, '2020-03-26', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080349, 102, '2020-03-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080350, 102, '2020-03-28', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080351, 102, '2020-03-29', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080352, 102, '2020-03-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080353, 102, '2020-03-31', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080354, 102, '2020-04-01', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080355, 102, '2020-04-02', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080356, 102, '2020-04-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080357, 102, '2020-04-04', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080358, 102, '2020-04-05', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080359, 102, '2020-04-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080360, 102, '2020-04-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080361, 102, '2020-04-08', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080362, 102, '2020-04-09', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080363, 102, '2020-04-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080364, 102, '2020-04-11', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080365, 102, '2020-04-12', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080366, 102, '2020-04-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080367, 102, '2020-04-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080368, 102, '2020-04-15', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080369, 102, '2020-04-16', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080370, 102, '2020-04-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080371, 102, '2020-04-18', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080372, 102, '2020-04-19', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080373, 109, '2020-02-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080374, 109, '2020-02-25', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080375, 109, '2020-02-26', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080376, 109, '2020-02-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080377, 109, '2020-02-28', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080378, 109, '2020-02-29', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080379, 109, '2020-03-01', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080380, 109, '2020-03-02', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080381, 109, '2020-03-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080382, 109, '2020-03-04', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080383, 109, '2020-03-05', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080384, 109, '2020-03-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080385, 109, '2020-03-07', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080386, 109, '2020-03-08', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080387, 109, '2020-03-09', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080388, 109, '2020-03-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080389, 109, '2020-03-11', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080390, 109, '2020-03-12', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080391, 109, '2020-03-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080392, 109, '2020-03-14', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080393, 109, '2020-03-15', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080394, 109, '2020-03-16', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080395, 109, '2020-03-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080396, 109, '2020-03-18', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080397, 109, '2020-03-19', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080398, 109, '2020-03-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080399, 109, '2020-03-21', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080400, 109, '2020-03-22', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080401, 109, '2020-03-23', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080402, 109, '2020-03-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080403, 109, '2020-03-25', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080404, 109, '2020-03-26', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080405, 109, '2020-03-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080406, 109, '2020-03-28', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080407, 109, '2020-03-29', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080408, 109, '2020-03-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080409, 109, '2020-03-31', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080410, 109, '2020-04-01', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080411, 109, '2020-04-02', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080412, 109, '2020-04-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080413, 109, '2020-04-04', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080414, 109, '2020-04-05', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080415, 109, '2020-04-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080416, 109, '2020-04-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080417, 109, '2020-04-08', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080418, 109, '2020-04-09', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080419, 109, '2020-04-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080420, 109, '2020-04-11', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080421, 109, '2020-04-12', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080422, 109, '2020-04-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080423, 109, '2020-04-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080424, 109, '2020-04-15', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080425, 109, '2020-04-16', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080426, 109, '2020-04-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080427, 109, '2020-04-18', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080428, 109, '2020-04-19', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080429, 118, '2020-02-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080430, 118, '2020-02-25', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080431, 118, '2020-02-26', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080432, 118, '2020-02-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080433, 118, '2020-02-28', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080434, 118, '2020-02-29', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080435, 118, '2020-03-01', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080436, 118, '2020-03-02', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080437, 118, '2020-03-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080438, 118, '2020-03-04', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080439, 118, '2020-03-05', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080440, 118, '2020-03-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080441, 118, '2020-03-07', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080442, 118, '2020-03-08', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080443, 118, '2020-03-09', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080444, 118, '2020-03-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080445, 118, '2020-03-11', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080446, 118, '2020-03-12', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080447, 118, '2020-03-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080448, 118, '2020-03-14', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080449, 118, '2020-03-15', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080450, 118, '2020-03-16', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (995286, 114, '2019-12-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (995287, 114, '2019-12-31', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080451, 118, '2020-03-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080452, 118, '2020-03-18', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080453, 118, '2020-03-19', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080454, 118, '2020-03-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080455, 118, '2020-03-21', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080456, 118, '2020-03-22', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080457, 118, '2020-03-23', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080458, 118, '2020-03-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080459, 118, '2020-03-25', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080460, 118, '2020-03-26', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080461, 118, '2020-03-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080462, 118, '2020-03-28', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080463, 118, '2020-03-29', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080464, 118, '2020-03-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080465, 118, '2020-03-31', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080466, 118, '2020-04-01', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080467, 118, '2020-04-02', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080468, 118, '2020-04-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080469, 118, '2020-04-04', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080470, 118, '2020-04-05', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080471, 118, '2020-04-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080472, 118, '2020-04-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080473, 118, '2020-04-08', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080474, 118, '2020-04-09', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080475, 118, '2020-04-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080476, 118, '2020-04-11', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080477, 118, '2020-04-12', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080478, 118, '2020-04-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080479, 118, '2020-04-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080480, 118, '2020-04-15', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080481, 118, '2020-04-16', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080482, 118, '2020-04-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080483, 118, '2020-04-18', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080484, 118, '2020-04-19', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080485, 133, '2020-02-24', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080486, 133, '2020-02-25', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080487, 133, '2020-02-26', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080488, 133, '2020-02-27', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080489, 133, '2020-02-28', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080490, 133, '2020-02-29', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080491, 133, '2020-03-01', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080492, 133, '2020-03-02', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080493, 133, '2020-03-03', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080494, 133, '2020-03-04', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080495, 133, '2020-03-05', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080496, 133, '2020-03-06', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080497, 133, '2020-03-07', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080498, 133, '2020-03-08', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080499, 133, '2020-03-09', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080500, 133, '2020-03-10', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080501, 133, '2020-03-11', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080502, 133, '2020-03-12', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080503, 133, '2020-03-13', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080504, 133, '2020-03-14', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080505, 133, '2020-03-15', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080506, 133, '2020-03-16', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080507, 133, '2020-03-17', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080508, 133, '2020-03-18', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080509, 133, '2020-03-19', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080510, 133, '2020-03-20', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080511, 133, '2020-03-21', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080512, 133, '2020-03-22', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080513, 133, '2020-03-23', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080514, 133, '2020-03-24', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080515, 133, '2020-03-25', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080516, 133, '2020-03-26', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080517, 133, '2020-03-27', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080518, 133, '2020-03-28', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080519, 133, '2020-03-29', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080520, 133, '2020-03-30', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080521, 133, '2020-03-31', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080522, 133, '2020-04-01', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080523, 133, '2020-04-02', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080524, 133, '2020-04-03', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080525, 133, '2020-04-04', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080526, 133, '2020-04-05', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080527, 133, '2020-04-06', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080528, 133, '2020-04-07', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080529, 133, '2020-04-08', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080530, 133, '2020-04-09', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080531, 133, '2020-04-10', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080532, 133, '2020-04-11', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080533, 133, '2020-04-12', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080534, 133, '2020-04-13', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080535, 133, '2020-04-14', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080536, 133, '2020-04-15', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080537, 133, '2020-04-16', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080538, 133, '2020-04-17', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080539, 133, '2020-04-18', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080540, 133, '2020-04-19', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080541, 111, '2020-02-24', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080542, 111, '2020-02-25', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080543, 111, '2020-02-26', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080544, 111, '2020-02-27', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080545, 111, '2020-02-28', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080546, 111, '2020-02-29', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080547, 111, '2020-03-01', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080548, 111, '2020-03-02', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080549, 111, '2020-03-03', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080550, 111, '2020-03-04', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080551, 111, '2020-03-05', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080552, 111, '2020-03-06', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080553, 111, '2020-03-07', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080554, 111, '2020-03-08', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080555, 111, '2020-03-09', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080556, 111, '2020-03-10', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080557, 111, '2020-03-11', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080558, 111, '2020-03-12', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080559, 111, '2020-03-13', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080560, 111, '2020-03-14', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080561, 111, '2020-03-15', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080562, 111, '2020-03-16', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080563, 111, '2020-03-17', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080564, 111, '2020-03-18', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080565, 111, '2020-03-19', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080566, 111, '2020-03-20', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080567, 111, '2020-03-21', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080568, 111, '2020-03-22', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080569, 111, '2020-03-23', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080570, 111, '2020-03-24', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080571, 111, '2020-03-25', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080572, 111, '2020-03-26', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080573, 111, '2020-03-27', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080574, 111, '2020-03-28', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080575, 111, '2020-03-29', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080576, 111, '2020-03-30', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080577, 111, '2020-03-31', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080578, 111, '2020-04-01', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080579, 111, '2020-04-02', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080580, 111, '2020-04-03', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080581, 111, '2020-04-04', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080582, 111, '2020-04-05', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080583, 111, '2020-04-06', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080584, 111, '2020-04-07', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080585, 111, '2020-04-08', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080586, 111, '2020-04-09', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080587, 111, '2020-04-10', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080588, 111, '2020-04-11', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080589, 111, '2020-04-12', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080590, 111, '2020-04-13', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080591, 111, '2020-04-14', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080592, 111, '2020-04-15', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080593, 111, '2020-04-16', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080594, 111, '2020-04-17', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080595, 111, '2020-04-18', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080596, 111, '2020-04-19', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080597, 128, '2020-02-24', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080598, 128, '2020-02-25', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080599, 128, '2020-02-26', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (995232, 114, '2020-01-01', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080600, 128, '2020-02-27', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (995233, 114, '2020-01-02', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (995234, 114, '2020-01-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080601, 128, '2020-02-28', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (995235, 114, '2020-01-04', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080602, 128, '2020-02-29', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080603, 128, '2020-03-01', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080604, 128, '2020-03-02', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080605, 128, '2020-03-03', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080606, 128, '2020-03-04', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080607, 128, '2020-03-05', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080608, 128, '2020-03-06', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080609, 128, '2020-03-07', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080610, 128, '2020-03-08', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080611, 128, '2020-03-09', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080612, 128, '2020-03-10', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080613, 128, '2020-03-11', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (995236, 114, '2020-01-05', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (995237, 114, '2020-01-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080614, 128, '2020-03-12', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (995238, 114, '2020-01-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (995239, 114, '2020-01-08', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080615, 128, '2020-03-13', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (995240, 114, '2020-01-09', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (995241, 114, '2020-01-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080616, 128, '2020-03-14', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (995242, 114, '2020-01-11', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (995243, 114, '2020-01-12', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080617, 128, '2020-03-15', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (995244, 114, '2020-01-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (995245, 114, '2020-01-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (995246, 114, '2020-01-15', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (995277, 114, '2020-02-15', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080618, 128, '2020-03-16', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (995278, 114, '2020-02-16', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (995279, 114, '2020-02-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080619, 128, '2020-03-17', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (995280, 114, '2020-02-18', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (995281, 114, '2020-02-19', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080620, 128, '2020-03-18', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (995282, 114, '2020-02-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (995283, 114, '2020-02-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080621, 128, '2020-03-19', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (995284, 114, '2020-02-22', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (995285, 114, '2020-02-23', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080622, 128, '2020-03-20', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080623, 128, '2020-03-21', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080624, 128, '2020-03-22', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080625, 128, '2020-03-23', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080626, 128, '2020-03-24', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080627, 128, '2020-03-25', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080628, 128, '2020-03-26', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080629, 128, '2020-03-27', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080630, 128, '2020-03-28', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080631, 128, '2020-03-29', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080632, 128, '2020-03-30', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080633, 128, '2020-03-31', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080634, 128, '2020-04-01', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080635, 128, '2020-04-02', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080636, 128, '2020-04-03', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080637, 128, '2020-04-04', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080638, 128, '2020-04-05', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080639, 128, '2020-04-06', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080640, 128, '2020-04-07', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080641, 128, '2020-04-08', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080642, 128, '2020-04-09', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080643, 128, '2020-04-10', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080644, 128, '2020-04-11', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080645, 128, '2020-04-12', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080646, 128, '2020-04-13', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080647, 128, '2020-04-14', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080648, 128, '2020-04-15', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080649, 128, '2020-04-16', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080650, 128, '2020-04-17', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080651, 128, '2020-04-18', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080652, 128, '2020-04-19', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080653, 142, '2020-02-24', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080654, 142, '2020-02-25', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080655, 142, '2020-02-26', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080656, 142, '2020-02-27', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080657, 142, '2020-02-28', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080658, 142, '2020-02-29', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080659, 142, '2020-03-01', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080660, 142, '2020-03-02', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080661, 142, '2020-03-03', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080662, 142, '2020-03-04', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080663, 142, '2020-03-05', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080664, 142, '2020-03-06', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080665, 142, '2020-03-07', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080666, 142, '2020-03-08', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080667, 142, '2020-03-09', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080668, 142, '2020-03-10', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080669, 142, '2020-03-11', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080670, 142, '2020-03-12', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080671, 142, '2020-03-13', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080672, 142, '2020-03-14', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080673, 142, '2020-03-15', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080674, 142, '2020-03-16', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080675, 142, '2020-03-17', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080676, 142, '2020-03-18', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080677, 142, '2020-03-19', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080678, 142, '2020-03-20', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080679, 142, '2020-03-21', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080680, 142, '2020-03-22', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080681, 142, '2020-03-23', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080682, 142, '2020-03-24', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080683, 142, '2020-03-25', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080684, 142, '2020-03-26', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080685, 142, '2020-03-27', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080686, 142, '2020-03-28', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080687, 142, '2020-03-29', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080688, 142, '2020-03-30', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080689, 142, '2020-03-31', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080690, 142, '2020-04-01', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080691, 142, '2020-04-02', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080692, 142, '2020-04-03', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080693, 142, '2020-04-04', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080694, 142, '2020-04-05', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080695, 142, '2020-04-06', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080696, 142, '2020-04-07', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080697, 142, '2020-04-08', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080698, 142, '2020-04-09', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080699, 142, '2020-04-10', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080700, 142, '2020-04-11', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080701, 142, '2020-04-12', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080702, 142, '2020-04-13', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080703, 142, '2020-04-14', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080704, 142, '2020-04-15', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080705, 142, '2020-04-16', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080706, 142, '2020-04-17', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080707, 142, '2020-04-18', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080708, 142, '2020-04-19', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080709, 136, '2020-02-24', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080710, 136, '2020-02-25', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080711, 136, '2020-02-26', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080712, 136, '2020-02-27', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080713, 136, '2020-02-28', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080714, 136, '2020-02-29', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080715, 136, '2020-03-01', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080716, 136, '2020-03-02', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080717, 136, '2020-03-03', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080718, 136, '2020-03-04', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080719, 136, '2020-03-05', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080720, 136, '2020-03-06', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080721, 136, '2020-03-07', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080722, 136, '2020-03-08', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080723, 136, '2020-03-09', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080724, 136, '2020-03-10', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080725, 136, '2020-03-11', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080726, 136, '2020-03-12', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080727, 136, '2020-03-13', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080728, 136, '2020-03-14', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080729, 136, '2020-03-15', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080730, 136, '2020-03-16', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080731, 136, '2020-03-17', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080732, 136, '2020-03-18', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080733, 136, '2020-03-19', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080734, 136, '2020-03-20', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080735, 136, '2020-03-21', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080736, 136, '2020-03-22', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080737, 136, '2020-03-23', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080738, 136, '2020-03-24', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080739, 136, '2020-03-25', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080740, 136, '2020-03-26', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080741, 136, '2020-03-27', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080742, 136, '2020-03-28', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080743, 136, '2020-03-29', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080744, 136, '2020-03-30', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080745, 136, '2020-03-31', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080746, 136, '2020-04-01', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080747, 136, '2020-04-02', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080748, 136, '2020-04-03', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080749, 136, '2020-04-04', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080750, 136, '2020-04-05', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080751, 136, '2020-04-06', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080752, 136, '2020-04-07', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080753, 136, '2020-04-08', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080754, 136, '2020-04-09', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080755, 136, '2020-04-10', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080756, 136, '2020-04-11', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080757, 136, '2020-04-12', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080758, 136, '2020-04-13', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080759, 136, '2020-04-14', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080760, 136, '2020-04-15', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080761, 136, '2020-04-16', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080762, 136, '2020-04-17', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080763, 136, '2020-04-18', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080764, 136, '2020-04-19', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080765, 139, '2020-02-24', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080766, 139, '2020-02-25', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080767, 139, '2020-02-26', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080768, 139, '2020-02-27', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080769, 139, '2020-02-28', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080770, 139, '2020-02-29', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080771, 139, '2020-03-01', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080772, 139, '2020-03-02', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080773, 139, '2020-03-03', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080774, 139, '2020-03-04', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080775, 139, '2020-03-05', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080776, 139, '2020-03-06', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080777, 139, '2020-03-07', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080778, 139, '2020-03-08', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080779, 139, '2020-03-09', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080780, 139, '2020-03-10', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080781, 139, '2020-03-11', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080782, 139, '2020-03-12', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080783, 139, '2020-03-13', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080784, 139, '2020-03-14', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080785, 139, '2020-03-15', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080786, 139, '2020-03-16', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080787, 139, '2020-03-17', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080788, 139, '2020-03-18', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080789, 139, '2020-03-19', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080790, 139, '2020-03-20', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080791, 139, '2020-03-21', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080792, 139, '2020-03-22', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080793, 139, '2020-03-23', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080794, 139, '2020-03-24', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080795, 139, '2020-03-25', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080796, 139, '2020-03-26', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080797, 139, '2020-03-27', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080798, 139, '2020-03-28', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080799, 139, '2020-03-29', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080800, 139, '2020-03-30', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080801, 139, '2020-03-31', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080802, 139, '2020-04-01', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080803, 139, '2020-04-02', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080804, 139, '2020-04-03', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080805, 139, '2020-04-04', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080806, 139, '2020-04-05', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080807, 139, '2020-04-06', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080808, 139, '2020-04-07', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080809, 139, '2020-04-08', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080810, 139, '2020-04-09', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080811, 139, '2020-04-10', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080812, 139, '2020-04-11', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080813, 139, '2020-04-12', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080814, 139, '2020-04-13', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080815, 139, '2020-04-14', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080816, 139, '2020-04-15', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080817, 139, '2020-04-16', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080818, 139, '2020-04-17', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080819, 139, '2020-04-18', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080820, 139, '2020-04-19', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080821, 141, '2020-02-24', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080822, 141, '2020-02-25', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080823, 141, '2020-02-26', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080824, 141, '2020-02-27', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080825, 141, '2020-02-28', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080826, 141, '2020-02-29', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080827, 141, '2020-03-01', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080828, 141, '2020-03-02', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080829, 141, '2020-03-03', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080830, 141, '2020-03-04', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080831, 141, '2020-03-05', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080832, 141, '2020-03-06', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080833, 141, '2020-03-07', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080834, 141, '2020-03-08', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080835, 141, '2020-03-09', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080836, 141, '2020-03-10', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080837, 141, '2020-03-11', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080838, 141, '2020-03-12', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080839, 141, '2020-03-13', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080840, 141, '2020-03-14', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080841, 141, '2020-03-15', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080842, 141, '2020-03-16', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080843, 141, '2020-03-17', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080844, 141, '2020-03-18', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080845, 141, '2020-03-19', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080846, 141, '2020-03-20', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080847, 141, '2020-03-21', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080848, 141, '2020-03-22', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080849, 141, '2020-03-23', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080850, 141, '2020-03-24', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080851, 141, '2020-03-25', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080852, 141, '2020-03-26', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080853, 141, '2020-03-27', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080854, 141, '2020-03-28', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080855, 141, '2020-03-29', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080856, 141, '2020-03-30', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080857, 141, '2020-03-31', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080858, 141, '2020-04-01', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080859, 141, '2020-04-02', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080860, 141, '2020-04-03', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080861, 141, '2020-04-04', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080862, 141, '2020-04-05', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080863, 141, '2020-04-06', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080864, 141, '2020-04-07', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080865, 141, '2020-04-08', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080866, 141, '2020-04-09', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080867, 141, '2020-04-10', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080868, 141, '2020-04-11', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080869, 141, '2020-04-12', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080870, 141, '2020-04-13', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080871, 141, '2020-04-14', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080872, 141, '2020-04-15', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080873, 141, '2020-04-16', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080874, 141, '2020-04-17', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080875, 141, '2020-04-18', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080876, 141, '2020-04-19', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080877, 122, '2020-02-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080878, 122, '2020-02-25', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080879, 122, '2020-02-26', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080880, 122, '2020-02-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080881, 122, '2020-02-28', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080882, 122, '2020-02-29', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080883, 122, '2020-03-01', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080884, 122, '2020-03-02', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080885, 122, '2020-03-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080886, 122, '2020-03-04', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080887, 122, '2020-03-05', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080888, 122, '2020-03-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080889, 122, '2020-03-07', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080890, 122, '2020-03-08', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080891, 122, '2020-03-09', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080892, 122, '2020-03-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080893, 122, '2020-03-11', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080894, 122, '2020-03-12', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080895, 122, '2020-03-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080896, 122, '2020-03-14', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080897, 122, '2020-03-15', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080898, 122, '2020-03-16', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080899, 122, '2020-03-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080900, 122, '2020-03-18', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080901, 122, '2020-03-19', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080902, 122, '2020-03-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080903, 122, '2020-03-21', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080904, 122, '2020-03-22', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080905, 122, '2020-03-23', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080906, 122, '2020-03-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080907, 122, '2020-03-25', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080908, 122, '2020-03-26', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080909, 122, '2020-03-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080910, 122, '2020-03-28', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080911, 122, '2020-03-29', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080912, 122, '2020-03-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080913, 122, '2020-03-31', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080914, 122, '2020-04-01', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080915, 122, '2020-04-02', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080916, 122, '2020-04-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080917, 122, '2020-04-04', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080918, 122, '2020-04-05', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080919, 122, '2020-04-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080920, 122, '2020-04-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080921, 122, '2020-04-08', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080922, 122, '2020-04-09', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080923, 122, '2020-04-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080924, 122, '2020-04-11', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080925, 122, '2020-04-12', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080926, 122, '2020-04-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080927, 122, '2020-04-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080928, 122, '2020-04-15', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080929, 122, '2020-04-16', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080930, 122, '2020-04-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080931, 122, '2020-04-18', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080932, 122, '2020-04-19', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080933, 106, '2020-02-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '02:05:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080934, 106, '2020-02-25', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '02:05:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080935, 106, '2020-02-26', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '02:05:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080936, 106, '2020-02-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '02:05:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080937, 106, '2020-02-28', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '02:05:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080938, 106, '2020-02-29', NULL, NULL, NULL, NULL, NULL, '00:00:00', '02:05:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080939, 106, '2020-03-01', NULL, NULL, NULL, NULL, NULL, '00:00:00', '02:05:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080940, 106, '2020-03-02', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '02:05:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080941, 106, '2020-03-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '02:05:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080942, 106, '2020-03-04', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '02:05:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080943, 106, '2020-03-05', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '02:05:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080944, 106, '2020-03-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '02:05:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080945, 106, '2020-03-07', NULL, NULL, NULL, NULL, NULL, '00:00:00', '02:05:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080946, 106, '2020-03-08', NULL, NULL, NULL, NULL, NULL, '00:00:00', '02:05:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080947, 106, '2020-03-09', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '02:05:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080948, 106, '2020-03-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '02:05:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080949, 106, '2020-03-11', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '02:05:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080950, 106, '2020-03-12', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '02:05:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080951, 106, '2020-03-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '02:05:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080952, 106, '2020-03-14', NULL, NULL, NULL, NULL, NULL, '00:00:00', '02:05:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080953, 106, '2020-03-15', NULL, NULL, NULL, NULL, NULL, '00:00:00', '02:05:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080954, 106, '2020-03-16', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '02:05:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080955, 106, '2020-03-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '02:05:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080956, 106, '2020-03-18', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '02:05:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080957, 106, '2020-03-19', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '02:05:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080958, 106, '2020-03-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '02:05:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080959, 106, '2020-03-21', NULL, NULL, NULL, NULL, NULL, '00:00:00', '02:05:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080960, 106, '2020-03-22', NULL, NULL, NULL, NULL, NULL, '00:00:00', '02:05:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080961, 106, '2020-03-23', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '02:05:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080962, 106, '2020-03-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '02:05:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080963, 106, '2020-03-25', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '02:05:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080964, 106, '2020-03-26', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '02:05:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080965, 106, '2020-03-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '02:05:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080966, 106, '2020-03-28', NULL, NULL, NULL, NULL, NULL, '00:00:00', '02:05:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080967, 106, '2020-03-29', NULL, NULL, NULL, NULL, NULL, '00:00:00', '02:05:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080968, 106, '2020-03-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '02:05:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080969, 106, '2020-03-31', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '02:05:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080970, 106, '2020-04-01', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '02:05:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080971, 106, '2020-04-02', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '02:05:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080972, 106, '2020-04-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '02:05:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080973, 106, '2020-04-04', NULL, NULL, NULL, NULL, NULL, '00:00:00', '02:05:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080974, 106, '2020-04-05', NULL, NULL, NULL, NULL, NULL, '00:00:00', '02:05:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080975, 106, '2020-04-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '02:05:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080976, 106, '2020-04-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '02:05:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080977, 106, '2020-04-08', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '02:05:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080978, 106, '2020-04-09', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '02:05:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080979, 106, '2020-04-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '02:05:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080980, 106, '2020-04-11', NULL, NULL, NULL, NULL, NULL, '00:00:00', '02:05:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080981, 106, '2020-04-12', NULL, NULL, NULL, NULL, NULL, '00:00:00', '02:05:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080982, 106, '2020-04-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '02:05:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080983, 106, '2020-04-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '02:05:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080984, 106, '2020-04-15', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '02:05:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080985, 106, '2020-04-16', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '02:05:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080986, 106, '2020-04-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '02:05:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080987, 106, '2020-04-18', NULL, NULL, NULL, NULL, NULL, '00:00:00', '02:05:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080988, 106, '2020-04-19', NULL, NULL, NULL, NULL, NULL, '00:00:00', '02:05:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080989, 110, '2020-02-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080990, 110, '2020-02-25', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080991, 110, '2020-02-26', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080992, 110, '2020-02-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080993, 110, '2020-02-28', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080994, 110, '2020-02-29', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080995, 110, '2020-03-01', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080996, 110, '2020-03-02', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080997, 110, '2020-03-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080998, 110, '2020-03-04', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080999, 110, '2020-03-05', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081000, 110, '2020-03-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081001, 110, '2020-03-07', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081002, 110, '2020-03-08', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081003, 110, '2020-03-09', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081004, 110, '2020-03-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081005, 110, '2020-03-11', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081006, 110, '2020-03-12', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081007, 110, '2020-03-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081008, 110, '2020-03-14', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081009, 110, '2020-03-15', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081010, 110, '2020-03-16', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081011, 110, '2020-03-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081012, 110, '2020-03-18', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081013, 110, '2020-03-19', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081014, 110, '2020-03-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081015, 110, '2020-03-21', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081016, 110, '2020-03-22', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081017, 110, '2020-03-23', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081018, 110, '2020-03-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081019, 110, '2020-03-25', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081020, 110, '2020-03-26', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081021, 110, '2020-03-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081022, 110, '2020-03-28', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081023, 110, '2020-03-29', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081024, 110, '2020-03-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081025, 110, '2020-03-31', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081026, 110, '2020-04-01', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081027, 110, '2020-04-02', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081028, 110, '2020-04-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081029, 110, '2020-04-04', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081030, 110, '2020-04-05', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081031, 110, '2020-04-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081032, 110, '2020-04-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081033, 110, '2020-04-08', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081034, 110, '2020-04-09', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081035, 110, '2020-04-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081036, 110, '2020-04-11', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081037, 110, '2020-04-12', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081038, 110, '2020-04-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081039, 110, '2020-04-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081040, 110, '2020-04-15', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081041, 110, '2020-04-16', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081042, 110, '2020-04-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081043, 110, '2020-04-18', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081044, 110, '2020-04-19', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081045, 145, '2020-02-24', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081046, 145, '2020-02-25', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081047, 145, '2020-02-26', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081048, 145, '2020-02-27', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081049, 145, '2020-02-28', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081050, 145, '2020-02-29', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081051, 145, '2020-03-01', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081052, 145, '2020-03-02', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081053, 145, '2020-03-03', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081054, 145, '2020-03-04', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081055, 145, '2020-03-05', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081056, 145, '2020-03-06', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081057, 145, '2020-03-07', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081058, 145, '2020-03-08', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081059, 145, '2020-03-09', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081060, 145, '2020-03-10', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081061, 145, '2020-03-11', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081062, 145, '2020-03-12', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081063, 145, '2020-03-13', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081064, 145, '2020-03-14', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081065, 145, '2020-03-15', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081066, 145, '2020-03-16', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081067, 145, '2020-03-17', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081068, 145, '2020-03-18', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081069, 145, '2020-03-19', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081070, 145, '2020-03-20', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081071, 145, '2020-03-21', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081072, 145, '2020-03-22', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081073, 145, '2020-03-23', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081074, 145, '2020-03-24', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081075, 145, '2020-03-25', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081076, 145, '2020-03-26', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081077, 145, '2020-03-27', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081078, 145, '2020-03-28', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081079, 145, '2020-03-29', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081080, 145, '2020-03-30', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081081, 145, '2020-03-31', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081082, 145, '2020-04-01', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081083, 145, '2020-04-02', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081084, 145, '2020-04-03', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081085, 145, '2020-04-04', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081086, 145, '2020-04-05', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081087, 145, '2020-04-06', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081088, 145, '2020-04-07', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081089, 145, '2020-04-08', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081090, 145, '2020-04-09', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081091, 145, '2020-04-10', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081092, 145, '2020-04-11', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081093, 145, '2020-04-12', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081094, 145, '2020-04-13', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081095, 145, '2020-04-14', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081096, 145, '2020-04-15', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081097, 145, '2020-04-16', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081098, 145, '2020-04-17', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081099, 145, '2020-04-18', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081100, 145, '2020-04-19', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081101, 148, '2020-02-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081102, 148, '2020-02-25', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081103, 148, '2020-02-26', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081104, 148, '2020-02-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081105, 148, '2020-02-28', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081106, 148, '2020-02-29', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081107, 148, '2020-03-01', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081108, 148, '2020-03-02', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081109, 148, '2020-03-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081110, 148, '2020-03-04', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081111, 148, '2020-03-05', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081112, 148, '2020-03-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081113, 148, '2020-03-07', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081114, 148, '2020-03-08', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081115, 148, '2020-03-09', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081116, 148, '2020-03-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081117, 148, '2020-03-11', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081118, 148, '2020-03-12', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081119, 148, '2020-03-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081120, 148, '2020-03-14', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081121, 148, '2020-03-15', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081122, 148, '2020-03-16', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081123, 148, '2020-03-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081124, 148, '2020-03-18', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081125, 148, '2020-03-19', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081126, 148, '2020-03-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081127, 148, '2020-03-21', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081128, 148, '2020-03-22', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081129, 148, '2020-03-23', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081130, 148, '2020-03-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081131, 148, '2020-03-25', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081132, 148, '2020-03-26', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081133, 148, '2020-03-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081134, 148, '2020-03-28', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081135, 148, '2020-03-29', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081136, 148, '2020-03-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081137, 148, '2020-03-31', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081138, 148, '2020-04-01', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081139, 148, '2020-04-02', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081140, 148, '2020-04-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081141, 148, '2020-04-04', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081142, 148, '2020-04-05', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081143, 148, '2020-04-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081144, 148, '2020-04-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081145, 148, '2020-04-08', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081146, 148, '2020-04-09', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081147, 148, '2020-04-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081148, 148, '2020-04-11', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081149, 148, '2020-04-12', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081150, 148, '2020-04-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081151, 148, '2020-04-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081152, 148, '2020-04-15', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081153, 148, '2020-04-16', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081154, 148, '2020-04-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081155, 148, '2020-04-18', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081156, 148, '2020-04-19', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081157, 130, '2020-02-24', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081158, 130, '2020-02-25', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081159, 130, '2020-02-26', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081160, 130, '2020-02-27', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081161, 130, '2020-02-28', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081162, 130, '2020-02-29', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081163, 130, '2020-03-01', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081164, 130, '2020-03-02', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081165, 130, '2020-03-03', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081166, 130, '2020-03-04', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081167, 130, '2020-03-05', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081168, 130, '2020-03-06', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081169, 130, '2020-03-07', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081170, 130, '2020-03-08', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081171, 130, '2020-03-09', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081172, 130, '2020-03-10', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081173, 130, '2020-03-11', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081174, 130, '2020-03-12', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081175, 130, '2020-03-13', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081176, 130, '2020-03-14', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081177, 130, '2020-03-15', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081178, 130, '2020-03-16', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081179, 130, '2020-03-17', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081180, 130, '2020-03-18', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081181, 130, '2020-03-19', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081182, 130, '2020-03-20', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081183, 130, '2020-03-21', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081184, 130, '2020-03-22', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081185, 130, '2020-03-23', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081186, 130, '2020-03-24', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081187, 130, '2020-03-25', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081188, 130, '2020-03-26', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081189, 130, '2020-03-27', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081190, 130, '2020-03-28', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081191, 130, '2020-03-29', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081192, 130, '2020-03-30', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081193, 130, '2020-03-31', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081194, 130, '2020-04-01', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081195, 130, '2020-04-02', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081196, 130, '2020-04-03', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081197, 130, '2020-04-04', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081198, 130, '2020-04-05', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081199, 130, '2020-04-06', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081200, 130, '2020-04-07', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081201, 130, '2020-04-08', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081202, 130, '2020-04-09', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081203, 130, '2020-04-10', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081204, 130, '2020-04-11', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081205, 130, '2020-04-12', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081206, 130, '2020-04-13', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081207, 130, '2020-04-14', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081208, 130, '2020-04-15', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081209, 130, '2020-04-16', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081210, 130, '2020-04-17', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081211, 130, '2020-04-18', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081212, 130, '2020-04-19', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081213, 129, '2020-02-24', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081214, 129, '2020-02-25', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081215, 129, '2020-02-26', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081216, 129, '2020-02-27', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081217, 129, '2020-02-28', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081218, 129, '2020-02-29', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081219, 129, '2020-03-01', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081220, 129, '2020-03-02', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081221, 129, '2020-03-03', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081222, 129, '2020-03-04', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081223, 129, '2020-03-05', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081224, 129, '2020-03-06', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081225, 129, '2020-03-07', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081226, 129, '2020-03-08', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081227, 129, '2020-03-09', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081228, 129, '2020-03-10', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081229, 129, '2020-03-11', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081230, 129, '2020-03-12', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081231, 129, '2020-03-13', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081232, 129, '2020-03-14', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081233, 129, '2020-03-15', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081234, 129, '2020-03-16', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081235, 129, '2020-03-17', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081236, 129, '2020-03-18', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081237, 129, '2020-03-19', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081238, 129, '2020-03-20', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081239, 129, '2020-03-21', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081240, 129, '2020-03-22', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081241, 129, '2020-03-23', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081242, 129, '2020-03-24', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081243, 129, '2020-03-25', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081244, 129, '2020-03-26', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081245, 129, '2020-03-27', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081246, 129, '2020-03-28', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081247, 129, '2020-03-29', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081248, 129, '2020-03-30', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081249, 129, '2020-03-31', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081250, 129, '2020-04-01', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081251, 129, '2020-04-02', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081252, 129, '2020-04-03', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081253, 129, '2020-04-04', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081254, 129, '2020-04-05', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081255, 129, '2020-04-06', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081256, 129, '2020-04-07', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081257, 129, '2020-04-08', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081258, 129, '2020-04-09', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081259, 129, '2020-04-10', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081260, 129, '2020-04-11', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081261, 129, '2020-04-12', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081262, 129, '2020-04-13', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081263, 129, '2020-04-14', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081264, 129, '2020-04-15', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081265, 129, '2020-04-16', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081266, 129, '2020-04-17', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081267, 129, '2020-04-18', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081268, 129, '2020-04-19', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081269, 143, '2020-02-24', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081270, 143, '2020-02-25', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081271, 143, '2020-02-26', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081272, 143, '2020-02-27', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081273, 143, '2020-02-28', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081274, 143, '2020-02-29', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081275, 143, '2020-03-01', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081276, 143, '2020-03-02', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081277, 143, '2020-03-03', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081278, 143, '2020-03-04', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081279, 143, '2020-03-05', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081280, 143, '2020-03-06', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081281, 143, '2020-03-07', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081282, 143, '2020-03-08', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081283, 143, '2020-03-09', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081284, 143, '2020-03-10', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081285, 143, '2020-03-11', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081286, 143, '2020-03-12', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081287, 143, '2020-03-13', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081288, 143, '2020-03-14', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081289, 143, '2020-03-15', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081290, 143, '2020-03-16', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081291, 143, '2020-03-17', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081292, 143, '2020-03-18', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081293, 143, '2020-03-19', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081294, 143, '2020-03-20', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081295, 143, '2020-03-21', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081296, 143, '2020-03-22', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081297, 143, '2020-03-23', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081298, 143, '2020-03-24', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081299, 143, '2020-03-25', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081300, 143, '2020-03-26', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081301, 143, '2020-03-27', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081302, 143, '2020-03-28', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081303, 143, '2020-03-29', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081304, 143, '2020-03-30', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081305, 143, '2020-03-31', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081306, 143, '2020-04-01', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081307, 143, '2020-04-02', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081308, 143, '2020-04-03', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081309, 143, '2020-04-04', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081310, 143, '2020-04-05', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081311, 143, '2020-04-06', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081312, 143, '2020-04-07', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081313, 143, '2020-04-08', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081314, 143, '2020-04-09', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081315, 143, '2020-04-10', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081316, 143, '2020-04-11', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (997384, 112, '2020-01-01', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (997385, 112, '2020-01-02', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081317, 143, '2020-04-12', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (997386, 112, '2020-01-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (997387, 112, '2020-01-04', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081318, 143, '2020-04-13', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (997388, 112, '2020-01-05', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (997389, 112, '2020-01-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081319, 143, '2020-04-14', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (997390, 112, '2020-01-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (997391, 112, '2020-01-08', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081320, 143, '2020-04-15', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (997392, 112, '2020-01-09', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (997393, 112, '2020-01-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081321, 143, '2020-04-16', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (997394, 112, '2020-01-11', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (997395, 112, '2020-01-12', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081322, 143, '2020-04-17', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (997396, 112, '2020-01-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (997397, 112, '2020-01-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081323, 143, '2020-04-18', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (997398, 112, '2020-01-15', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (997399, 112, '2020-01-16', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081324, 143, '2020-04-19', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (997400, 112, '2020-01-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (997401, 112, '2020-01-18', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (997402, 112, '2020-01-19', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (997403, 112, '2020-01-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (997404, 112, '2020-01-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (997405, 112, '2020-01-22', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (997406, 112, '2020-01-23', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (997407, 112, '2020-01-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (997408, 112, '2020-01-25', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (997409, 112, '2020-01-26', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (997410, 112, '2020-01-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (997411, 112, '2020-01-28', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (997412, 112, '2020-01-29', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (997413, 112, '2020-01-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (997414, 112, '2020-01-31', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (997415, 112, '2020-02-01', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (997416, 112, '2020-02-02', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (997417, 112, '2020-02-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (997418, 112, '2020-02-04', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (997419, 112, '2020-02-05', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (997420, 112, '2020-02-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (997421, 112, '2020-02-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (997422, 112, '2020-02-08', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (997423, 112, '2020-02-09', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (997424, 112, '2020-02-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (997425, 112, '2020-02-11', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (997426, 112, '2020-02-12', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (999541, 108, '2020-01-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (999542, 108, '2020-01-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (999543, 108, '2020-01-08', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (999544, 108, '2020-01-09', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (999545, 108, '2020-01-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (999546, 108, '2020-01-11', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (999547, 108, '2020-01-12', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (999548, 108, '2020-01-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (999549, 108, '2020-01-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (999550, 108, '2020-01-15', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (999551, 108, '2020-01-16', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (999552, 108, '2020-01-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (999553, 108, '2020-01-18', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (999554, 108, '2020-01-19', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (999555, 108, '2020-01-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (999556, 108, '2020-01-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (999557, 108, '2020-01-22', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (999558, 108, '2020-01-23', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (999559, 108, '2020-01-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (999576, 108, '2020-02-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (999577, 108, '2020-02-11', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (999578, 108, '2020-02-12', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (999579, 108, '2020-02-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (999580, 108, '2020-02-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (999582, 108, '2020-02-16', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (999583, 108, '2020-02-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (999584, 108, '2020-02-18', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (999585, 108, '2020-02-19', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (999586, 108, '2020-02-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (999587, 108, '2020-02-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (999588, 108, '2020-02-22', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (999589, 108, '2020-02-23', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1001742, 135, '2019-12-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1001743, 135, '2019-12-31', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1001688, 135, '2020-01-01', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1001689, 135, '2020-01-02', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1001690, 135, '2020-01-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1001691, 135, '2020-01-04', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1001692, 135, '2020-01-05', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1001693, 135, '2020-01-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1001694, 135, '2020-01-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1001695, 135, '2020-01-08', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1001696, 135, '2020-01-09', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1001697, 135, '2020-01-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1001698, 135, '2020-01-11', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1001699, 135, '2020-01-12', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1001700, 135, '2020-01-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1001701, 135, '2020-01-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1001702, 135, '2020-01-15', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1001703, 135, '2020-01-16', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1001704, 135, '2020-01-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1001705, 135, '2020-01-18', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1001706, 135, '2020-01-19', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1001707, 135, '2020-01-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1001708, 135, '2020-01-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1001709, 135, '2020-01-22', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1001710, 135, '2020-01-23', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1001711, 135, '2020-01-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1001712, 135, '2020-01-25', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1001713, 135, '2020-01-26', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1001714, 135, '2020-01-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1001715, 135, '2020-01-28', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1001716, 135, '2020-01-29', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1001717, 135, '2020-01-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1001718, 135, '2020-01-31', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1001719, 135, '2020-02-01', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1001720, 135, '2020-02-02', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1001721, 135, '2020-02-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1001722, 135, '2020-02-04', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1001723, 135, '2020-02-05', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1003840, 127, '2020-01-01', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1003841, 127, '2020-01-02', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1003842, 127, '2020-01-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1003843, 127, '2020-01-04', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1003844, 127, '2020-01-05', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1003845, 127, '2020-01-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1003846, 127, '2020-01-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1003847, 127, '2020-01-08', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1003848, 127, '2020-01-09', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1003849, 127, '2020-01-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1003850, 127, '2020-01-11', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1003851, 127, '2020-01-12', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1003852, 127, '2020-01-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1003853, 127, '2020-01-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1003854, 127, '2020-01-15', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1003855, 127, '2020-01-16', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1003856, 127, '2020-01-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1003857, 127, '2020-01-18', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1003858, 127, '2020-01-19', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1003859, 127, '2020-01-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1003874, 127, '2020-02-04', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1003875, 127, '2020-02-05', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1003876, 127, '2020-02-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1003877, 127, '2020-02-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1003878, 127, '2020-02-08', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1003879, 127, '2020-02-09', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1003880, 127, '2020-02-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1003881, 127, '2020-02-11', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1003882, 127, '2020-02-12', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1003883, 127, '2020-02-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1003884, 127, '2020-02-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1003885, 127, '2020-02-15', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1003886, 127, '2020-02-16', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1003887, 127, '2020-02-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1003888, 127, '2020-02-18', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1003889, 127, '2020-02-19', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1003890, 127, '2020-02-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1003891, 127, '2020-02-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1003892, 127, '2020-02-22', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1003893, 127, '2020-02-23', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1005992, 149, '2020-01-01', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1005993, 149, '2020-01-02', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1005994, 149, '2020-01-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1005995, 149, '2020-01-04', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1005996, 149, '2020-01-05', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1005997, 149, '2020-01-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1005998, 149, '2020-01-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1005999, 149, '2020-01-08', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1006000, 149, '2020-01-09', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1006001, 149, '2020-01-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1006002, 149, '2020-01-11', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1006003, 149, '2020-01-12', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1006004, 149, '2020-01-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1006005, 149, '2020-01-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1006006, 149, '2020-01-15', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1006007, 149, '2020-01-16', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1006008, 149, '2020-01-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1006009, 149, '2020-01-18', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1006010, 149, '2020-01-19', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1006011, 149, '2020-01-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1006012, 149, '2020-01-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1006013, 149, '2020-01-22', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1006014, 149, '2020-01-23', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1006015, 149, '2020-01-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1006016, 149, '2020-01-25', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1006017, 149, '2020-01-26', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1006018, 149, '2020-01-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1008198, 103, '2019-12-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1008199, 103, '2019-12-31', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1008144, 103, '2020-01-01', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1008145, 103, '2020-01-02', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1008146, 103, '2020-01-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1008147, 103, '2020-01-04', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1008148, 103, '2020-01-05', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1008149, 103, '2020-01-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1008150, 103, '2020-01-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1008151, 103, '2020-01-08', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1008152, 103, '2020-01-09', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1008153, 103, '2020-01-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1008154, 103, '2020-01-11', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1008155, 103, '2020-01-12', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1008156, 103, '2020-01-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1008157, 103, '2020-01-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1008158, 103, '2020-01-15', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1008159, 103, '2020-01-16', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1008160, 103, '2020-01-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1008161, 103, '2020-01-18', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1008162, 103, '2020-01-19', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1008163, 103, '2020-01-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1008164, 103, '2020-01-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1008175, 103, '2020-02-01', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1008176, 103, '2020-02-02', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1008177, 103, '2020-02-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1008178, 103, '2020-02-04', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1008179, 103, '2020-02-05', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1008180, 103, '2020-02-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1008181, 103, '2020-02-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1008182, 103, '2020-02-08', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1008183, 103, '2020-02-09', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1008184, 103, '2020-02-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1008185, 103, '2020-02-11', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1008186, 103, '2020-02-12', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1008187, 103, '2020-02-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1008188, 103, '2020-02-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1008189, 103, '2020-02-15', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1008190, 103, '2020-02-16', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1008191, 103, '2020-02-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1008192, 103, '2020-02-18', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1008193, 103, '2020-02-19', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1008194, 103, '2020-02-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1008195, 103, '2020-02-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1008196, 103, '2020-02-22', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1008197, 103, '2020-02-23', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1010296, 121, '2020-01-01', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1010297, 121, '2020-01-02', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1010298, 121, '2020-01-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1010299, 121, '2020-01-04', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1010300, 121, '2020-01-05', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1010301, 121, '2020-01-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1010302, 121, '2020-01-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1010303, 121, '2020-01-08', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1010304, 121, '2020-01-09', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1010305, 121, '2020-01-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1010306, 121, '2020-01-11', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1010307, 121, '2020-01-12', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1010308, 121, '2020-01-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1010309, 121, '2020-01-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1010310, 121, '2020-01-15', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1010311, 121, '2020-01-16', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1012502, 125, '2019-12-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1012503, 125, '2019-12-31', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1012448, 125, '2020-01-01', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1012449, 125, '2020-01-02', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1012450, 125, '2020-01-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1012451, 125, '2020-01-04', NULL, NULL, NULL, NULL, NULL, '00:00:00', '03:20:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1012452, 125, '2020-01-05', NULL, NULL, NULL, NULL, NULL, '00:00:00', '03:20:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1012453, 125, '2020-01-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1012454, 125, '2020-01-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1012455, 125, '2020-01-08', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1012456, 125, '2020-01-09', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1012457, 125, '2020-01-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1012458, 125, '2020-01-11', NULL, NULL, NULL, NULL, NULL, '00:00:00', '03:20:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1012459, 125, '2020-01-12', NULL, NULL, NULL, NULL, NULL, '00:00:00', '03:20:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1012460, 125, '2020-01-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1012461, 125, '2020-01-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1012462, 125, '2020-01-15', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1012463, 125, '2020-01-16', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1012464, 125, '2020-01-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1012465, 125, '2020-01-18', NULL, NULL, NULL, NULL, NULL, '00:00:00', '03:20:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1012466, 125, '2020-01-19', NULL, NULL, NULL, NULL, NULL, '00:00:00', '03:20:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1012467, 125, '2020-01-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1012468, 125, '2020-01-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1012479, 125, '2020-02-01', NULL, NULL, NULL, NULL, NULL, '00:00:00', '03:20:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1012480, 125, '2020-02-02', NULL, NULL, NULL, NULL, NULL, '00:00:00', '03:20:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1012481, 125, '2020-02-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1012482, 125, '2020-02-04', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1012483, 125, '2020-02-05', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1012484, 125, '2020-02-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1012485, 125, '2020-02-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1012486, 125, '2020-02-08', NULL, NULL, NULL, NULL, NULL, '00:00:00', '03:20:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1012487, 125, '2020-02-09', NULL, NULL, NULL, NULL, NULL, '00:00:00', '03:20:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1012488, 125, '2020-02-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1012489, 125, '2020-02-11', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1012490, 125, '2020-02-12', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1012491, 125, '2020-02-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1012492, 125, '2020-02-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1012493, 125, '2020-02-15', NULL, NULL, NULL, NULL, NULL, '00:00:00', '03:20:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1012494, 125, '2020-02-16', NULL, NULL, NULL, NULL, NULL, '00:00:00', '03:20:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1012495, 125, '2020-02-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1012496, 125, '2020-02-18', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1012497, 125, '2020-02-19', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1012498, 125, '2020-02-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1012499, 125, '2020-02-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1012500, 125, '2020-02-22', NULL, NULL, NULL, NULL, NULL, '00:00:00', '03:20:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1012501, 125, '2020-02-23', NULL, NULL, NULL, NULL, NULL, '00:00:00', '03:20:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1014600, 119, '2020-01-01', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1014601, 119, '2020-01-02', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1014602, 119, '2020-01-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1014603, 119, '2020-01-04', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1014604, 119, '2020-01-05', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1014605, 119, '2020-01-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1014606, 119, '2020-01-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1014607, 119, '2020-01-08', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1014608, 119, '2020-01-09', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1014609, 119, '2020-01-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1014610, 119, '2020-01-11', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1014611, 119, '2020-01-12', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1016806, 113, '2019-12-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1016807, 113, '2019-12-31', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1016752, 113, '2020-01-01', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1016753, 113, '2020-01-02', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1016754, 113, '2020-01-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1016755, 113, '2020-01-04', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1016756, 113, '2020-01-05', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1016757, 113, '2020-01-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1016758, 113, '2020-01-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1016759, 113, '2020-01-08', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1016760, 113, '2020-01-09', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1016761, 113, '2020-01-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1016762, 113, '2020-01-11', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1016763, 113, '2020-01-12', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1016764, 113, '2020-01-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1016765, 113, '2020-01-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1016766, 113, '2020-01-15', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1016767, 113, '2020-01-16', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1016768, 113, '2020-01-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1016769, 113, '2020-01-18', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1016770, 113, '2020-01-19', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1016771, 113, '2020-01-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1016772, 113, '2020-01-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1016783, 113, '2020-02-01', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1016784, 113, '2020-02-02', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1016785, 113, '2020-02-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1016786, 113, '2020-02-04', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1016787, 113, '2020-02-05', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1016788, 113, '2020-02-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1016789, 113, '2020-02-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1016790, 113, '2020-02-08', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1016791, 113, '2020-02-09', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1016792, 113, '2020-02-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1016793, 113, '2020-02-11', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1016794, 113, '2020-02-12', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1016795, 113, '2020-02-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1016796, 113, '2020-02-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1016797, 113, '2020-02-15', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1016798, 113, '2020-02-16', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1016799, 113, '2020-02-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1016800, 113, '2020-02-18', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1016801, 113, '2020-02-19', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1016802, 113, '2020-02-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1016803, 113, '2020-02-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1016804, 113, '2020-02-22', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1016805, 113, '2020-02-23', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1018904, 147, '2020-01-01', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1018905, 147, '2020-01-02', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1018906, 147, '2020-01-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1018907, 147, '2020-01-04', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1018908, 147, '2020-01-05', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1018909, 147, '2020-01-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1018910, 147, '2020-01-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1018911, 147, '2020-01-08', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1018912, 147, '2020-01-09', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1018913, 147, '2020-01-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1018914, 147, '2020-01-11', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1018915, 147, '2020-01-12', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1018916, 147, '2020-01-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1018955, 147, '2020-02-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1018956, 147, '2020-02-22', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1018957, 147, '2020-02-23', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1021110, 131, '2019-12-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1021111, 131, '2019-12-31', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1021056, 131, '2020-01-01', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1021057, 131, '2020-01-02', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1021058, 131, '2020-01-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1021059, 131, '2020-01-04', NULL, NULL, NULL, NULL, NULL, '00:00:00', '03:20:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1021060, 131, '2020-01-05', NULL, NULL, NULL, NULL, NULL, '00:00:00', '03:20:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1021061, 131, '2020-01-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1021062, 131, '2020-01-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1021063, 131, '2020-01-08', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1021064, 131, '2020-01-09', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1021065, 131, '2020-01-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1021066, 131, '2020-01-11', NULL, NULL, NULL, NULL, NULL, '00:00:00', '03:20:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1021067, 131, '2020-01-12', NULL, NULL, NULL, NULL, NULL, '00:00:00', '03:20:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1021068, 131, '2020-01-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1021069, 131, '2020-01-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1021070, 131, '2020-01-15', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1021071, 131, '2020-01-16', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1021072, 131, '2020-01-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1021073, 131, '2020-01-18', NULL, NULL, NULL, NULL, NULL, '00:00:00', '03:20:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1021074, 131, '2020-01-19', NULL, NULL, NULL, NULL, NULL, '00:00:00', '03:20:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1021075, 131, '2020-01-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1021076, 131, '2020-01-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1021077, 131, '2020-01-22', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1021084, 131, '2020-01-29', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1021085, 131, '2020-01-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1021086, 131, '2020-01-31', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1021087, 131, '2020-02-01', NULL, NULL, NULL, NULL, NULL, '00:00:00', '03:20:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1021088, 131, '2020-02-02', NULL, NULL, NULL, NULL, NULL, '00:00:00', '03:20:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1021089, 131, '2020-02-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1021090, 131, '2020-02-04', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1021091, 131, '2020-02-05', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1021092, 131, '2020-02-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1021093, 131, '2020-02-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1021094, 131, '2020-02-08', NULL, NULL, NULL, NULL, NULL, '00:00:00', '03:20:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1021095, 131, '2020-02-09', NULL, NULL, NULL, NULL, NULL, '00:00:00', '03:20:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1021096, 131, '2020-02-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1021097, 131, '2020-02-11', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1021098, 131, '2020-02-12', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1021099, 131, '2020-02-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1021100, 131, '2020-02-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1021101, 131, '2020-02-15', NULL, NULL, NULL, NULL, NULL, '00:00:00', '03:20:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1021102, 131, '2020-02-16', NULL, NULL, NULL, NULL, NULL, '00:00:00', '03:20:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1021103, 131, '2020-02-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1021104, 131, '2020-02-18', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1021105, 131, '2020-02-19', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1021106, 131, '2020-02-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1023262, 104, '2019-12-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '05:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1023263, 104, '2019-12-31', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '05:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1023208, 104, '2020-01-01', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '05:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1023209, 104, '2020-01-02', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '05:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1023210, 104, '2020-01-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '05:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1023211, 104, '2020-01-04', NULL, NULL, NULL, NULL, NULL, '00:00:00', '05:00:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1023212, 104, '2020-01-05', NULL, NULL, NULL, NULL, NULL, '00:00:00', '05:00:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1023213, 104, '2020-01-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '05:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1023214, 104, '2020-01-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '05:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1023215, 104, '2020-01-08', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '05:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1023216, 104, '2020-01-09', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '05:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1023217, 104, '2020-01-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '05:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1023218, 104, '2020-01-11', NULL, NULL, NULL, NULL, NULL, '00:00:00', '05:00:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1023219, 104, '2020-01-12', NULL, NULL, NULL, NULL, NULL, '00:00:00', '05:00:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1023220, 104, '2020-01-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '05:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1023221, 104, '2020-01-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '05:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1023222, 104, '2020-01-15', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '05:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1023253, 104, '2020-02-15', NULL, NULL, NULL, NULL, NULL, '00:00:00', '05:00:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1023254, 104, '2020-02-16', NULL, NULL, NULL, NULL, NULL, '00:00:00', '05:00:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1023255, 104, '2020-02-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '05:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1023256, 104, '2020-02-18', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '05:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1023257, 104, '2020-02-19', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '05:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1023258, 104, '2020-02-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '05:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1023259, 104, '2020-02-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '05:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1023260, 104, '2020-02-22', NULL, NULL, NULL, NULL, NULL, '00:00:00', '05:00:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1023261, 104, '2020-02-23', NULL, NULL, NULL, NULL, NULL, '00:00:00', '05:00:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1025391, 151, '2020-02-01', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1025392, 151, '2020-02-02', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1025393, 151, '2020-02-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1025394, 151, '2020-02-04', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1025395, 151, '2020-02-05', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1025396, 151, '2020-02-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1025397, 151, '2020-02-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1025398, 151, '2020-02-08', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1025399, 151, '2020-02-09', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1025400, 151, '2020-02-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1025401, 151, '2020-02-11', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1025402, 151, '2020-02-12', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1025403, 151, '2020-02-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1025404, 151, '2020-02-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1025405, 151, '2020-02-15', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1025406, 151, '2020-02-16', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1025407, 151, '2020-02-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1025408, 151, '2020-02-18', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1025409, 151, '2020-02-19', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1025410, 151, '2020-02-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1025411, 151, '2020-02-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1025412, 151, '2020-02-22', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1025413, 151, '2020-02-23', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1027512, 138, '2020-01-01', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1027513, 138, '2020-01-02', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1027514, 138, '2020-01-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1027515, 138, '2020-01-04', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1027516, 138, '2020-01-05', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1027517, 138, '2020-01-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1027518, 138, '2020-01-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1027519, 138, '2020-01-08', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1027520, 138, '2020-01-09', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1027521, 138, '2020-01-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1027522, 138, '2020-01-11', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1027523, 138, '2020-01-12', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1027524, 138, '2020-01-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1027525, 138, '2020-01-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1027526, 138, '2020-01-15', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1027527, 138, '2020-01-16', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1027528, 138, '2020-01-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1027529, 138, '2020-01-18', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1027552, 138, '2020-02-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1027553, 138, '2020-02-11', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1027554, 138, '2020-02-12', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1027555, 138, '2020-02-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1027556, 138, '2020-02-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1027558, 138, '2020-02-16', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1027559, 138, '2020-02-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1027560, 138, '2020-02-18', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1027561, 138, '2020-02-19', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1027562, 138, '2020-02-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1027563, 138, '2020-02-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1027564, 138, '2020-02-22', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1027565, 138, '2020-02-23', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1029718, 105, '2019-12-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1029719, 105, '2019-12-31', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1029664, 105, '2020-01-01', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1029665, 105, '2020-01-02', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1029666, 105, '2020-01-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1029667, 105, '2020-01-04', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1029668, 105, '2020-01-05', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1029669, 105, '2020-01-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1029670, 105, '2020-01-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1029671, 105, '2020-01-08', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1029672, 105, '2020-01-09', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1029673, 105, '2020-01-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1029674, 105, '2020-01-11', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1029675, 105, '2020-01-12', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1029676, 105, '2020-01-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1029677, 105, '2020-01-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1029678, 105, '2020-01-15', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1029679, 105, '2020-01-16', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1029680, 105, '2020-01-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1029681, 105, '2020-01-18', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1029682, 105, '2020-01-19', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1029683, 105, '2020-01-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1029684, 105, '2020-01-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1029685, 105, '2020-01-22', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1029686, 105, '2020-01-23', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1029687, 105, '2020-01-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1029688, 105, '2020-01-25', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1029689, 105, '2020-01-26', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1029690, 105, '2020-01-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1029691, 105, '2020-01-28', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1029692, 105, '2020-01-29', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1029693, 105, '2020-01-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1029694, 105, '2020-01-31', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1029695, 105, '2020-02-01', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1029696, 105, '2020-02-02', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1029697, 105, '2020-02-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1029698, 105, '2020-02-04', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1029699, 105, '2020-02-05', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1031816, 134, '2020-01-01', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1031817, 134, '2020-01-02', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1031818, 134, '2020-01-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1031819, 134, '2020-01-04', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1031820, 134, '2020-01-05', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1031821, 134, '2020-01-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1031822, 134, '2020-01-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1031823, 134, '2020-01-08', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1031824, 134, '2020-01-09', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1031825, 134, '2020-01-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1031826, 134, '2020-01-11', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1031827, 134, '2020-01-12', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1031828, 134, '2020-01-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1031829, 134, '2020-01-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1031830, 134, '2020-01-15', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1031831, 134, '2020-01-16', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1031832, 134, '2020-01-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1031833, 134, '2020-01-18', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1031834, 134, '2020-01-19', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1031835, 134, '2020-01-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1031850, 134, '2020-02-04', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1031851, 134, '2020-02-05', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1031852, 134, '2020-02-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1031853, 134, '2020-02-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1031854, 134, '2020-02-08', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1031855, 134, '2020-02-09', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1031856, 134, '2020-02-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1031857, 134, '2020-02-11', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1031858, 134, '2020-02-12', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1031859, 134, '2020-02-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1031860, 134, '2020-02-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1031861, 134, '2020-02-15', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1031862, 134, '2020-02-16', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1031863, 134, '2020-02-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1031864, 134, '2020-02-18', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1031865, 134, '2020-02-19', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1031866, 134, '2020-02-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1031867, 134, '2020-02-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1031868, 134, '2020-02-22', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1031869, 134, '2020-02-23', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1033968, 144, '2020-01-01', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1033969, 144, '2020-01-02', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1033970, 144, '2020-01-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1033971, 144, '2020-01-04', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1033972, 144, '2020-01-05', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1033973, 144, '2020-01-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1033974, 144, '2020-01-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1033975, 144, '2020-01-08', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1033976, 144, '2020-01-09', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1033977, 144, '2020-01-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1033978, 144, '2020-01-11', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1033979, 144, '2020-01-12', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1033980, 144, '2020-01-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1033981, 144, '2020-01-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1033982, 144, '2020-01-15', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1033983, 144, '2020-01-16', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1033984, 144, '2020-01-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1033985, 144, '2020-01-18', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1033986, 144, '2020-01-19', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1033987, 144, '2020-01-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1033988, 144, '2020-01-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1033989, 144, '2020-01-22', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1033990, 144, '2020-01-23', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1033991, 144, '2020-01-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1033992, 144, '2020-01-25', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1033993, 144, '2020-01-26', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1033994, 144, '2020-01-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1036120, 102, '2020-01-01', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1036121, 102, '2020-01-02', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1036122, 102, '2020-01-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1036123, 102, '2020-01-04', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1036124, 102, '2020-01-05', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1036125, 102, '2020-01-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1036126, 102, '2020-01-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1036127, 102, '2020-01-08', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1036128, 102, '2020-01-09', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1036129, 102, '2020-01-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1036130, 102, '2020-01-11', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1036131, 102, '2020-01-12', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1036132, 102, '2020-01-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1036133, 102, '2020-01-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1036134, 102, '2020-01-15', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1036135, 102, '2020-01-16', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1036136, 102, '2020-01-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1036137, 102, '2020-01-18', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1036138, 102, '2020-01-19', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1036139, 102, '2020-01-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1036140, 102, '2020-01-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1036151, 102, '2020-02-01', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1036152, 102, '2020-02-02', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1036153, 102, '2020-02-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1036154, 102, '2020-02-04', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1036155, 102, '2020-02-05', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1036156, 102, '2020-02-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1036157, 102, '2020-02-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1036158, 102, '2020-02-08', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1036159, 102, '2020-02-09', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1036160, 102, '2020-02-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1036161, 102, '2020-02-11', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1036162, 102, '2020-02-12', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1036163, 102, '2020-02-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1036164, 102, '2020-02-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1036165, 102, '2020-02-15', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1036166, 102, '2020-02-16', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1036167, 102, '2020-02-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1036168, 102, '2020-02-18', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1036169, 102, '2020-02-19', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1036170, 102, '2020-02-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1036171, 102, '2020-02-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1036172, 102, '2020-02-22', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1036173, 102, '2020-02-23', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1038326, 109, '2019-12-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1038327, 109, '2019-12-31', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1038272, 109, '2020-01-01', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1038273, 109, '2020-01-02', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1038274, 109, '2020-01-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1038275, 109, '2020-01-04', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1038276, 109, '2020-01-05', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1038277, 109, '2020-01-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1038278, 109, '2020-01-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1038279, 109, '2020-01-08', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1038280, 109, '2020-01-09', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1038281, 109, '2020-01-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1038282, 109, '2020-01-11', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1038283, 109, '2020-01-12', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1038284, 109, '2020-01-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1038285, 109, '2020-01-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1038286, 109, '2020-01-15', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1038287, 109, '2020-01-16', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1040478, 118, '2019-12-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1040479, 118, '2019-12-31', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1040424, 118, '2020-01-01', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1040425, 118, '2020-01-02', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1040426, 118, '2020-01-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1040427, 118, '2020-01-04', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1040428, 118, '2020-01-05', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1040429, 118, '2020-01-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1040430, 118, '2020-01-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1040431, 118, '2020-01-08', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1040432, 118, '2020-01-09', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1040433, 118, '2020-01-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1040434, 118, '2020-01-11', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1040435, 118, '2020-01-12', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1040436, 118, '2020-01-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1040437, 118, '2020-01-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1040438, 118, '2020-01-15', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1040439, 118, '2020-01-16', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1040440, 118, '2020-01-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1040441, 118, '2020-01-18', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1040442, 118, '2020-01-19', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1040443, 118, '2020-01-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1040444, 118, '2020-01-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1040455, 118, '2020-02-01', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1040456, 118, '2020-02-02', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1040457, 118, '2020-02-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1040458, 118, '2020-02-04', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1040459, 118, '2020-02-05', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1040460, 118, '2020-02-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1040461, 118, '2020-02-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1040462, 118, '2020-02-08', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1040463, 118, '2020-02-09', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1040464, 118, '2020-02-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1040465, 118, '2020-02-11', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1040466, 118, '2020-02-12', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1040467, 118, '2020-02-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1040468, 118, '2020-02-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1040469, 118, '2020-02-15', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1040470, 118, '2020-02-16', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1040471, 118, '2020-02-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1040472, 118, '2020-02-18', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1040473, 118, '2020-02-19', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1040474, 118, '2020-02-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1040475, 118, '2020-02-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1040476, 118, '2020-02-22', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1040477, 118, '2020-02-23', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1042630, 133, '2019-12-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1042631, 133, '2019-12-31', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1042576, 133, '2020-01-01', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1042577, 133, '2020-01-02', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1042578, 133, '2020-01-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1042579, 133, '2020-01-04', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1042580, 133, '2020-01-05', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1042581, 133, '2020-01-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1042582, 133, '2020-01-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1042583, 133, '2020-01-08', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1042584, 133, '2020-01-09', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1042585, 133, '2020-01-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1042586, 133, '2020-01-11', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1042587, 133, '2020-01-12', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1044728, 111, '2020-01-01', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1044729, 111, '2020-01-02', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1044730, 111, '2020-01-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1044731, 111, '2020-01-04', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1044732, 111, '2020-01-05', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1044733, 111, '2020-01-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1044734, 111, '2020-01-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1044735, 111, '2020-01-08', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1044736, 111, '2020-01-09', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1044737, 111, '2020-01-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1044738, 111, '2020-01-11', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1044739, 111, '2020-01-12', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1044740, 111, '2020-01-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1044741, 111, '2020-01-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1044742, 111, '2020-01-15', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1044743, 111, '2020-01-16', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1044744, 111, '2020-01-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1044745, 111, '2020-01-18', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1044746, 111, '2020-01-19', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1044747, 111, '2020-01-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1044748, 111, '2020-01-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1044759, 111, '2020-02-01', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1044760, 111, '2020-02-02', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1044761, 111, '2020-02-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1044762, 111, '2020-02-04', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1044763, 111, '2020-02-05', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1044764, 111, '2020-02-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1044765, 111, '2020-02-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1044766, 111, '2020-02-08', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1044767, 111, '2020-02-09', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1044768, 111, '2020-02-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1044769, 111, '2020-02-11', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1044770, 111, '2020-02-12', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1044771, 111, '2020-02-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1044772, 111, '2020-02-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1044773, 111, '2020-02-15', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1044774, 111, '2020-02-16', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1044775, 111, '2020-02-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1044776, 111, '2020-02-18', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1044777, 111, '2020-02-19', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1044778, 111, '2020-02-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1044779, 111, '2020-02-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1044780, 111, '2020-02-22', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1044781, 111, '2020-02-23', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1046880, 128, '2020-01-01', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1046881, 128, '2020-01-02', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1046882, 128, '2020-01-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1046883, 128, '2020-01-04', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1046884, 128, '2020-01-05', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1046885, 128, '2020-01-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1046886, 128, '2020-01-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1046887, 128, '2020-01-08', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1046888, 128, '2020-01-09', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1046889, 128, '2020-01-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1046890, 128, '2020-01-11', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1046891, 128, '2020-01-12', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1046892, 128, '2020-01-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1046931, 128, '2020-02-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1046932, 128, '2020-02-22', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1046933, 128, '2020-02-23', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1049086, 142, '2019-12-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1049087, 142, '2019-12-31', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1049032, 142, '2020-01-01', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1049033, 142, '2020-01-02', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1049034, 142, '2020-01-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1049035, 142, '2020-01-04', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1049036, 142, '2020-01-05', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1049037, 142, '2020-01-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1049038, 142, '2020-01-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1049039, 142, '2020-01-08', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1049040, 142, '2020-01-09', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1049041, 142, '2020-01-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1049042, 142, '2020-01-11', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1049043, 142, '2020-01-12', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1049044, 142, '2020-01-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1049045, 142, '2020-01-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1049046, 142, '2020-01-15', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1049047, 142, '2020-01-16', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1049048, 142, '2020-01-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1049049, 142, '2020-01-18', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1049050, 142, '2020-01-19', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1049051, 142, '2020-01-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1049052, 142, '2020-01-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1049053, 142, '2020-01-22', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1049060, 142, '2020-01-29', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1049061, 142, '2020-01-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1049062, 142, '2020-01-31', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1049063, 142, '2020-02-01', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1049064, 142, '2020-02-02', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1049065, 142, '2020-02-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1049066, 142, '2020-02-04', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1049067, 142, '2020-02-05', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1049068, 142, '2020-02-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1049069, 142, '2020-02-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1049070, 142, '2020-02-08', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1049071, 142, '2020-02-09', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1049072, 142, '2020-02-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1049073, 142, '2020-02-11', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1049074, 142, '2020-02-12', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1049075, 142, '2020-02-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1049076, 142, '2020-02-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1049077, 142, '2020-02-15', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1049078, 142, '2020-02-16', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1049079, 142, '2020-02-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1049080, 142, '2020-02-18', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1049081, 142, '2020-02-19', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1049082, 142, '2020-02-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1051238, 136, '2019-12-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1051239, 136, '2019-12-31', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1051184, 136, '2020-01-01', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1051185, 136, '2020-01-02', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1051186, 136, '2020-01-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1051187, 136, '2020-01-04', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1051188, 136, '2020-01-05', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1051189, 136, '2020-01-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1051190, 136, '2020-01-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1051191, 136, '2020-01-08', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1051192, 136, '2020-01-09', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1051193, 136, '2020-01-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1051194, 136, '2020-01-11', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1051195, 136, '2020-01-12', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1051196, 136, '2020-01-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1051197, 136, '2020-01-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1051198, 136, '2020-01-15', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1051229, 136, '2020-02-15', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1051230, 136, '2020-02-16', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1051231, 136, '2020-02-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1051232, 136, '2020-02-18', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1051233, 136, '2020-02-19', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1051234, 136, '2020-02-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1051235, 136, '2020-02-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1051236, 136, '2020-02-22', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1051237, 136, '2020-02-23', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1053336, 140, '2020-01-01', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1053337, 140, '2020-01-02', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1053338, 140, '2020-01-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1053339, 140, '2020-01-04', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1053340, 140, '2020-01-05', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1053341, 140, '2020-01-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1053342, 140, '2020-01-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1053343, 140, '2020-01-08', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1053344, 140, '2020-01-09', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1053345, 140, '2020-01-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1053346, 140, '2020-01-11', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1053347, 140, '2020-01-12', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1053348, 140, '2020-01-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1053349, 140, '2020-01-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1053350, 140, '2020-01-15', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1053351, 140, '2020-01-16', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1053352, 140, '2020-01-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1053353, 140, '2020-01-18', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1053354, 140, '2020-01-19', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1053355, 140, '2020-01-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1053356, 140, '2020-01-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1053357, 140, '2020-01-22', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1053358, 140, '2020-01-23', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1053359, 140, '2020-01-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1053360, 140, '2020-01-25', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1053361, 140, '2020-01-26', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1053362, 140, '2020-01-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1053363, 140, '2020-01-28', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1053364, 140, '2020-01-29', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1053365, 140, '2020-01-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1053366, 140, '2020-01-31', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1055488, 139, '2020-01-01', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1055489, 139, '2020-01-02', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1055490, 139, '2020-01-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1055491, 139, '2020-01-04', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1055492, 139, '2020-01-05', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1055493, 139, '2020-01-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1055494, 139, '2020-01-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1055495, 139, '2020-01-08', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1055496, 139, '2020-01-09', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1055497, 139, '2020-01-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1055498, 139, '2020-01-11', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1055499, 139, '2020-01-12', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1055500, 139, '2020-01-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1055501, 139, '2020-01-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1055502, 139, '2020-01-15', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1055503, 139, '2020-01-16', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1055504, 139, '2020-01-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1055505, 139, '2020-01-18', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1055528, 139, '2020-02-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1055529, 139, '2020-02-11', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1055530, 139, '2020-02-12', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1055531, 139, '2020-02-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1055532, 139, '2020-02-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1055534, 139, '2020-02-16', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1055535, 139, '2020-02-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1055536, 139, '2020-02-18', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1055537, 139, '2020-02-19', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1055538, 139, '2020-02-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1055539, 139, '2020-02-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1055540, 139, '2020-02-22', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1055541, 139, '2020-02-23', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1057640, 141, '2020-01-01', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1057641, 141, '2020-01-02', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1057642, 141, '2020-01-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1057643, 141, '2020-01-04', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1057644, 141, '2020-01-05', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1057645, 141, '2020-01-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1057646, 141, '2020-01-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1057647, 141, '2020-01-08', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1057648, 141, '2020-01-09', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1057649, 141, '2020-01-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1057650, 141, '2020-01-11', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1057651, 141, '2020-01-12', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1057652, 141, '2020-01-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1057653, 141, '2020-01-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1057654, 141, '2020-01-15', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1057655, 141, '2020-01-16', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1057656, 141, '2020-01-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1057657, 141, '2020-01-18', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1057658, 141, '2020-01-19', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1057659, 141, '2020-01-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1057660, 141, '2020-01-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1057661, 141, '2020-01-22', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1057662, 141, '2020-01-23', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1057663, 141, '2020-01-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1057664, 141, '2020-01-25', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1057665, 141, '2020-01-26', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1057666, 141, '2020-01-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1057667, 141, '2020-01-28', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1057668, 141, '2020-01-29', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1057669, 141, '2020-01-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1057670, 141, '2020-01-31', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1057671, 141, '2020-02-01', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1057672, 141, '2020-02-02', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1057673, 141, '2020-02-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1057674, 141, '2020-02-04', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1057675, 141, '2020-02-05', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1059846, 122, '2019-12-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1059847, 122, '2019-12-31', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1059792, 122, '2020-01-01', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1059793, 122, '2020-01-02', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1059794, 122, '2020-01-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1059795, 122, '2020-01-04', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1059796, 122, '2020-01-05', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1059797, 122, '2020-01-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1059798, 122, '2020-01-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1059799, 122, '2020-01-08', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1059800, 122, '2020-01-09', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1059801, 122, '2020-01-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1059802, 122, '2020-01-11', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1059803, 122, '2020-01-12', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1059804, 122, '2020-01-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1059805, 122, '2020-01-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1059806, 122, '2020-01-15', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1059807, 122, '2020-01-16', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1059808, 122, '2020-01-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1059809, 122, '2020-01-18', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1059810, 122, '2020-01-19', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1059811, 122, '2020-01-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1059826, 122, '2020-02-04', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1059827, 122, '2020-02-05', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1059828, 122, '2020-02-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1059829, 122, '2020-02-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1059830, 122, '2020-02-08', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1059831, 122, '2020-02-09', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1059832, 122, '2020-02-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1059833, 122, '2020-02-11', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1059834, 122, '2020-02-12', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1059835, 122, '2020-02-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1059836, 122, '2020-02-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1059837, 122, '2020-02-15', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1059838, 122, '2020-02-16', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1059839, 122, '2020-02-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1059840, 122, '2020-02-18', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1059841, 122, '2020-02-19', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1059842, 122, '2020-02-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1059843, 122, '2020-02-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1059844, 122, '2020-02-22', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1059845, 122, '2020-02-23', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1061998, 106, '2019-12-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '02:05:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1061999, 106, '2019-12-31', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '02:05:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1061944, 106, '2020-01-01', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '02:05:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1061945, 106, '2020-01-02', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '02:05:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1061946, 106, '2020-01-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '02:05:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1061947, 106, '2020-01-04', NULL, NULL, NULL, NULL, NULL, '00:00:00', '02:05:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1061948, 106, '2020-01-05', NULL, NULL, NULL, NULL, NULL, '00:00:00', '02:05:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1061949, 106, '2020-01-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '02:05:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1061950, 106, '2020-01-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '02:05:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1061951, 106, '2020-01-08', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '02:05:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1061952, 106, '2020-01-09', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '02:05:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1061953, 106, '2020-01-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '02:05:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1061954, 106, '2020-01-11', NULL, NULL, NULL, NULL, NULL, '00:00:00', '02:05:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1061955, 106, '2020-01-12', NULL, NULL, NULL, NULL, NULL, '00:00:00', '02:05:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1061956, 106, '2020-01-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '02:05:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1061957, 106, '2020-01-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '02:05:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1061958, 106, '2020-01-15', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '02:05:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1061959, 106, '2020-01-16', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '02:05:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1061960, 106, '2020-01-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '02:05:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1061961, 106, '2020-01-18', NULL, NULL, NULL, NULL, NULL, '00:00:00', '02:05:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1061962, 106, '2020-01-19', NULL, NULL, NULL, NULL, NULL, '00:00:00', '02:05:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1061963, 106, '2020-01-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '02:05:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1061964, 106, '2020-01-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '02:05:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1061965, 106, '2020-01-22', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '02:05:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1061966, 106, '2020-01-23', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '02:05:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1061967, 106, '2020-01-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '02:05:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1061968, 106, '2020-01-25', NULL, NULL, NULL, NULL, NULL, '00:00:00', '02:05:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1061969, 106, '2020-01-26', NULL, NULL, NULL, NULL, NULL, '00:00:00', '02:05:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1061970, 106, '2020-01-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '02:05:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1064096, 110, '2020-01-01', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1064097, 110, '2020-01-02', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1064098, 110, '2020-01-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1064099, 110, '2020-01-04', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1064100, 110, '2020-01-05', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1064101, 110, '2020-01-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1064102, 110, '2020-01-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1064103, 110, '2020-01-08', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1064104, 110, '2020-01-09', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1064105, 110, '2020-01-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1064106, 110, '2020-01-11', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1064107, 110, '2020-01-12', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1064108, 110, '2020-01-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1064109, 110, '2020-01-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1064110, 110, '2020-01-15', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1064111, 110, '2020-01-16', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1064112, 110, '2020-01-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1064113, 110, '2020-01-18', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1064114, 110, '2020-01-19', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1064115, 110, '2020-01-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1064116, 110, '2020-01-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1064127, 110, '2020-02-01', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1064128, 110, '2020-02-02', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1064129, 110, '2020-02-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1064130, 110, '2020-02-04', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1064131, 110, '2020-02-05', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1064132, 110, '2020-02-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1064133, 110, '2020-02-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1064134, 110, '2020-02-08', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1064135, 110, '2020-02-09', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1064136, 110, '2020-02-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1064137, 110, '2020-02-11', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1064138, 110, '2020-02-12', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1064139, 110, '2020-02-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1064140, 110, '2020-02-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1064141, 110, '2020-02-15', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1064142, 110, '2020-02-16', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1064143, 110, '2020-02-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1064144, 110, '2020-02-18', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1064145, 110, '2020-02-19', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1064146, 110, '2020-02-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1064147, 110, '2020-02-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1064148, 110, '2020-02-22', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1064149, 110, '2020-02-23', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1066248, 145, '2020-01-01', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1066249, 145, '2020-01-02', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1066250, 145, '2020-01-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1066251, 145, '2020-01-04', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1066252, 145, '2020-01-05', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1066253, 145, '2020-01-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1066254, 145, '2020-01-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1066255, 145, '2020-01-08', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1066256, 145, '2020-01-09', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1066257, 145, '2020-01-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1066258, 145, '2020-01-11', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1066259, 145, '2020-01-12', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1066260, 145, '2020-01-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1066261, 145, '2020-01-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1066262, 145, '2020-01-15', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1066263, 145, '2020-01-16', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1068400, 148, '2020-01-01', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1068401, 148, '2020-01-02', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1068402, 148, '2020-01-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1068403, 148, '2020-01-04', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1068404, 148, '2020-01-05', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1068405, 148, '2020-01-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1068406, 148, '2020-01-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1068407, 148, '2020-01-08', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1068408, 148, '2020-01-09', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1068409, 148, '2020-01-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1068410, 148, '2020-01-11', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1068411, 148, '2020-01-12', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1068412, 148, '2020-01-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1068413, 148, '2020-01-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1068414, 148, '2020-01-15', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1068415, 148, '2020-01-16', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1068416, 148, '2020-01-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1068417, 148, '2020-01-18', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1068418, 148, '2020-01-19', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1068419, 148, '2020-01-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1068420, 148, '2020-01-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1068431, 148, '2020-02-01', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1068432, 148, '2020-02-02', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1068433, 148, '2020-02-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1068434, 148, '2020-02-04', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1068435, 148, '2020-02-05', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1068436, 148, '2020-02-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1068437, 148, '2020-02-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1068438, 148, '2020-02-08', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1068439, 148, '2020-02-09', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1068440, 148, '2020-02-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1068441, 148, '2020-02-11', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1068442, 148, '2020-02-12', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1068443, 148, '2020-02-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1068444, 148, '2020-02-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1068445, 148, '2020-02-15', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1068446, 148, '2020-02-16', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1068447, 148, '2020-02-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1068448, 148, '2020-02-18', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1068449, 148, '2020-02-19', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1068450, 148, '2020-02-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1068451, 148, '2020-02-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1068452, 148, '2020-02-22', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1068453, 148, '2020-02-23', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1070606, 130, '2019-12-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1070607, 130, '2019-12-31', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1070552, 130, '2020-01-01', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1070553, 130, '2020-01-02', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1070554, 130, '2020-01-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1070555, 130, '2020-01-04', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1070556, 130, '2020-01-05', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1070557, 130, '2020-01-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1070558, 130, '2020-01-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1070559, 130, '2020-01-08', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1070560, 130, '2020-01-09', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1070561, 130, '2020-01-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1070562, 130, '2020-01-11', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1070563, 130, '2020-01-12', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (914518, 129, '2019-12-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (914519, 129, '2019-12-31', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (914464, 129, '2020-01-01', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (914465, 129, '2020-01-02', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (914466, 129, '2020-01-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (914467, 129, '2020-01-04', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (914468, 129, '2020-01-05', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (914469, 129, '2020-01-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (914470, 129, '2020-01-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (914471, 129, '2020-01-08', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (914472, 129, '2020-01-09', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (914473, 129, '2020-01-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (914474, 129, '2020-01-11', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (914475, 129, '2020-01-12', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (914476, 129, '2020-01-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (914477, 129, '2020-01-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (914478, 129, '2020-01-15', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (914481, 129, '2020-01-18', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (914479, 129, '2020-01-16', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (914480, 129, '2020-01-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (914482, 129, '2020-01-19', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (914483, 129, '2020-01-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (914484, 129, '2020-01-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (914485, 129, '2020-01-22', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (914486, 129, '2020-01-23', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (914487, 129, '2020-01-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (914488, 129, '2020-01-25', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (914489, 129, '2020-01-26', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (914517, 129, '2020-02-23', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1074856, 143, '2020-01-01', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1074857, 143, '2020-01-02', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1074858, 143, '2020-01-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1074859, 143, '2020-01-04', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1074860, 143, '2020-01-05', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1074861, 143, '2020-01-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1074862, 143, '2020-01-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1074863, 143, '2020-01-08', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1074864, 143, '2020-01-09', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1074865, 143, '2020-01-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1074866, 143, '2020-01-11', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1074867, 143, '2020-01-12', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1074868, 143, '2020-01-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1074869, 143, '2020-01-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1074870, 143, '2020-01-15', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1074871, 143, '2020-01-16', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1074872, 143, '2020-01-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1074873, 143, '2020-01-18', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1074874, 143, '2020-01-19', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1074875, 143, '2020-01-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1074876, 143, '2020-01-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1074887, 143, '2020-02-01', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1074888, 143, '2020-02-02', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1074889, 143, '2020-02-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1074890, 143, '2020-02-04', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1074891, 143, '2020-02-05', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1074892, 143, '2020-02-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1074893, 143, '2020-02-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1074894, 143, '2020-02-08', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1074895, 143, '2020-02-09', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1074896, 143, '2020-02-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1074897, 143, '2020-02-11', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1074898, 143, '2020-02-12', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1074899, 143, '2020-02-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1074900, 143, '2020-02-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1074901, 143, '2020-02-15', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1074902, 143, '2020-02-16', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1074903, 143, '2020-02-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1074904, 143, '2020-02-18', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1074905, 143, '2020-02-19', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1074906, 143, '2020-02-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1074907, 143, '2020-02-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1074908, 143, '2020-02-22', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1074909, 143, '2020-02-23', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1115017, 116, '2020-01-01', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1115018, 116, '2020-01-02', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1115019, 116, '2020-01-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1115020, 116, '2020-01-04', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1115021, 116, '2020-01-05', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1115022, 116, '2020-01-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1115023, 116, '2020-01-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1115024, 116, '2020-01-08', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1115025, 116, '2020-01-09', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1115026, 116, '2020-01-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1115027, 116, '2020-01-11', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1115028, 116, '2020-01-12', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1115029, 116, '2020-01-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1115030, 116, '2020-01-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1115031, 116, '2020-01-15', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1115032, 116, '2020-01-16', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1115066, 116, '2020-02-19', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1029699, 105, '2020-02-05', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1031834, 134, '2020-01-19', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1115033, 116, '2020-01-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1115034, 116, '2020-01-18', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1115035, 116, '2020-01-19', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1115036, 116, '2020-01-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1115037, 116, '2020-01-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1115038, 116, '2020-01-22', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1115039, 116, '2020-01-23', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1115040, 116, '2020-01-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1115041, 116, '2020-01-25', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1115042, 116, '2020-01-26', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1115043, 116, '2020-01-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1115044, 116, '2020-01-28', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1115045, 116, '2020-01-29', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1115046, 116, '2020-01-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1115047, 116, '2020-01-31', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1115048, 116, '2020-02-01', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1031868, 134, '2020-02-22', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1036138, 102, '2020-01-19', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1040442, 118, '2020-01-19', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1057680, 141, '2020-02-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1059810, 122, '2020-01-19', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1115049, 116, '2020-02-02', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1115050, 116, '2020-02-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1115051, 116, '2020-02-04', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1115052, 116, '2020-02-05', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1115053, 116, '2020-02-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1115054, 116, '2020-02-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1115055, 116, '2020-02-08', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1115056, 116, '2020-02-09', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1115057, 116, '2020-02-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1115058, 116, '2020-02-11', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1115059, 116, '2020-02-12', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1115060, 116, '2020-02-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1115061, 116, '2020-02-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1115062, 116, '2020-02-15', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1115063, 116, '2020-02-16', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1115064, 116, '2020-02-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1115065, 116, '2020-02-18', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1066296, 145, '2020-02-18', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084022, 121, '2020-06-01', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084113, 125, '2020-05-22', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '03:20:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1115067, 116, '2020-02-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1115068, 116, '2020-02-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1115069, 116, '2020-02-22', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1115070, 116, '2020-02-23', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (988797, 146, '2020-01-22', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (995267, 114, '2020-02-05', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (999559, 108, '2020-01-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (999574, 108, '2020-02-08', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1001723, 135, '2020-02-05', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1003858, 127, '2020-01-19', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1003892, 127, '2020-02-22', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1006021, 149, '2020-01-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1006022, 149, '2020-01-31', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1006023, 149, '2020-02-01', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1006024, 149, '2020-02-02', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1006025, 149, '2020-02-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1006026, 149, '2020-02-04', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1008162, 103, '2020-01-19', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1010313, 121, '2020-01-18', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1042623, 133, '2020-02-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1042624, 133, '2020-02-18', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1042625, 133, '2020-02-19', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1042626, 133, '2020-02-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1042627, 133, '2020-02-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1042628, 133, '2020-02-22', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1042629, 133, '2020-02-23', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1044746, 111, '2020-01-19', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1044747, 111, '2020-01-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1044748, 111, '2020-01-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1044749, 111, '2020-01-22', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1044750, 111, '2020-01-23', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1044751, 111, '2020-01-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1044752, 111, '2020-01-25', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1044753, 111, '2020-01-26', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1044754, 111, '2020-01-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1044777, 111, '2020-02-19', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084114, 125, '2020-05-23', NULL, NULL, NULL, NULL, NULL, '00:00:00', '03:20:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '03:20:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084177, 119, '2020-05-30', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1008170, 103, '2020-01-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1044778, 111, '2020-02-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1044779, 111, '2020-02-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1044780, 111, '2020-02-22', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1044781, 111, '2020-02-23', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1046893, 128, '2020-01-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1046908, 128, '2020-01-29', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1046909, 128, '2020-01-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1046910, 128, '2020-01-31', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1046911, 128, '2020-02-01', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1046912, 128, '2020-02-02', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1046913, 128, '2020-02-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1046914, 128, '2020-02-04', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1046915, 128, '2020-02-05', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1046916, 128, '2020-02-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1046917, 128, '2020-02-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1046918, 128, '2020-02-08', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084221, 113, '2020-05-18', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084250, 147, '2020-04-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084374, 104, '2020-05-03', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:00:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1014635, 119, '2020-02-05', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1046919, 128, '2020-02-09', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1046920, 128, '2020-02-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1046921, 128, '2020-02-11', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1046922, 128, '2020-02-12', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1049056, 142, '2020-01-25', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1049057, 142, '2020-01-26', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1049058, 142, '2020-01-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1049059, 142, '2020-01-28', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1049077, 142, '2020-02-15', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1049078, 142, '2020-02-16', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1049079, 142, '2020-02-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1049080, 142, '2020-02-18', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1049081, 142, '2020-02-19', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1049082, 142, '2020-02-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1049083, 142, '2020-02-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1049084, 142, '2020-02-22', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1049085, 142, '2020-02-23', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084402, 104, '2020-05-31', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:00:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1008173, 103, '2020-01-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1051199, 136, '2020-01-16', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1051200, 136, '2020-01-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1051201, 136, '2020-01-18', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1051202, 136, '2020-01-19', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1051217, 136, '2020-02-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1051218, 136, '2020-02-04', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1051219, 136, '2020-02-05', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1051220, 136, '2020-02-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1051221, 136, '2020-02-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1051222, 136, '2020-02-08', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1051223, 136, '2020-02-09', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1051224, 136, '2020-02-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1051225, 136, '2020-02-11', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1051226, 136, '2020-02-12', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1051227, 136, '2020-02-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1051228, 136, '2020-02-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084403, 104, '2020-06-01', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084463, 151, '2020-06-05', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084490, 138, '2020-05-07', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1021082, 131, '2020-01-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '04:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '04:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1053354, 140, '2020-01-19', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1053355, 140, '2020-01-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1053356, 140, '2020-01-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1055520, 139, '2020-02-02', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1055521, 139, '2020-02-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1055522, 139, '2020-02-04', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1055523, 139, '2020-02-05', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1055524, 139, '2020-02-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1055525, 139, '2020-02-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1055526, 139, '2020-02-08', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1055527, 139, '2020-02-09', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1055533, 139, '2020-02-15', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1057675, 141, '2020-02-05', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1057676, 141, '2020-02-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1057677, 141, '2020-02-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1057678, 141, '2020-02-08', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1057679, 141, '2020-02-09', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1027531, 138, '2020-01-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1059812, 122, '2020-01-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1059813, 122, '2020-01-22', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1059814, 122, '2020-01-23', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1059815, 122, '2020-01-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1059816, 122, '2020-01-25', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1059817, 122, '2020-01-26', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1059818, 122, '2020-01-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1059819, 122, '2020-01-28', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1059820, 122, '2020-01-29', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1059821, 122, '2020-01-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1059822, 122, '2020-01-31', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1059823, 122, '2020-02-01', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1059824, 122, '2020-02-02', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1059825, 122, '2020-02-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1059844, 122, '2020-02-22', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1059845, 122, '2020-02-23', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1061971, 106, '2020-01-28', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '04:10:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '04:10:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084497, 138, '2020-05-14', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084528, 138, '2020-06-14', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1029714, 105, '2020-02-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1061972, 106, '2020-01-29', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '04:10:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '04:10:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1061987, 106, '2020-02-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '04:10:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '04:10:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1061988, 106, '2020-02-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '04:10:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1061989, 106, '2020-02-15', NULL, NULL, NULL, NULL, NULL, '00:00:00', '04:10:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1061990, 106, '2020-02-16', NULL, NULL, NULL, NULL, NULL, '00:00:00', '04:10:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1061991, 106, '2020-02-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '04:10:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '04:10:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1061992, 106, '2020-02-18', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '04:10:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '04:10:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1061993, 106, '2020-02-19', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '04:10:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '04:10:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1061994, 106, '2020-02-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '04:10:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '04:10:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1061995, 106, '2020-02-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '04:10:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1061996, 106, '2020-02-22', NULL, NULL, NULL, NULL, NULL, '00:00:00', '04:10:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1061997, 106, '2020-02-23', NULL, NULL, NULL, NULL, NULL, '00:00:00', '04:10:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1064114, 110, '2020-01-19', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1064115, 110, '2020-01-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1064116, 110, '2020-01-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1064117, 110, '2020-01-22', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1064118, 110, '2020-01-23', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084610, 134, '2020-05-15', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1034012, 144, '2020-02-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1066265, 145, '2020-01-18', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1066266, 145, '2020-01-19', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1066267, 145, '2020-01-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1066268, 145, '2020-01-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1066269, 145, '2020-01-22', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1066270, 145, '2020-01-23', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1066271, 145, '2020-01-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1066272, 145, '2020-01-25', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1066273, 145, '2020-01-26', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1066274, 145, '2020-01-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1066275, 145, '2020-01-28', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1066276, 145, '2020-01-29', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1066277, 145, '2020-01-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1066278, 145, '2020-01-31', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1066279, 145, '2020-02-01', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1066280, 145, '2020-02-02', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1066295, 145, '2020-02-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1066297, 145, '2020-02-19', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1066298, 145, '2020-02-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1066299, 145, '2020-02-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1066300, 145, '2020-02-22', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1066301, 145, '2020-02-23', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1068418, 148, '2020-01-19', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1068419, 148, '2020-01-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1068420, 148, '2020-01-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1068421, 148, '2020-01-22', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1068422, 148, '2020-01-23', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1068423, 148, '2020-01-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1068424, 148, '2020-01-25', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1068425, 148, '2020-01-26', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1068426, 148, '2020-01-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1070568, 130, '2020-01-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1070569, 130, '2020-01-18', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1070570, 130, '2020-01-19', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1070571, 130, '2020-01-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084634, 134, '2020-06-08', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084635, 134, '2020-06-09', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1070572, 130, '2020-01-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1070573, 130, '2020-01-22', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1070574, 130, '2020-01-23', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1070575, 130, '2020-01-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1070576, 130, '2020-01-25', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1070577, 130, '2020-01-26', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1070578, 130, '2020-01-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1070579, 130, '2020-01-28', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1070580, 130, '2020-01-29', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1070581, 130, '2020-01-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1070582, 130, '2020-01-31', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1070583, 130, '2020-02-01', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1070584, 130, '2020-02-02', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1070599, 130, '2020-02-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1070600, 130, '2020-02-18', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1070601, 130, '2020-02-19', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1070602, 130, '2020-02-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1070603, 130, '2020-02-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1070604, 130, '2020-02-22', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1070605, 130, '2020-02-23', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (914490, 129, '2020-01-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (914491, 129, '2020-01-28', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (914492, 129, '2020-01-29', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (914493, 129, '2020-01-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (914494, 129, '2020-01-31', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (914495, 129, '2020-02-01', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (914496, 129, '2020-02-02', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (914497, 129, '2020-02-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (914512, 129, '2020-02-18', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (914513, 129, '2020-02-19', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (914514, 129, '2020-02-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (914515, 129, '2020-02-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (914516, 129, '2020-02-22', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1074874, 143, '2020-01-19', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1074875, 143, '2020-01-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1074876, 143, '2020-01-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084732, 109, '2020-05-25', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1074877, 143, '2020-01-22', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1074878, 143, '2020-01-23', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1074879, 143, '2020-01-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1074880, 143, '2020-01-25', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1074881, 143, '2020-01-26', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1074882, 143, '2020-01-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1074883, 143, '2020-01-28', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1117223, 116, '2020-02-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1117224, 116, '2020-02-25', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1117225, 116, '2020-02-26', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1117226, 116, '2020-02-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1117227, 116, '2020-02-28', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079166, 146, '2020-03-01', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079167, 146, '2020-03-02', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079168, 146, '2020-03-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079169, 146, '2020-03-04', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079170, 146, '2020-03-05', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084733, 109, '2020-05-26', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084868, 111, '2020-04-23', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079171, 146, '2020-03-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079172, 146, '2020-03-07', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079173, 146, '2020-03-08', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079174, 146, '2020-03-09', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079175, 146, '2020-03-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079176, 146, '2020-03-11', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079177, 146, '2020-03-12', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079178, 146, '2020-03-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079179, 146, '2020-03-14', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079180, 146, '2020-03-15', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079181, 146, '2020-03-16', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079196, 146, '2020-03-31', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079197, 146, '2020-04-01', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079198, 146, '2020-04-02', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079199, 146, '2020-04-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079200, 146, '2020-04-04', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079201, 146, '2020-04-05', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079202, 146, '2020-04-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085072, 136, '2020-05-29', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079203, 146, '2020-04-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079204, 146, '2020-04-08', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079205, 146, '2020-04-09', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079206, 146, '2020-04-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079207, 146, '2020-04-11', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079208, 146, '2020-04-12', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079209, 146, '2020-04-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079210, 146, '2020-04-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079225, 115, '2020-03-04', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079226, 115, '2020-03-05', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079227, 115, '2020-03-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079228, 115, '2020-03-07', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079229, 115, '2020-03-08', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079230, 115, '2020-03-09', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079231, 115, '2020-03-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079232, 115, '2020-03-11', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079233, 115, '2020-03-12', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079234, 115, '2020-03-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1008197, 103, '2020-02-23', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079235, 115, '2020-03-14', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079236, 115, '2020-03-15', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079237, 115, '2020-03-16', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079238, 115, '2020-03-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079239, 115, '2020-03-18', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079254, 115, '2020-04-02', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079255, 115, '2020-04-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079256, 115, '2020-04-04', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079257, 115, '2020-04-05', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079258, 115, '2020-04-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079259, 115, '2020-04-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079260, 115, '2020-04-08', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079261, 115, '2020-04-09', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079262, 115, '2020-04-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079263, 115, '2020-04-11', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079264, 115, '2020-04-12', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079265, 115, '2020-04-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085110, 139, '2020-05-11', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085139, 139, '2020-06-09', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085158, 141, '2020-05-03', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (988778, 146, '2020-01-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079266, 115, '2020-04-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079267, 115, '2020-04-15', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079268, 115, '2020-04-16', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079283, 114, '2020-03-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079284, 114, '2020-03-07', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079285, 114, '2020-03-08', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079286, 114, '2020-03-09', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079287, 114, '2020-03-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079288, 114, '2020-03-11', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079289, 114, '2020-03-12', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079290, 114, '2020-03-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079291, 114, '2020-03-14', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079292, 114, '2020-03-15', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079293, 114, '2020-03-16', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079502, 127, '2020-03-01', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083766, 135, '2020-04-30', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085167, 141, '2020-05-12', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085198, 141, '2020-06-12', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085252, 122, '2020-06-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085302, 106, '2020-06-04', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '04:10:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '04:10:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (988779, 146, '2020-01-04', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079294, 114, '2020-03-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079295, 114, '2020-03-18', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079296, 114, '2020-03-19', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079297, 114, '2020-03-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079312, 114, '2020-04-04', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079313, 114, '2020-04-05', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079314, 114, '2020-04-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079315, 114, '2020-04-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079316, 114, '2020-04-08', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079317, 114, '2020-04-09', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079318, 114, '2020-04-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079319, 114, '2020-04-11', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079320, 114, '2020-04-12', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079321, 114, '2020-04-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084019, 121, '2020-05-29', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084020, 121, '2020-05-30', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084021, 121, '2020-05-31', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085304, 106, '2020-06-06', NULL, NULL, NULL, NULL, NULL, '00:00:00', '04:10:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (988780, 146, '2020-01-05', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (988781, 146, '2020-01-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079322, 114, '2020-04-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079323, 114, '2020-04-15', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079324, 114, '2020-04-16', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079325, 114, '2020-04-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079326, 114, '2020-04-18', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079327, 114, '2020-04-19', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079342, 112, '2020-03-09', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079343, 112, '2020-03-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079344, 112, '2020-03-11', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079345, 112, '2020-03-12', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079346, 112, '2020-03-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079347, 112, '2020-03-14', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084023, 121, '2020-06-02', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084024, 121, '2020-06-03', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084025, 121, '2020-06-04', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084030, 121, '2020-06-09', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (988782, 146, '2020-01-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (988783, 146, '2020-01-08', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079348, 112, '2020-03-15', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079349, 112, '2020-03-16', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079350, 112, '2020-03-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079351, 112, '2020-03-18', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079352, 112, '2020-03-19', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079353, 112, '2020-03-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079354, 112, '2020-03-21', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079355, 112, '2020-03-22', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079356, 112, '2020-03-23', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079371, 112, '2020-04-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079372, 112, '2020-04-08', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079373, 112, '2020-04-09', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084031, 121, '2020-06-10', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084047, 117, '2020-05-12', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084048, 117, '2020-05-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085311, 106, '2020-06-13', NULL, NULL, NULL, NULL, NULL, '00:00:00', '04:10:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (988784, 146, '2020-01-09', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (988785, 146, '2020-01-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (988786, 146, '2020-01-11', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (988787, 146, '2020-01-12', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079374, 112, '2020-04-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079375, 112, '2020-04-11', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079376, 112, '2020-04-12', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079377, 112, '2020-04-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079378, 112, '2020-04-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079379, 112, '2020-04-15', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079380, 112, '2020-04-16', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079381, 112, '2020-04-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079382, 112, '2020-04-18', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079383, 112, '2020-04-19', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079384, 108, '2020-02-24', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079385, 108, '2020-02-25', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084053, 117, '2020-05-18', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084054, 117, '2020-05-19', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085312, 106, '2020-06-14', NULL, NULL, NULL, NULL, NULL, '00:00:00', '04:10:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085333, 110, '2020-05-10', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (988776, 146, '2020-01-01', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (988777, 146, '2020-01-02', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079398, 108, '2020-03-09', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079399, 108, '2020-03-10', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079400, 108, '2020-03-11', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079401, 108, '2020-03-12', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079402, 108, '2020-03-13', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079403, 108, '2020-03-14', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079404, 108, '2020-03-15', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079405, 108, '2020-03-16', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079406, 108, '2020-03-17', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079407, 108, '2020-03-18', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079408, 108, '2020-03-19', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084055, 117, '2020-05-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084060, 117, '2020-05-25', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084075, 117, '2020-06-09', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084076, 117, '2020-06-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085334, 110, '2020-05-11', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (988788, 146, '2020-01-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (988789, 146, '2020-01-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079409, 108, '2020-03-20', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079410, 108, '2020-03-21', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079411, 108, '2020-03-22', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079412, 108, '2020-03-23', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079427, 108, '2020-04-07', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079428, 108, '2020-04-08', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079429, 108, '2020-04-09', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079430, 108, '2020-04-10', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079431, 108, '2020-04-11', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079432, 108, '2020-04-12', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079433, 108, '2020-04-13', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079434, 108, '2020-04-14', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079435, 108, '2020-04-15', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084077, 117, '2020-06-11', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084078, 117, '2020-06-12', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084082, 125, '2020-04-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '03:20:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (988790, 146, '2020-01-15', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (988791, 146, '2020-01-16', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (988792, 146, '2020-01-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079436, 108, '2020-04-16', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079437, 108, '2020-04-17', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079438, 108, '2020-04-18', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079439, 108, '2020-04-19', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079440, 135, '2020-02-24', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079441, 135, '2020-02-25', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079442, 135, '2020-02-26', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079457, 135, '2020-03-12', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079458, 135, '2020-03-13', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079459, 135, '2020-03-14', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079460, 135, '2020-03-15', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079461, 135, '2020-03-16', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084083, 125, '2020-04-22', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '03:20:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084084, 125, '2020-04-23', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '03:20:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085335, 110, '2020-05-12', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085361, 110, '2020-06-07', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (988793, 146, '2020-01-18', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (988794, 146, '2020-01-19', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (988795, 146, '2020-01-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (988796, 146, '2020-01-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079462, 135, '2020-03-17', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079463, 135, '2020-03-18', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079464, 135, '2020-03-19', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079465, 135, '2020-03-20', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079466, 135, '2020-03-21', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079467, 135, '2020-03-22', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079468, 135, '2020-03-23', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079469, 135, '2020-03-24', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079470, 135, '2020-03-25', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079471, 135, '2020-03-26', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079486, 135, '2020-04-10', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084089, 125, '2020-04-28', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '03:20:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084104, 125, '2020-05-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '03:20:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084105, 125, '2020-05-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '03:20:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (988798, 146, '2020-01-23', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (988799, 146, '2020-01-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (988800, 146, '2020-01-25', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (988801, 146, '2020-01-26', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079487, 135, '2020-04-11', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079488, 135, '2020-04-12', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079489, 135, '2020-04-13', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079490, 135, '2020-04-14', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079491, 135, '2020-04-15', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079492, 135, '2020-04-16', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079493, 135, '2020-04-17', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079494, 135, '2020-04-18', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079495, 135, '2020-04-19', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079496, 127, '2020-02-24', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079497, 127, '2020-02-25', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084106, 125, '2020-05-15', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '03:20:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084107, 125, '2020-05-16', NULL, NULL, NULL, NULL, NULL, '00:00:00', '03:20:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '03:20:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084112, 125, '2020-05-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '03:20:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (988802, 146, '2020-01-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (988803, 146, '2020-01-28', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (988804, 146, '2020-01-29', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (988805, 146, '2020-01-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079498, 127, '2020-02-26', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079499, 127, '2020-02-27', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079500, 127, '2020-02-28', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079503, 127, '2020-03-02', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079504, 127, '2020-03-03', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079519, 127, '2020-03-18', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079520, 127, '2020-03-19', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079521, 127, '2020-03-20', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079522, 127, '2020-03-21', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079523, 127, '2020-03-22', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084115, 125, '2020-05-24', NULL, NULL, NULL, NULL, NULL, '00:00:00', '03:20:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084134, 125, '2020-06-12', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '03:20:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084135, 125, '2020-06-13', NULL, NULL, NULL, NULL, NULL, '00:00:00', '03:20:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '03:20:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084136, 125, '2020-06-14', NULL, NULL, NULL, NULL, NULL, '00:00:00', '03:20:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085364, 110, '2020-06-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (988806, 146, '2020-01-31', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (988807, 146, '2020-02-01', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (988808, 146, '2020-02-02', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (988809, 146, '2020-02-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079524, 127, '2020-03-23', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079525, 127, '2020-03-24', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079526, 127, '2020-03-25', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079527, 127, '2020-03-26', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079528, 127, '2020-03-27', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079529, 127, '2020-03-28', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079530, 127, '2020-03-29', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079531, 127, '2020-03-30', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079532, 127, '2020-03-31', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079533, 127, '2020-04-01', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079534, 127, '2020-04-02', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084137, 119, '2020-04-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084142, 119, '2020-04-25', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084143, 119, '2020-04-26', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085369, 145, '2020-04-20', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085370, 145, '2020-04-21', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (988810, 146, '2020-02-04', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (988811, 146, '2020-02-05', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (988812, 146, '2020-02-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (988813, 146, '2020-02-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079549, 127, '2020-04-17', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079550, 127, '2020-04-18', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079551, 127, '2020-04-19', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079552, 149, '2020-02-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079553, 149, '2020-02-25', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079554, 149, '2020-02-26', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079555, 149, '2020-02-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079556, 149, '2020-02-28', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079557, 149, '2020-02-29', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079558, 149, '2020-03-01', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079559, 149, '2020-03-02', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084144, 119, '2020-04-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084145, 119, '2020-04-28', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084164, 119, '2020-05-17', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (988814, 146, '2020-02-08', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (988815, 146, '2020-02-09', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (988816, 146, '2020-02-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (988817, 146, '2020-02-11', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079560, 149, '2020-03-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079561, 149, '2020-03-04', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079562, 149, '2020-03-05', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079563, 149, '2020-03-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079578, 149, '2020-03-21', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079579, 149, '2020-03-22', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079580, 149, '2020-03-23', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079581, 149, '2020-03-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079582, 149, '2020-03-25', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079583, 149, '2020-03-26', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084165, 119, '2020-05-18', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084166, 119, '2020-05-19', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084167, 119, '2020-05-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085371, 145, '2020-04-22', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085372, 145, '2020-04-23', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085391, 145, '2020-05-12', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (988818, 146, '2020-02-12', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (988819, 146, '2020-02-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (988820, 146, '2020-02-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079584, 149, '2020-03-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079585, 149, '2020-03-28', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079586, 149, '2020-03-29', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079587, 149, '2020-03-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079588, 149, '2020-03-31', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079589, 149, '2020-04-01', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079590, 149, '2020-04-02', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079591, 149, '2020-04-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079592, 149, '2020-04-04', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079593, 149, '2020-04-05', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079594, 149, '2020-04-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079609, 103, '2020-02-25', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084168, 119, '2020-05-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084173, 119, '2020-05-26', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084174, 119, '2020-05-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (988821, 146, '2020-02-15', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (988822, 146, '2020-02-16', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (988823, 146, '2020-02-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (988824, 146, '2020-02-18', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079610, 103, '2020-02-26', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079611, 103, '2020-02-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079612, 103, '2020-02-28', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079613, 103, '2020-02-29', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079614, 103, '2020-03-01', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079615, 103, '2020-03-02', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079616, 103, '2020-03-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079617, 103, '2020-03-04', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079618, 103, '2020-03-05', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079619, 103, '2020-03-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079620, 103, '2020-03-07', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079621, 103, '2020-03-08', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084175, 119, '2020-05-28', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084176, 119, '2020-05-29', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (988825, 146, '2020-02-19', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (988826, 146, '2020-02-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (988827, 146, '2020-02-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (988828, 146, '2020-02-22', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079622, 103, '2020-03-09', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079623, 103, '2020-03-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079624, 103, '2020-03-11', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079639, 103, '2020-03-26', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079640, 103, '2020-03-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079641, 103, '2020-03-28', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079642, 103, '2020-03-29', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079643, 103, '2020-03-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079644, 103, '2020-03-31', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079645, 103, '2020-04-01', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084197, 113, '2020-04-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084198, 113, '2020-04-25', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084199, 113, '2020-04-26', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084200, 113, '2020-04-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085392, 145, '2020-05-13', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (988829, 146, '2020-02-23', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (990930, 132, '2020-01-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (990931, 132, '2020-01-04', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (990932, 132, '2020-01-05', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (990933, 132, '2020-01-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079646, 103, '2020-04-02', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079647, 103, '2020-04-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079648, 103, '2020-04-04', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079649, 103, '2020-04-05', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079650, 103, '2020-04-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079651, 103, '2020-04-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079652, 103, '2020-04-08', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079653, 103, '2020-04-09', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079668, 121, '2020-02-28', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079669, 121, '2020-02-29', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079670, 121, '2020-03-01', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084204, 113, '2020-05-01', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084205, 113, '2020-05-02', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084206, 113, '2020-05-03', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (990934, 132, '2020-01-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (990935, 132, '2020-01-08', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (990936, 132, '2020-01-09', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079671, 121, '2020-03-02', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079672, 121, '2020-03-03', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079673, 121, '2020-03-04', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079674, 121, '2020-03-05', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079675, 121, '2020-03-06', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079676, 121, '2020-03-07', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079677, 121, '2020-03-08', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079678, 121, '2020-03-09', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079679, 121, '2020-03-10', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079680, 121, '2020-03-11', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079681, 121, '2020-03-12', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084225, 113, '2020-05-22', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084226, 113, '2020-05-23', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084227, 113, '2020-05-24', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085393, 145, '2020-05-14', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085394, 145, '2020-05-15', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (990937, 132, '2020-01-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (990938, 132, '2020-01-11', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (990939, 132, '2020-01-12', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (990940, 132, '2020-01-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079682, 121, '2020-03-13', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079683, 121, '2020-03-14', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079699, 121, '2020-03-30', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079700, 121, '2020-03-31', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079701, 121, '2020-04-01', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079702, 121, '2020-04-02', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079703, 121, '2020-04-03', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079704, 121, '2020-04-04', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079705, 121, '2020-04-05', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079706, 121, '2020-04-06', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084228, 113, '2020-05-25', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084229, 113, '2020-05-26', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084234, 113, '2020-05-31', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084235, 113, '2020-06-01', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (990941, 132, '2020-01-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (990942, 132, '2020-01-15', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (993082, 115, '2020-01-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079707, 121, '2020-04-07', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079708, 121, '2020-04-08', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079709, 121, '2020-04-09', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079710, 121, '2020-04-10', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079711, 121, '2020-04-11', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079712, 121, '2020-04-12', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079727, 125, '2020-03-02', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '03:20:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079728, 125, '2020-03-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '03:20:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079729, 125, '2020-03-04', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '03:20:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079730, 125, '2020-03-05', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '03:20:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079731, 125, '2020-03-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '03:20:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079732, 125, '2020-03-07', NULL, NULL, NULL, NULL, NULL, '00:00:00', '03:20:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '03:20:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084251, 147, '2020-04-22', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084256, 147, '2020-04-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085395, 145, '2020-05-16', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085396, 145, '2020-05-17', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (993083, 115, '2020-01-04', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (993084, 115, '2020-01-05', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (993085, 115, '2020-01-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (993086, 115, '2020-01-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079733, 125, '2020-03-08', NULL, NULL, NULL, NULL, NULL, '00:00:00', '03:20:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079734, 125, '2020-03-09', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '03:20:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079735, 125, '2020-03-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '03:20:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079736, 125, '2020-03-11', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '03:20:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079737, 125, '2020-03-12', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '03:20:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079738, 125, '2020-03-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '03:20:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079739, 125, '2020-03-14', NULL, NULL, NULL, NULL, NULL, '00:00:00', '03:20:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '03:20:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079740, 125, '2020-03-15', NULL, NULL, NULL, NULL, NULL, '00:00:00', '03:20:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079741, 125, '2020-03-16', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '03:20:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079742, 125, '2020-03-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '03:20:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079757, 125, '2020-04-01', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '03:20:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084257, 147, '2020-04-28', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084258, 147, '2020-04-29', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084259, 147, '2020-04-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085400, 145, '2020-05-21', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (993087, 115, '2020-01-08', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (993088, 115, '2020-01-09', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (993089, 115, '2020-01-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (993090, 115, '2020-01-11', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079758, 125, '2020-04-02', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '03:20:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079759, 125, '2020-04-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '03:20:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079760, 125, '2020-04-04', NULL, NULL, NULL, NULL, NULL, '00:00:00', '03:20:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '03:20:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079761, 125, '2020-04-05', NULL, NULL, NULL, NULL, NULL, '00:00:00', '03:20:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079762, 125, '2020-04-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '03:20:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079763, 125, '2020-04-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '03:20:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079764, 125, '2020-04-08', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '03:20:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079765, 125, '2020-04-09', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '03:20:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079766, 125, '2020-04-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '03:20:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079767, 125, '2020-04-11', NULL, NULL, NULL, NULL, NULL, '00:00:00', '03:20:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '03:20:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079768, 125, '2020-04-12', NULL, NULL, NULL, NULL, NULL, '00:00:00', '03:20:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084264, 147, '2020-05-05', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084279, 147, '2020-05-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084280, 147, '2020-05-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085401, 145, '2020-05-22', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (993091, 115, '2020-01-12', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (993092, 115, '2020-01-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (993093, 115, '2020-01-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (993094, 115, '2020-01-15', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079769, 125, '2020-04-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '03:20:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079770, 125, '2020-04-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '03:20:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079771, 125, '2020-04-15', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '03:20:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079786, 119, '2020-03-05', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079787, 119, '2020-03-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079788, 119, '2020-03-07', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079789, 119, '2020-03-08', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079790, 119, '2020-03-09', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079791, 119, '2020-03-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079792, 119, '2020-03-11', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079793, 119, '2020-03-12', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079794, 119, '2020-03-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084281, 147, '2020-05-22', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084282, 147, '2020-05-23', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (993095, 115, '2020-01-16', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (993096, 115, '2020-01-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (993097, 115, '2020-01-18', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (993098, 115, '2020-01-19', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079795, 119, '2020-03-14', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079796, 119, '2020-03-15', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079797, 119, '2020-03-16', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079798, 119, '2020-03-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079799, 119, '2020-03-18', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079800, 119, '2020-03-19', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079815, 119, '2020-04-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079816, 119, '2020-04-04', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079817, 119, '2020-04-05', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079818, 119, '2020-04-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079819, 119, '2020-04-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084287, 147, '2020-05-28', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084288, 147, '2020-05-29', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084289, 147, '2020-05-30', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084290, 147, '2020-05-31', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (993099, 115, '2020-01-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (993100, 115, '2020-01-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (993101, 115, '2020-01-22', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079820, 119, '2020-04-08', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079821, 119, '2020-04-09', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079822, 119, '2020-04-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079823, 119, '2020-04-11', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079824, 119, '2020-04-12', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079825, 119, '2020-04-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079826, 119, '2020-04-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079827, 119, '2020-04-15', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079828, 119, '2020-04-16', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079829, 119, '2020-04-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079844, 113, '2020-03-07', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084309, 131, '2020-04-24', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '04:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '04:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084310, 131, '2020-04-25', NULL, NULL, NULL, NULL, NULL, '00:00:00', '04:00:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084311, 131, '2020-04-26', NULL, NULL, NULL, NULL, NULL, '00:00:00', '04:00:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085403, 145, '2020-05-24', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085418, 145, '2020-06-08', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085423, 145, '2020-06-13', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (993102, 115, '2020-01-23', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (993103, 115, '2020-01-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (993104, 115, '2020-01-25', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (993105, 115, '2020-01-26', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079845, 113, '2020-03-08', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079846, 113, '2020-03-09', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079847, 113, '2020-03-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079848, 113, '2020-03-11', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079849, 113, '2020-03-12', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079850, 113, '2020-03-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079851, 113, '2020-03-14', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079852, 113, '2020-03-15', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079853, 113, '2020-03-16', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079854, 113, '2020-03-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079855, 113, '2020-03-18', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084312, 131, '2020-04-27', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '04:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '04:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084317, 131, '2020-05-02', NULL, NULL, NULL, NULL, NULL, '00:00:00', '04:00:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084318, 131, '2020-05-03', NULL, NULL, NULL, NULL, NULL, '00:00:00', '04:00:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084319, 131, '2020-05-04', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '04:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '04:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (993106, 115, '2020-01-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (993107, 115, '2020-01-28', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (993109, 115, '2020-01-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (993110, 115, '2020-01-31', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (993111, 115, '2020-02-01', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079856, 113, '2020-03-19', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079857, 113, '2020-03-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079858, 113, '2020-03-21', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079859, 113, '2020-03-22', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079874, 113, '2020-04-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079875, 113, '2020-04-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079876, 113, '2020-04-08', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079877, 113, '2020-04-09', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079878, 113, '2020-04-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079879, 113, '2020-04-11', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084320, 131, '2020-05-05', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '04:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '04:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084339, 131, '2020-05-24', NULL, NULL, NULL, NULL, NULL, '00:00:00', '04:00:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084340, 131, '2020-05-25', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '04:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '04:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085424, 145, '2020-06-14', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (993112, 115, '2020-02-02', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (993113, 115, '2020-02-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (993114, 115, '2020-02-04', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (993115, 115, '2020-02-05', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079880, 113, '2020-04-12', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079881, 113, '2020-04-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079882, 113, '2020-04-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079883, 113, '2020-04-15', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079884, 113, '2020-04-16', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079885, 113, '2020-04-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079886, 113, '2020-04-18', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079887, 113, '2020-04-19', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079888, 147, '2020-02-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079903, 147, '2020-03-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079904, 147, '2020-03-11', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084341, 131, '2020-05-26', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '04:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '04:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084342, 131, '2020-05-27', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '04:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '04:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085425, 148, '2020-04-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085426, 148, '2020-04-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (993116, 115, '2020-02-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (993117, 115, '2020-02-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (993118, 115, '2020-02-08', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (993119, 115, '2020-02-09', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079905, 147, '2020-03-12', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079906, 147, '2020-03-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079907, 147, '2020-03-14', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079908, 147, '2020-03-15', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079909, 147, '2020-03-16', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079910, 147, '2020-03-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079911, 147, '2020-03-18', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079912, 147, '2020-03-19', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079913, 147, '2020-03-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079914, 147, '2020-03-21', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079915, 147, '2020-03-22', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079916, 147, '2020-03-23', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084347, 131, '2020-06-01', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '04:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '04:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084348, 131, '2020-06-02', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '04:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '04:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085431, 148, '2020-04-26', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (993120, 115, '2020-02-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (993121, 115, '2020-02-11', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (993122, 115, '2020-02-12', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079917, 147, '2020-03-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079932, 147, '2020-04-08', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079933, 147, '2020-04-09', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079934, 147, '2020-04-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079935, 147, '2020-04-11', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079936, 147, '2020-04-12', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079937, 147, '2020-04-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079938, 147, '2020-04-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079939, 147, '2020-04-15', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079940, 147, '2020-04-16', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079941, 147, '2020-04-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084349, 131, '2020-06-03', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '04:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '04:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084350, 131, '2020-06-04', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '04:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '04:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084369, 104, '2020-04-28', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085432, 148, '2020-04-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (990928, 132, '2020-01-01', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (990929, 132, '2020-01-02', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079942, 147, '2020-04-18', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079943, 147, '2020-04-19', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079944, 131, '2020-02-24', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '04:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '04:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079945, 131, '2020-02-25', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '04:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '04:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079946, 131, '2020-02-26', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '04:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '04:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079961, 131, '2020-03-12', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '04:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '04:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079962, 131, '2020-03-13', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '04:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '04:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079963, 131, '2020-03-14', NULL, NULL, NULL, NULL, NULL, '00:00:00', '04:00:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079964, 131, '2020-03-15', NULL, NULL, NULL, NULL, NULL, '00:00:00', '04:00:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079965, 131, '2020-03-16', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '04:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '04:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079966, 131, '2020-03-17', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '04:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '04:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079967, 131, '2020-03-18', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '04:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '04:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084370, 104, '2020-04-29', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084371, 104, '2020-04-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084372, 104, '2020-05-01', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084373, 104, '2020-05-02', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:00:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (993123, 115, '2020-02-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (993124, 115, '2020-02-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (993125, 115, '2020-02-15', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (993126, 115, '2020-02-16', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079968, 131, '2020-03-19', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '04:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '04:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079969, 131, '2020-03-20', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '04:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '04:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079970, 131, '2020-03-21', NULL, NULL, NULL, NULL, NULL, '00:00:00', '04:00:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079971, 131, '2020-03-22', NULL, NULL, NULL, NULL, NULL, '00:00:00', '04:00:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079972, 131, '2020-03-23', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '04:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '04:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079973, 131, '2020-03-24', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '04:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '04:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079974, 131, '2020-03-25', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '04:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '04:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079975, 131, '2020-03-26', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '04:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '04:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079990, 131, '2020-04-10', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '04:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '04:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079991, 131, '2020-04-11', NULL, NULL, NULL, NULL, NULL, '00:00:00', '04:00:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079992, 131, '2020-04-12', NULL, NULL, NULL, NULL, NULL, '00:00:00', '04:00:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084378, 104, '2020-05-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084379, 104, '2020-05-08', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084380, 104, '2020-05-09', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:00:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084381, 104, '2020-05-10', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:00:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085447, 148, '2020-05-12', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (993127, 115, '2020-02-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (993128, 115, '2020-02-18', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (993129, 115, '2020-02-19', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079993, 131, '2020-04-13', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '04:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '04:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079994, 131, '2020-04-14', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '04:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '04:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079995, 131, '2020-04-15', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '04:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '04:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079996, 131, '2020-04-16', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '04:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '04:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079997, 131, '2020-04-17', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '04:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '04:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079998, 131, '2020-04-18', NULL, NULL, NULL, NULL, NULL, '00:00:00', '04:00:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079999, 131, '2020-04-19', NULL, NULL, NULL, NULL, NULL, '00:00:00', '04:00:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080000, 104, '2020-02-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080001, 104, '2020-02-25', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080002, 104, '2020-02-26', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080003, 104, '2020-02-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080004, 104, '2020-02-28', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084396, 104, '2020-05-25', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084397, 104, '2020-05-26', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (993130, 115, '2020-02-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (993131, 115, '2020-02-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (993132, 115, '2020-02-22', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (993133, 115, '2020-02-23', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080005, 104, '2020-02-29', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:00:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080021, 104, '2020-03-16', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080022, 104, '2020-03-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080023, 104, '2020-03-18', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080024, 104, '2020-03-19', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080025, 104, '2020-03-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080026, 104, '2020-03-21', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:00:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080027, 104, '2020-03-22', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:00:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080028, 104, '2020-03-23', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080029, 104, '2020-03-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080030, 104, '2020-03-25', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084404, 104, '2020-06-02', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084405, 104, '2020-06-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084410, 104, '2020-06-08', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085452, 148, '2020-05-17', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (995233, 114, '2020-01-02', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (995234, 114, '2020-01-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (995235, 114, '2020-01-04', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (995236, 114, '2020-01-05', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (995237, 114, '2020-01-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080031, 104, '2020-03-26', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080032, 104, '2020-03-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080033, 104, '2020-03-28', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:00:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080034, 104, '2020-03-29', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:00:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080049, 104, '2020-04-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080050, 104, '2020-04-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080051, 104, '2020-04-15', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080052, 104, '2020-04-16', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080053, 104, '2020-04-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080054, 104, '2020-04-18', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:00:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084425, 151, '2020-04-28', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084426, 151, '2020-04-29', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084427, 151, '2020-04-30', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (995238, 114, '2020-01-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (995239, 114, '2020-01-08', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (995240, 114, '2020-01-09', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080055, 104, '2020-04-19', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:00:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080056, 151, '2020-02-24', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080057, 151, '2020-02-25', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080058, 151, '2020-02-26', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080059, 151, '2020-02-27', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080060, 151, '2020-02-28', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080061, 151, '2020-02-29', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080062, 151, '2020-03-01', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080063, 151, '2020-03-02', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080078, 151, '2020-03-17', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080079, 151, '2020-03-18', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084432, 151, '2020-05-05', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084433, 151, '2020-05-06', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084434, 151, '2020-05-07', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085454, 148, '2020-05-19', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085459, 148, '2020-05-24', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (995241, 114, '2020-01-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (995242, 114, '2020-01-11', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (995243, 114, '2020-01-12', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (995244, 114, '2020-01-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080080, 151, '2020-03-19', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080081, 151, '2020-03-20', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080082, 151, '2020-03-21', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080083, 151, '2020-03-22', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080084, 151, '2020-03-23', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080085, 151, '2020-03-24', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080086, 151, '2020-03-25', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080087, 151, '2020-03-26', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080088, 151, '2020-03-27', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080089, 151, '2020-03-28', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080090, 151, '2020-03-29', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084435, 151, '2020-05-08', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084436, 151, '2020-05-09', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084453, 151, '2020-05-26', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085460, 148, '2020-05-25', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085461, 148, '2020-05-26', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (995245, 114, '2020-01-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (995246, 114, '2020-01-15', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (995247, 114, '2020-01-16', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080091, 151, '2020-03-30', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080092, 151, '2020-03-31', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080107, 151, '2020-04-15', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080108, 151, '2020-04-16', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080109, 151, '2020-04-17', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080110, 151, '2020-04-18', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080111, 151, '2020-04-19', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080112, 138, '2020-02-24', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080113, 138, '2020-02-25', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080114, 138, '2020-02-26', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080115, 138, '2020-02-27', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084454, 151, '2020-05-27', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084455, 151, '2020-05-28', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084456, 151, '2020-05-29', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (995248, 114, '2020-01-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (995249, 114, '2020-01-18', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (995250, 114, '2020-01-19', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (995251, 114, '2020-01-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (995252, 114, '2020-01-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080116, 138, '2020-02-28', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080117, 138, '2020-02-29', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080118, 138, '2020-03-01', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080119, 138, '2020-03-02', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080120, 138, '2020-03-03', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080121, 138, '2020-03-04', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080136, 138, '2020-03-19', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080137, 138, '2020-03-20', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080138, 138, '2020-03-21', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080139, 138, '2020-03-22', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080140, 138, '2020-03-23', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084461, 151, '2020-06-03', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084462, 151, '2020-06-04', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (995253, 114, '2020-01-22', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (995254, 114, '2020-01-23', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (995255, 114, '2020-01-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080141, 138, '2020-03-24', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080142, 138, '2020-03-25', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080143, 138, '2020-03-26', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080144, 138, '2020-03-27', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080145, 138, '2020-03-28', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080146, 138, '2020-03-29', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080147, 138, '2020-03-30', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080148, 138, '2020-03-31', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080149, 138, '2020-04-01', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080150, 138, '2020-04-02', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080165, 138, '2020-04-17', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084464, 151, '2020-06-06', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084488, 138, '2020-05-05', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084489, 138, '2020-05-06', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (995256, 114, '2020-01-25', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (995257, 114, '2020-01-26', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (995258, 114, '2020-01-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (995259, 114, '2020-01-28', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080166, 138, '2020-04-18', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080167, 138, '2020-04-19', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080168, 105, '2020-02-24', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080169, 105, '2020-02-25', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080170, 105, '2020-02-26', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080171, 105, '2020-02-27', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080172, 105, '2020-02-28', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080173, 105, '2020-02-29', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080174, 105, '2020-03-01', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080175, 105, '2020-03-02', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080176, 105, '2020-03-03', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084491, 138, '2020-05-08', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084492, 138, '2020-05-09', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084496, 138, '2020-05-13', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (995260, 114, '2020-01-29', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (995261, 114, '2020-01-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (995262, 114, '2020-01-31', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (995263, 114, '2020-02-01', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080177, 105, '2020-03-04', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080178, 105, '2020-03-05', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080179, 105, '2020-03-06', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080180, 105, '2020-03-07', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080195, 105, '2020-03-22', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080196, 105, '2020-03-23', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080197, 105, '2020-03-24', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080198, 105, '2020-03-25', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080199, 105, '2020-03-26', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080200, 105, '2020-03-27', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080201, 105, '2020-03-28', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080202, 105, '2020-03-29', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084498, 138, '2020-05-15', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084499, 138, '2020-05-16', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085476, 148, '2020-06-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (995264, 114, '2020-02-02', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (995265, 114, '2020-02-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (995266, 114, '2020-02-04', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (995268, 114, '2020-02-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080203, 105, '2020-03-30', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080204, 105, '2020-03-31', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080205, 105, '2020-04-01', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080206, 105, '2020-04-02', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080207, 105, '2020-04-03', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080208, 105, '2020-04-04', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080209, 105, '2020-04-05', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080210, 105, '2020-04-06', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080225, 134, '2020-02-25', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080226, 134, '2020-02-26', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084518, 138, '2020-06-04', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084519, 138, '2020-06-05', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084520, 138, '2020-06-06', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084521, 138, '2020-06-07', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085481, 130, '2020-04-20', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (995269, 114, '2020-02-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (995270, 114, '2020-02-08', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (995271, 114, '2020-02-09', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (995272, 114, '2020-02-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (995273, 114, '2020-02-11', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080227, 134, '2020-02-27', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080228, 134, '2020-02-28', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080229, 134, '2020-02-29', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080230, 134, '2020-03-01', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080231, 134, '2020-03-02', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080232, 134, '2020-03-03', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080233, 134, '2020-03-04', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080234, 134, '2020-03-05', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080235, 134, '2020-03-06', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080236, 134, '2020-03-07', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084525, 138, '2020-06-11', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084526, 138, '2020-06-12', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084527, 138, '2020-06-13', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (995274, 114, '2020-02-12', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (995275, 114, '2020-02-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (995276, 114, '2020-02-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (995279, 114, '2020-02-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080237, 134, '2020-03-08', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080238, 134, '2020-03-09', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080239, 134, '2020-03-10', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080254, 134, '2020-03-25', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080255, 134, '2020-03-26', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080256, 134, '2020-03-27', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080257, 134, '2020-03-28', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080258, 134, '2020-03-29', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080259, 134, '2020-03-30', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080260, 134, '2020-03-31', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080261, 134, '2020-04-01', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084529, 105, '2020-04-20', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084548, 105, '2020-05-09', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084549, 105, '2020-05-10', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085482, 130, '2020-04-21', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (995280, 114, '2020-02-18', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (995281, 114, '2020-02-19', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (995282, 114, '2020-02-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080262, 134, '2020-04-02', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080263, 134, '2020-04-03', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080264, 134, '2020-04-04', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080265, 134, '2020-04-05', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080266, 134, '2020-04-06', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080267, 134, '2020-04-07', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080268, 134, '2020-04-08', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080283, 144, '2020-02-27', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080284, 144, '2020-02-28', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080285, 144, '2020-02-29', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080286, 144, '2020-03-01', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084550, 105, '2020-05-11', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084551, 105, '2020-05-12', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084556, 105, '2020-05-17', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084557, 105, '2020-05-18', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085483, 130, '2020-04-22', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (995283, 114, '2020-02-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (995284, 114, '2020-02-22', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (995285, 114, '2020-02-23', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (997390, 112, '2020-01-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080287, 144, '2020-03-02', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080288, 144, '2020-03-03', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080289, 144, '2020-03-04', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080290, 144, '2020-03-05', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080291, 144, '2020-03-06', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080292, 144, '2020-03-07', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080293, 144, '2020-03-08', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080294, 144, '2020-03-09', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080295, 144, '2020-03-10', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080296, 144, '2020-03-11', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080297, 144, '2020-03-12', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084558, 105, '2020-05-19', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084559, 105, '2020-05-20', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084578, 105, '2020-06-08', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (997391, 112, '2020-01-08', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (997392, 112, '2020-01-09', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (997393, 112, '2020-01-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (997394, 112, '2020-01-11', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080312, 144, '2020-03-27', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080313, 144, '2020-03-28', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080314, 144, '2020-03-29', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080315, 144, '2020-03-30', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080316, 144, '2020-03-31', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080317, 102, '2020-02-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080318, 102, '2020-02-25', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080319, 102, '2020-02-26', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080320, 102, '2020-02-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080321, 102, '2020-02-28', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080322, 102, '2020-02-29', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084579, 105, '2020-06-09', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084580, 105, '2020-06-10', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085488, 130, '2020-04-27', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085489, 130, '2020-04-28', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (997395, 112, '2020-01-12', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (997396, 112, '2020-01-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (997397, 112, '2020-01-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (997398, 112, '2020-01-15', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080323, 102, '2020-03-01', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080324, 102, '2020-03-02', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080325, 102, '2020-03-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080326, 102, '2020-03-04', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080327, 102, '2020-03-05', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080342, 102, '2020-03-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080343, 102, '2020-03-21', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080344, 102, '2020-03-22', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080345, 102, '2020-03-23', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080346, 102, '2020-03-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080347, 102, '2020-03-25', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080348, 102, '2020-03-26', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084581, 105, '2020-06-11', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084586, 134, '2020-04-21', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (997399, 112, '2020-01-16', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (997400, 112, '2020-01-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (997401, 112, '2020-01-18', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (997402, 112, '2020-01-19', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080349, 102, '2020-03-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080350, 102, '2020-03-28', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080351, 102, '2020-03-29', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080352, 102, '2020-03-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080353, 102, '2020-03-31', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080354, 102, '2020-04-01', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080355, 102, '2020-04-02', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080356, 102, '2020-04-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080371, 102, '2020-04-18', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080372, 102, '2020-04-19', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084587, 134, '2020-04-22', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084588, 134, '2020-04-23', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084589, 134, '2020-04-24', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084590, 134, '2020-04-25', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (997403, 112, '2020-01-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (997404, 112, '2020-01-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (997405, 112, '2020-01-22', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (997413, 112, '2020-01-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080373, 109, '2020-02-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080374, 109, '2020-02-25', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080375, 109, '2020-02-26', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080376, 109, '2020-02-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080377, 109, '2020-02-28', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080378, 109, '2020-02-29', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080379, 109, '2020-03-01', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080380, 109, '2020-03-02', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080381, 109, '2020-03-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080382, 109, '2020-03-04', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080383, 109, '2020-03-05', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084611, 134, '2020-05-16', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084612, 134, '2020-05-17', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085490, 130, '2020-04-29', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085505, 130, '2020-05-14', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085510, 130, '2020-05-19', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (997414, 112, '2020-01-31', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (997415, 112, '2020-02-01', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (997416, 112, '2020-02-02', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (997417, 112, '2020-02-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080384, 109, '2020-03-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080385, 109, '2020-03-07', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080386, 109, '2020-03-08', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080401, 109, '2020-03-23', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080402, 109, '2020-03-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080403, 109, '2020-03-25', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080404, 109, '2020-03-26', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080405, 109, '2020-03-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080406, 109, '2020-03-28', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080407, 109, '2020-03-29', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080408, 109, '2020-03-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084613, 134, '2020-05-18', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084618, 134, '2020-05-23', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084619, 134, '2020-05-24', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (993134, 115, '2019-12-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (993135, 115, '2019-12-31', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (997418, 112, '2020-02-04', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080409, 109, '2020-03-31', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080410, 109, '2020-04-01', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080411, 109, '2020-04-02', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080412, 109, '2020-04-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080413, 109, '2020-04-04', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080414, 109, '2020-04-05', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080415, 109, '2020-04-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080430, 118, '2020-02-25', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080431, 118, '2020-02-26', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080432, 118, '2020-02-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080433, 118, '2020-02-28', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084640, 134, '2020-06-14', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084641, 102, '2020-04-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084642, 102, '2020-04-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085511, 130, '2020-05-20', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085512, 130, '2020-05-21', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (997419, 112, '2020-02-05', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (997420, 112, '2020-02-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (997421, 112, '2020-02-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (997422, 112, '2020-02-08', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080434, 118, '2020-02-29', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080435, 118, '2020-03-01', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080436, 118, '2020-03-02', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080437, 118, '2020-03-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080438, 118, '2020-03-04', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080439, 118, '2020-03-05', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080440, 118, '2020-03-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080441, 118, '2020-03-07', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080442, 118, '2020-03-08', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080443, 118, '2020-03-09', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080444, 118, '2020-03-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080459, 118, '2020-03-25', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084643, 102, '2020-04-22', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084648, 102, '2020-04-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (997423, 112, '2020-02-09', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (997424, 112, '2020-02-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (997425, 112, '2020-02-11', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (997426, 112, '2020-02-12', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080460, 118, '2020-03-26', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080461, 118, '2020-03-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080462, 118, '2020-03-28', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080463, 118, '2020-03-29', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080464, 118, '2020-03-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080465, 118, '2020-03-31', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080466, 118, '2020-04-01', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080467, 118, '2020-04-02', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080468, 118, '2020-04-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080469, 118, '2020-04-04', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080470, 118, '2020-04-05', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084663, 102, '2020-05-12', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084664, 102, '2020-05-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084665, 102, '2020-05-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085513, 130, '2020-05-22', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (997427, 112, '2020-02-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (997428, 112, '2020-02-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (997429, 112, '2020-02-15', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (997430, 112, '2020-02-16', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080471, 118, '2020-04-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080472, 118, '2020-04-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080473, 118, '2020-04-08', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080488, 133, '2020-02-27', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080489, 133, '2020-02-28', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080490, 133, '2020-02-29', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080491, 133, '2020-03-01', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080492, 133, '2020-03-02', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080493, 133, '2020-03-03', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080494, 133, '2020-03-04', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084669, 102, '2020-05-18', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084670, 102, '2020-05-19', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084671, 102, '2020-05-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085515, 130, '2020-05-24', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085516, 130, '2020-05-25', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (993080, 115, '2020-01-01', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (993081, 115, '2020-01-02', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080495, 133, '2020-03-05', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080496, 133, '2020-03-06', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080497, 133, '2020-03-07', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080498, 133, '2020-03-08', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080499, 133, '2020-03-09', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080500, 133, '2020-03-10', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080501, 133, '2020-03-11', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080502, 133, '2020-03-12', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080517, 133, '2020-03-27', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080518, 133, '2020-03-28', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080519, 133, '2020-03-29', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080520, 133, '2020-03-30', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080521, 133, '2020-03-31', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084672, 102, '2020-05-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084677, 102, '2020-05-26', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084692, 102, '2020-06-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (993108, 115, '2020-01-29', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080522, 133, '2020-04-01', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080523, 133, '2020-04-02', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080524, 133, '2020-04-03', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080525, 133, '2020-04-04', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080526, 133, '2020-04-05', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080527, 133, '2020-04-06', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080528, 133, '2020-04-07', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080529, 133, '2020-04-08', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080530, 133, '2020-04-09', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080531, 133, '2020-04-10', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080546, 111, '2020-02-29', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080547, 111, '2020-03-01', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080548, 111, '2020-03-02', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084693, 102, '2020-06-11', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084694, 102, '2020-06-12', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084699, 109, '2020-04-22', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085535, 130, '2020-06-13', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085536, 130, '2020-06-14', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085537, 129, '2020-04-20', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085543, 129, '2020-04-26', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (997431, 112, '2020-02-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (997432, 112, '2020-02-18', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (997433, 112, '2020-02-19', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080549, 111, '2020-03-03', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080550, 111, '2020-03-04', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080551, 111, '2020-03-05', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080552, 111, '2020-03-06', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080553, 111, '2020-03-07', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080554, 111, '2020-03-08', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080555, 111, '2020-03-09', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080556, 111, '2020-03-10', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080557, 111, '2020-03-11', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080558, 111, '2020-03-12', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080559, 111, '2020-03-13', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084700, 109, '2020-04-23', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084701, 109, '2020-04-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084702, 109, '2020-04-25', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084703, 109, '2020-04-26', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (997434, 112, '2020-02-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (997435, 112, '2020-02-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080560, 111, '2020-03-14', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080561, 111, '2020-03-15', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080576, 111, '2020-03-30', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080577, 111, '2020-03-31', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080578, 111, '2020-04-01', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080579, 111, '2020-04-02', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080580, 111, '2020-04-03', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080581, 111, '2020-04-04', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080582, 111, '2020-04-05', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080583, 111, '2020-04-06', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080584, 111, '2020-04-07', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080585, 111, '2020-04-08', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084722, 109, '2020-05-15', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084723, 109, '2020-05-16', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084724, 109, '2020-05-17', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084725, 109, '2020-05-18', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085544, 129, '2020-04-27', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (997436, 112, '2020-02-22', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (997437, 112, '2020-02-23', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080586, 111, '2020-04-09', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080587, 111, '2020-04-10', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080588, 111, '2020-04-11', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080589, 111, '2020-04-12', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080590, 111, '2020-04-13', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080605, 128, '2020-03-03', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080606, 128, '2020-03-04', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080607, 128, '2020-03-05', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080608, 128, '2020-03-06', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080609, 128, '2020-03-07', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080610, 128, '2020-03-08', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080611, 128, '2020-03-09', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080612, 128, '2020-03-10', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084729, 109, '2020-05-22', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084730, 109, '2020-05-23', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084731, 109, '2020-05-24', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (999560, 108, '2020-01-25', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (999561, 108, '2020-01-26', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (999562, 108, '2020-01-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080613, 128, '2020-03-11', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080614, 128, '2020-03-12', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080615, 128, '2020-03-13', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080616, 128, '2020-03-14', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080617, 128, '2020-03-15', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080618, 128, '2020-03-16', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080619, 128, '2020-03-17', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080634, 128, '2020-04-01', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080635, 128, '2020-04-02', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080636, 128, '2020-04-03', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080637, 128, '2020-04-04', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080638, 128, '2020-04-05', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084752, 109, '2020-06-14', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084753, 118, '2020-04-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084754, 118, '2020-04-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084755, 118, '2020-04-22', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (999563, 108, '2020-01-28', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (999564, 108, '2020-01-29', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080639, 128, '2020-04-06', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080640, 128, '2020-04-07', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080641, 128, '2020-04-08', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080642, 128, '2020-04-09', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080643, 128, '2020-04-10', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080644, 128, '2020-04-11', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080645, 128, '2020-04-12', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080646, 128, '2020-04-13', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080647, 128, '2020-04-14', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080648, 128, '2020-04-15', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080663, 142, '2020-03-05', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080664, 142, '2020-03-06', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084760, 118, '2020-04-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084761, 118, '2020-04-28', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084762, 118, '2020-04-29', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085545, 129, '2020-04-28', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (999565, 108, '2020-01-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (999566, 108, '2020-01-31', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (999567, 108, '2020-02-01', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080665, 142, '2020-03-07', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080666, 142, '2020-03-08', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080667, 142, '2020-03-09', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080668, 142, '2020-03-10', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080669, 142, '2020-03-11', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080670, 142, '2020-03-12', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080671, 142, '2020-03-13', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080672, 142, '2020-03-14', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080673, 142, '2020-03-15', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080674, 142, '2020-03-16', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080675, 142, '2020-03-17', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080676, 142, '2020-03-18', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084763, 118, '2020-04-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084782, 118, '2020-05-19', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084783, 118, '2020-05-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085546, 129, '2020-04-29', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (999568, 108, '2020-02-02', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (999569, 108, '2020-02-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080677, 142, '2020-03-19', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080692, 142, '2020-04-03', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080693, 142, '2020-04-04', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080694, 142, '2020-04-05', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080695, 142, '2020-04-06', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080696, 142, '2020-04-07', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080697, 142, '2020-04-08', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080698, 142, '2020-04-09', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080699, 142, '2020-04-10', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080700, 142, '2020-04-11', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080701, 142, '2020-04-12', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080702, 142, '2020-04-13', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084784, 118, '2020-05-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084785, 118, '2020-05-22', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084786, 118, '2020-05-23', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084787, 118, '2020-05-24', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085566, 129, '2020-05-19', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085567, 129, '2020-05-20', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (999570, 108, '2020-02-04', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (999571, 108, '2020-02-05', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080703, 142, '2020-04-14', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080704, 142, '2020-04-15', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080705, 142, '2020-04-16', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080706, 142, '2020-04-17', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080721, 136, '2020-03-07', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080722, 136, '2020-03-08', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080723, 136, '2020-03-09', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080724, 136, '2020-03-10', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080725, 136, '2020-03-11', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080726, 136, '2020-03-12', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080727, 136, '2020-03-13', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080728, 136, '2020-03-14', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080729, 136, '2020-03-15', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084792, 118, '2020-05-29', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084793, 118, '2020-05-30', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084794, 118, '2020-05-31', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085568, 129, '2020-05-21', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085569, 129, '2020-05-22', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (999572, 108, '2020-02-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (999573, 108, '2020-02-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (999575, 108, '2020-02-09', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080730, 136, '2020-03-16', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080731, 136, '2020-03-17', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080732, 136, '2020-03-18', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080733, 136, '2020-03-19', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080734, 136, '2020-03-20', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080735, 136, '2020-03-21', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080736, 136, '2020-03-22', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080751, 136, '2020-04-06', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080752, 136, '2020-04-07', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080753, 136, '2020-04-08', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080754, 136, '2020-04-09', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084809, 133, '2020-04-20', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084813, 133, '2020-04-24', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084814, 133, '2020-04-25', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084815, 133, '2020-04-26', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (999581, 108, '2020-02-15', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1001724, 135, '2020-02-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1001725, 135, '2020-02-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080755, 136, '2020-04-10', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080756, 136, '2020-04-11', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080757, 136, '2020-04-12', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080758, 136, '2020-04-13', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080759, 136, '2020-04-14', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080760, 136, '2020-04-15', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080761, 136, '2020-04-16', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080762, 136, '2020-04-17', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080763, 136, '2020-04-18', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080764, 136, '2020-04-19', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080765, 139, '2020-02-24', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080780, 139, '2020-03-10', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084816, 133, '2020-04-27', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084817, 133, '2020-04-28', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084822, 133, '2020-05-03', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085574, 129, '2020-05-27', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1001726, 135, '2020-02-08', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1001727, 135, '2020-02-09', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080781, 139, '2020-03-11', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080782, 139, '2020-03-12', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080783, 139, '2020-03-13', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080784, 139, '2020-03-14', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080785, 139, '2020-03-15', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080786, 139, '2020-03-16', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080787, 139, '2020-03-17', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080788, 139, '2020-03-18', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080789, 139, '2020-03-19', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080790, 139, '2020-03-20', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080791, 139, '2020-03-21', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080792, 139, '2020-03-22', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080793, 139, '2020-03-23', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084823, 133, '2020-05-04', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084838, 133, '2020-05-19', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084839, 133, '2020-05-20', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085576, 129, '2020-05-29', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085577, 129, '2020-05-30', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1001728, 135, '2020-02-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1001729, 135, '2020-02-11', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080794, 139, '2020-03-24', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080809, 139, '2020-04-08', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080810, 139, '2020-04-09', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080811, 139, '2020-04-10', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080812, 139, '2020-04-11', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080813, 139, '2020-04-12', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080814, 139, '2020-04-13', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080815, 139, '2020-04-14', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080816, 139, '2020-04-15', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080817, 139, '2020-04-16', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080818, 139, '2020-04-17', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080819, 139, '2020-04-18', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084844, 133, '2020-05-25', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084845, 133, '2020-05-26', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084846, 133, '2020-05-27', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085596, 143, '2020-04-23', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1001730, 135, '2020-02-12', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1001731, 135, '2020-02-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080820, 139, '2020-04-19', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080821, 141, '2020-02-24', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080822, 141, '2020-02-25', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080823, 141, '2020-02-26', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080838, 141, '2020-03-12', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080839, 141, '2020-03-13', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080840, 141, '2020-03-14', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080841, 141, '2020-03-15', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080842, 141, '2020-03-16', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080843, 141, '2020-03-17', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080844, 141, '2020-03-18', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080845, 141, '2020-03-19', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084847, 133, '2020-05-28', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084852, 133, '2020-06-02', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084867, 111, '2020-04-22', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1001732, 135, '2020-02-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1001733, 135, '2020-02-15', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1001734, 135, '2020-02-16', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080846, 141, '2020-03-20', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080847, 141, '2020-03-21', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080848, 141, '2020-03-22', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080849, 141, '2020-03-23', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080850, 141, '2020-03-24', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080851, 141, '2020-03-25', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080852, 141, '2020-03-26', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080867, 141, '2020-04-10', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080868, 141, '2020-04-11', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080869, 141, '2020-04-12', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080870, 141, '2020-04-13', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084869, 111, '2020-04-24', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084874, 111, '2020-04-29', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084875, 111, '2020-04-30', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084876, 111, '2020-05-01', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085597, 143, '2020-04-24', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1001735, 135, '2020-02-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1001736, 135, '2020-02-18', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080871, 141, '2020-04-14', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080872, 141, '2020-04-15', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080873, 141, '2020-04-16', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080874, 141, '2020-04-17', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080875, 141, '2020-04-18', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080876, 141, '2020-04-19', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080877, 122, '2020-02-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080878, 122, '2020-02-25', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080879, 122, '2020-02-26', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080880, 122, '2020-02-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080881, 122, '2020-02-28', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080882, 122, '2020-02-29', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080890, 122, '2020-03-08', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084877, 111, '2020-05-02', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084878, 111, '2020-05-03', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084897, 111, '2020-05-22', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085600, 143, '2020-04-27', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085605, 143, '2020-05-02', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1001737, 135, '2020-02-19', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1001738, 135, '2020-02-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080891, 122, '2020-03-09', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080892, 122, '2020-03-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080893, 122, '2020-03-11', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080894, 122, '2020-03-12', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080895, 122, '2020-03-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080896, 122, '2020-03-14', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080899, 122, '2020-03-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080900, 122, '2020-03-18', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080915, 122, '2020-04-02', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080916, 122, '2020-04-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080917, 122, '2020-04-04', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084898, 111, '2020-05-23', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084899, 111, '2020-05-24', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084900, 111, '2020-05-25', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084905, 111, '2020-05-30', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084906, 111, '2020-05-31', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085606, 143, '2020-05-03', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1001739, 135, '2020-02-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1001740, 135, '2020-02-22', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080918, 122, '2020-04-05', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080919, 122, '2020-04-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080920, 122, '2020-04-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080921, 122, '2020-04-08', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080922, 122, '2020-04-09', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080923, 122, '2020-04-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080924, 122, '2020-04-11', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080925, 122, '2020-04-12', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080926, 122, '2020-04-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080927, 122, '2020-04-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080928, 122, '2020-04-15', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080929, 122, '2020-04-16', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084907, 111, '2020-06-01', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084908, 111, '2020-06-02', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084927, 128, '2020-04-26', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084928, 128, '2020-04-27', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085607, 143, '2020-05-04', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1001741, 135, '2020-02-23', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1003859, 127, '2020-01-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1003860, 127, '2020-01-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080944, 106, '2020-03-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '04:10:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080945, 106, '2020-03-07', NULL, NULL, NULL, NULL, NULL, '00:00:00', '04:10:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080946, 106, '2020-03-08', NULL, NULL, NULL, NULL, NULL, '00:00:00', '04:10:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080947, 106, '2020-03-09', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '04:10:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '04:10:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080948, 106, '2020-03-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '04:10:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '04:10:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080949, 106, '2020-03-11', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '04:10:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '04:10:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080950, 106, '2020-03-12', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '04:10:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '04:10:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080951, 106, '2020-03-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '04:10:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080952, 106, '2020-03-14', NULL, NULL, NULL, NULL, NULL, '00:00:00', '04:10:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080953, 106, '2020-03-15', NULL, NULL, NULL, NULL, NULL, '00:00:00', '04:10:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080954, 106, '2020-03-16', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '04:10:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '04:10:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080955, 106, '2020-03-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '04:10:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '04:10:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084929, 128, '2020-04-28', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084930, 128, '2020-04-29', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084935, 128, '2020-05-04', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085628, 143, '2020-05-25', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1003861, 127, '2020-01-22', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1003862, 127, '2020-01-23', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080956, 106, '2020-03-18', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '04:10:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '04:10:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080957, 106, '2020-03-19', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '04:10:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '04:10:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080958, 106, '2020-03-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '04:10:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080959, 106, '2020-03-21', NULL, NULL, NULL, NULL, NULL, '00:00:00', '04:10:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080974, 106, '2020-04-05', NULL, NULL, NULL, NULL, NULL, '00:00:00', '04:10:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080975, 106, '2020-04-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '04:10:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '04:10:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080976, 106, '2020-04-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '04:10:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '04:10:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080977, 106, '2020-04-08', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '04:10:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '04:10:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080978, 106, '2020-04-09', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '04:10:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '04:10:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080979, 106, '2020-04-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '04:10:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080980, 106, '2020-04-11', NULL, NULL, NULL, NULL, NULL, '00:00:00', '04:10:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080981, 106, '2020-04-12', NULL, NULL, NULL, NULL, NULL, '00:00:00', '04:10:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080982, 106, '2020-04-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '04:10:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '04:10:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084936, 128, '2020-05-05', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084937, 128, '2020-05-06', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084938, 128, '2020-05-07', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (995286, 114, '2019-12-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (995287, 114, '2019-12-31', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080983, 106, '2020-04-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '04:10:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '04:10:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080984, 106, '2020-04-15', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '04:10:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '04:10:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080985, 106, '2020-04-16', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '04:10:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '04:10:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080986, 106, '2020-04-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '04:10:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080987, 106, '2020-04-18', NULL, NULL, NULL, NULL, NULL, '00:00:00', '04:10:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080988, 106, '2020-04-19', NULL, NULL, NULL, NULL, NULL, '00:00:00', '04:10:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080989, 110, '2020-02-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081004, 110, '2020-03-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081005, 110, '2020-03-11', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081006, 110, '2020-03-12', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081007, 110, '2020-03-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084958, 128, '2020-05-27', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084959, 128, '2020-05-28', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084960, 128, '2020-05-29', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084961, 128, '2020-05-30', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085629, 143, '2020-05-26', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1003863, 127, '2020-01-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1003864, 127, '2020-01-25', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081008, 110, '2020-03-14', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081009, 110, '2020-03-15', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081010, 110, '2020-03-16', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081011, 110, '2020-03-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081012, 110, '2020-03-18', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081013, 110, '2020-03-19', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081014, 110, '2020-03-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081015, 110, '2020-03-21', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081016, 110, '2020-03-22', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081017, 110, '2020-03-23', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081018, 110, '2020-03-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081033, 110, '2020-04-08', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081034, 110, '2020-04-09', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084966, 128, '2020-06-04', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084967, 128, '2020-06-05', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084968, 128, '2020-06-06', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085630, 143, '2020-05-27', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1003865, 127, '2020-01-26', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1003866, 127, '2020-01-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1003867, 127, '2020-01-28', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081035, 110, '2020-04-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081036, 110, '2020-04-11', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081037, 110, '2020-04-12', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081038, 110, '2020-04-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081039, 110, '2020-04-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081040, 110, '2020-04-15', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081041, 110, '2020-04-16', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081042, 110, '2020-04-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081043, 110, '2020-04-18', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081044, 110, '2020-04-19', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081045, 145, '2020-02-24', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084969, 128, '2020-06-07', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084987, 142, '2020-04-30', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084988, 142, '2020-05-01', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084989, 142, '2020-05-02', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084990, 142, '2020-05-03', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1003868, 127, '2020-01-29', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1003869, 127, '2020-01-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081046, 145, '2020-02-25', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081047, 145, '2020-02-26', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081062, 145, '2020-03-12', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081063, 145, '2020-03-13', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081064, 145, '2020-03-14', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081065, 145, '2020-03-15', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081066, 145, '2020-03-16', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081067, 145, '2020-03-17', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081068, 145, '2020-03-18', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081069, 145, '2020-03-19', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081070, 145, '2020-03-20', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081071, 145, '2020-03-21', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081072, 145, '2020-03-22', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084991, 142, '2020-05-04', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084992, 142, '2020-05-05', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084997, 142, '2020-05-10', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1003870, 127, '2020-01-31', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1003871, 127, '2020-02-01', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081073, 145, '2020-03-23', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081074, 145, '2020-03-24', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081075, 145, '2020-03-25', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081076, 145, '2020-03-26', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081091, 145, '2020-04-10', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081092, 145, '2020-04-11', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081093, 145, '2020-04-12', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081094, 145, '2020-04-13', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081095, 145, '2020-04-14', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081096, 145, '2020-04-15', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081097, 145, '2020-04-16', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084998, 142, '2020-05-11', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085013, 142, '2020-05-26', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085014, 142, '2020-05-27', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085019, 142, '2020-06-01', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085636, 143, '2020-06-02', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085651, 146, '2020-06-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (995232, 114, '2020-01-01', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081098, 145, '2020-04-17', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081099, 145, '2020-04-18', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081100, 145, '2020-04-19', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081101, 148, '2020-02-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081102, 148, '2020-02-25', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081103, 148, '2020-02-26', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081104, 148, '2020-02-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081105, 148, '2020-02-28', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081120, 148, '2020-03-14', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081121, 148, '2020-03-15', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081122, 148, '2020-03-16', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081123, 148, '2020-03-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081124, 148, '2020-03-18', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081125, 148, '2020-03-19', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085020, 142, '2020-06-02', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085021, 142, '2020-06-03', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085022, 142, '2020-06-04', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (995277, 114, '2020-02-15', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (995278, 114, '2020-02-16', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081126, 148, '2020-03-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081127, 148, '2020-03-21', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081128, 148, '2020-03-22', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081129, 148, '2020-03-23', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081130, 148, '2020-03-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081131, 148, '2020-03-25', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081132, 148, '2020-03-26', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081133, 148, '2020-03-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081134, 148, '2020-03-28', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081135, 148, '2020-03-29', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081150, 148, '2020-04-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081151, 148, '2020-04-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085027, 142, '2020-06-09', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085042, 136, '2020-04-29', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085043, 136, '2020-04-30', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085044, 136, '2020-05-01', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085657, 146, '2020-06-23', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1003872, 127, '2020-02-02', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1003873, 127, '2020-02-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1003893, 127, '2020-02-23', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081152, 148, '2020-04-15', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081153, 148, '2020-04-16', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081154, 148, '2020-04-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081155, 148, '2020-04-18', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081156, 148, '2020-04-19', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081157, 130, '2020-02-24', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081158, 130, '2020-02-25', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081159, 130, '2020-02-26', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081160, 130, '2020-02-27', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081161, 130, '2020-02-28', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081162, 130, '2020-02-29', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081163, 130, '2020-03-01', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085049, 136, '2020-05-06', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085050, 136, '2020-05-07', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085051, 136, '2020-05-08', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085658, 146, '2020-06-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1006019, 149, '2020-01-28', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1006020, 149, '2020-01-29', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1006027, 149, '2020-02-05', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1006028, 149, '2020-02-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1006029, 149, '2020-02-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081164, 130, '2020-03-02', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081179, 130, '2020-03-17', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081180, 130, '2020-03-18', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081181, 130, '2020-03-19', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081182, 130, '2020-03-20', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081183, 130, '2020-03-21', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081184, 130, '2020-03-22', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081185, 130, '2020-03-23', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081186, 130, '2020-03-24', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085052, 136, '2020-05-09', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085070, 136, '2020-05-27', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085071, 136, '2020-05-28', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1006030, 149, '2020-02-08', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1006031, 149, '2020-02-09', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1006032, 149, '2020-02-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1006033, 149, '2020-02-11', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1006034, 149, '2020-02-12', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1006035, 149, '2020-02-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081187, 130, '2020-03-25', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081188, 130, '2020-03-26', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081189, 130, '2020-03-27', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081190, 130, '2020-03-28', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081191, 130, '2020-03-29', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081192, 130, '2020-03-30', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081193, 130, '2020-03-31', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081208, 130, '2020-04-15', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081209, 130, '2020-04-16', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085073, 136, '2020-05-30', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085074, 136, '2020-05-31', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085659, 146, '2020-06-25', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085660, 146, '2020-06-26', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085665, 146, '2020-07-01', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1006036, 149, '2020-02-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1006037, 149, '2020-02-15', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1006038, 149, '2020-02-16', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1006039, 149, '2020-02-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1006040, 149, '2020-02-18', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1006041, 149, '2020-02-19', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081210, 130, '2020-04-17', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081211, 130, '2020-04-18', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081212, 130, '2020-04-19', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081213, 129, '2020-02-24', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081214, 129, '2020-02-25', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081215, 129, '2020-02-26', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081216, 129, '2020-02-27', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081217, 129, '2020-02-28', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081218, 129, '2020-02-29', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081219, 129, '2020-03-01', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085079, 136, '2020-06-05', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085080, 136, '2020-06-06', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085081, 136, '2020-06-07', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1006042, 149, '2020-02-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1006043, 149, '2020-02-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1006044, 149, '2020-02-22', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1006045, 149, '2020-02-23', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1008163, 103, '2020-01-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1008164, 103, '2020-01-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081220, 129, '2020-03-02', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081221, 129, '2020-03-03', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081222, 129, '2020-03-04', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081237, 129, '2020-03-19', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081238, 129, '2020-03-20', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081239, 129, '2020-03-21', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081240, 129, '2020-03-22', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081241, 129, '2020-03-23', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081242, 129, '2020-03-24', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085082, 136, '2020-06-08', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085101, 139, '2020-05-02', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085102, 139, '2020-05-03', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085680, 146, '2020-07-16', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085681, 146, '2020-07-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1008165, 103, '2020-01-22', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1008166, 103, '2020-01-23', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1008167, 103, '2020-01-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1008168, 103, '2020-01-25', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1008169, 103, '2020-01-26', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1008171, 103, '2020-01-28', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1008172, 103, '2020-01-29', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081243, 129, '2020-03-25', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081244, 129, '2020-03-26', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081245, 129, '2020-03-27', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081246, 129, '2020-03-28', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081247, 129, '2020-03-29', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081248, 129, '2020-03-30', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081249, 129, '2020-03-31', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081250, 129, '2020-04-01', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085103, 139, '2020-05-04', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085104, 139, '2020-05-05', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085109, 139, '2020-05-10', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1008174, 103, '2020-01-31', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1008193, 103, '2020-02-19', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1008194, 103, '2020-02-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1008195, 103, '2020-02-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1008196, 103, '2020-02-22', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1010312, 121, '2020-01-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1010314, 121, '2020-01-19', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081251, 129, '2020-04-02', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081252, 129, '2020-04-03', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081268, 129, '2020-04-19', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081269, 143, '2020-02-24', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081270, 143, '2020-02-25', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081271, 143, '2020-02-26', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081272, 143, '2020-02-27', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081273, 143, '2020-02-28', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081274, 143, '2020-02-29', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085111, 139, '2020-05-12', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085687, 146, '2020-07-23', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1010315, 121, '2020-01-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1010316, 121, '2020-01-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1010317, 121, '2020-01-22', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1010318, 121, '2020-01-23', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1010319, 121, '2020-01-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1010320, 121, '2020-01-25', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081275, 143, '2020-03-01', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081276, 143, '2020-03-02', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081277, 143, '2020-03-03', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081278, 143, '2020-03-04', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081279, 143, '2020-03-05', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081280, 143, '2020-03-06', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081281, 143, '2020-03-07', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081296, 143, '2020-03-22', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081297, 143, '2020-03-23', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085126, 139, '2020-05-27', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085131, 139, '2020-06-01', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085132, 139, '2020-06-02', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1010321, 121, '2020-01-26', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1010322, 121, '2020-01-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1010323, 121, '2020-01-28', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1010324, 121, '2020-01-29', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1010325, 121, '2020-01-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1010326, 121, '2020-01-31', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081298, 143, '2020-03-24', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081299, 143, '2020-03-25', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081300, 143, '2020-03-26', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081301, 143, '2020-03-27', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081302, 143, '2020-03-28', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081303, 143, '2020-03-29', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081304, 143, '2020-03-30', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081305, 143, '2020-03-31', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081306, 143, '2020-04-01', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085133, 139, '2020-06-03', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085134, 139, '2020-06-04', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085688, 146, '2020-07-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1010327, 121, '2020-02-01', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1010328, 121, '2020-02-02', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1010329, 121, '2020-02-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1010330, 121, '2020-02-04', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1010331, 121, '2020-02-05', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081307, 143, '2020-04-02', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081308, 143, '2020-04-03', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081309, 143, '2020-04-04', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081310, 143, '2020-04-05', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081311, 143, '2020-04-06', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083491, 146, '2020-04-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083492, 146, '2020-04-22', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083493, 146, '2020-04-23', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083494, 146, '2020-04-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083495, 146, '2020-04-25', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083496, 146, '2020-04-26', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085135, 139, '2020-06-05', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085136, 139, '2020-06-06', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085137, 139, '2020-06-07', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1010332, 121, '2020-02-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1010333, 121, '2020-02-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1010334, 121, '2020-02-08', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1010335, 121, '2020-02-09', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1010336, 121, '2020-02-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1010337, 121, '2020-02-11', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083497, 146, '2020-04-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083498, 146, '2020-04-28', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083499, 146, '2020-04-29', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083500, 146, '2020-04-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083501, 146, '2020-05-01', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083502, 146, '2020-05-02', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083503, 146, '2020-05-03', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083504, 146, '2020-05-04', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083505, 146, '2020-05-05', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083520, 146, '2020-05-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085138, 139, '2020-06-08', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1010338, 121, '2020-02-12', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1010339, 121, '2020-02-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1010340, 121, '2020-02-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1010341, 121, '2020-02-15', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1010342, 121, '2020-02-16', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1010343, 121, '2020-02-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083521, 146, '2020-05-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083522, 146, '2020-05-22', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083523, 146, '2020-05-23', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083524, 146, '2020-05-24', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083525, 146, '2020-05-25', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083526, 146, '2020-05-26', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083527, 146, '2020-05-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083528, 146, '2020-05-28', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083529, 146, '2020-05-29', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085159, 141, '2020-05-04', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085160, 141, '2020-05-05', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085709, 115, '2020-06-19', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085710, 115, '2020-06-20', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085712, 115, '2020-06-22', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1010344, 121, '2020-02-18', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1010345, 121, '2020-02-19', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1010346, 121, '2020-02-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1010347, 121, '2020-02-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1010348, 121, '2020-02-22', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1010349, 121, '2020-02-23', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083530, 146, '2020-05-30', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083531, 146, '2020-05-31', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083532, 146, '2020-06-01', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083533, 146, '2020-06-02', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083534, 146, '2020-06-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083549, 115, '2020-04-23', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083550, 115, '2020-04-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083551, 115, '2020-04-25', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083552, 115, '2020-04-26', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083553, 115, '2020-04-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085161, 141, '2020-05-06', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085166, 141, '2020-05-11', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1012467, 125, '2020-01-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '03:20:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1012468, 125, '2020-01-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '03:20:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1012469, 125, '2020-01-22', '08:00:00', '12:00:00', NULL, NULL, NULL, '00:00:00', '03:20:00', NULL, NULL, NULL, '04:00:00', '00:00:00', NULL, 27, '04:00:00', NULL, '00:00:00', '03:20:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1012470, 125, '2020-01-23', NULL, NULL, NULL, NULL, NULL, '00:00:00', '03:20:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '03:20:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1012471, 125, '2020-01-24', NULL, NULL, NULL, NULL, NULL, '00:00:00', '03:20:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '03:20:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083554, 115, '2020-04-28', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083555, 115, '2020-04-29', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083556, 115, '2020-04-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083557, 115, '2020-05-01', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083558, 115, '2020-05-02', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083559, 115, '2020-05-03', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083560, 115, '2020-05-04', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083561, 115, '2020-05-05', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083562, 115, '2020-05-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083563, 115, '2020-05-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083578, 115, '2020-05-22', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085168, 141, '2020-05-13', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085169, 141, '2020-05-14', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1012472, 125, '2020-01-25', NULL, NULL, NULL, NULL, NULL, '00:00:00', '03:20:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '03:20:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1012473, 125, '2020-01-26', NULL, NULL, NULL, NULL, NULL, '00:00:00', '03:20:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1012474, 125, '2020-01-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '03:20:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1012475, 125, '2020-01-28', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '03:20:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1012476, 125, '2020-01-29', '08:00:00', '12:00:00', NULL, NULL, NULL, '00:00:00', '03:20:00', NULL, NULL, NULL, '04:00:00', '00:00:00', NULL, 27, '04:00:00', NULL, '00:00:00', '03:20:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1012477, 125, '2020-01-30', NULL, NULL, NULL, NULL, NULL, '00:00:00', '03:20:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '03:20:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083579, 115, '2020-05-23', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083580, 115, '2020-05-24', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083581, 115, '2020-05-25', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083582, 115, '2020-05-26', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083583, 115, '2020-05-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083584, 115, '2020-05-28', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083585, 115, '2020-05-29', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083586, 115, '2020-05-30', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083587, 115, '2020-05-31', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083588, 115, '2020-06-01', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083589, 115, '2020-06-02', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085188, 141, '2020-06-02', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085189, 141, '2020-06-03', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1012478, 125, '2020-01-31', NULL, NULL, NULL, NULL, NULL, '00:00:00', '03:20:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '03:20:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1012497, 125, '2020-02-19', '08:00:00', '12:00:00', NULL, NULL, NULL, '00:00:00', '03:20:00', NULL, NULL, NULL, '04:00:00', '00:00:00', NULL, 27, '04:00:00', NULL, '00:00:00', '03:20:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1012498, 125, '2020-02-20', NULL, NULL, NULL, NULL, NULL, '00:00:00', '03:20:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '03:20:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1012499, 125, '2020-02-21', NULL, NULL, NULL, NULL, NULL, '00:00:00', '03:20:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '03:20:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1012500, 125, '2020-02-22', NULL, NULL, NULL, NULL, NULL, '00:00:00', '03:20:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '03:20:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1012501, 125, '2020-02-23', NULL, NULL, NULL, NULL, NULL, '00:00:00', '03:20:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1014612, 119, '2020-01-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083590, 115, '2020-06-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083591, 115, '2020-06-04', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083592, 115, '2020-06-05', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083607, 114, '2020-04-25', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083608, 114, '2020-04-26', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083609, 114, '2020-04-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083610, 114, '2020-04-28', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083611, 114, '2020-04-29', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083612, 114, '2020-04-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083613, 114, '2020-05-01', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085190, 141, '2020-06-04', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085716, 115, '2020-06-26', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085717, 115, '2020-06-27', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1014613, 119, '2020-01-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1014614, 119, '2020-01-15', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1014615, 119, '2020-01-16', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1014616, 119, '2020-01-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1014617, 119, '2020-01-18', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083614, 114, '2020-05-02', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083615, 114, '2020-05-03', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083616, 114, '2020-05-04', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083617, 114, '2020-05-05', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083618, 114, '2020-05-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083619, 114, '2020-05-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083620, 114, '2020-05-08', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083621, 114, '2020-05-09', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083622, 114, '2020-05-10', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083636, 114, '2020-05-24', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085191, 141, '2020-06-05', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085196, 141, '2020-06-10', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085197, 141, '2020-06-11', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1014618, 119, '2020-01-19', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1014619, 119, '2020-01-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1014620, 119, '2020-01-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1014621, 119, '2020-01-22', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1014622, 119, '2020-01-23', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1014623, 119, '2020-01-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083637, 114, '2020-05-25', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083638, 114, '2020-05-26', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083639, 114, '2020-05-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083640, 114, '2020-05-28', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083641, 114, '2020-05-29', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083642, 114, '2020-05-30', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083643, 114, '2020-05-31', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083644, 114, '2020-06-01', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083645, 114, '2020-06-02', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085199, 141, '2020-06-13', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085219, 122, '2020-05-08', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085220, 122, '2020-05-09', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1014624, 119, '2020-01-25', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1014625, 119, '2020-01-26', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1014626, 119, '2020-01-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1014627, 119, '2020-01-28', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1014628, 119, '2020-01-29', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1014629, 119, '2020-01-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083646, 114, '2020-06-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083647, 114, '2020-06-04', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083662, 112, '2020-04-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083663, 112, '2020-04-25', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083664, 112, '2020-04-26', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083665, 112, '2020-04-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083666, 112, '2020-04-28', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083667, 112, '2020-04-29', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083668, 112, '2020-04-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083669, 112, '2020-05-01', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085221, 122, '2020-05-10', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085222, 122, '2020-05-11', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085718, 115, '2020-06-28', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1014630, 119, '2020-01-31', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1014631, 119, '2020-02-01', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1014632, 119, '2020-02-02', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1014633, 119, '2020-02-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1014634, 119, '2020-02-04', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1014636, 119, '2020-02-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083670, 112, '2020-05-02', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083671, 112, '2020-05-03', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083672, 112, '2020-05-04', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083673, 112, '2020-05-05', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083674, 112, '2020-05-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083675, 112, '2020-05-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083676, 112, '2020-05-08', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083677, 112, '2020-05-09', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083693, 112, '2020-05-25', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083694, 112, '2020-05-26', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085227, 122, '2020-05-16', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085228, 122, '2020-05-17', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085724, 115, '2020-07-04', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085747, 115, '2020-07-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1014637, 119, '2020-02-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1014638, 119, '2020-02-08', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1014639, 119, '2020-02-09', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1014640, 119, '2020-02-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1014641, 119, '2020-02-11', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1014642, 119, '2020-02-12', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083695, 112, '2020-05-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083696, 112, '2020-05-28', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083697, 112, '2020-05-29', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083698, 112, '2020-05-30', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083699, 112, '2020-05-31', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083700, 108, '2020-04-20', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083701, 108, '2020-04-21', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083702, 108, '2020-04-22', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083703, 108, '2020-04-23', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085243, 122, '2020-06-01', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085244, 122, '2020-06-02', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085249, 122, '2020-06-07', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085770, 114, '2020-06-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1014643, 119, '2020-02-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1014644, 119, '2020-02-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1014645, 119, '2020-02-15', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1014646, 119, '2020-02-16', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1014647, 119, '2020-02-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1014648, 119, '2020-02-18', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083704, 108, '2020-04-24', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083705, 108, '2020-04-25', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083706, 108, '2020-04-26', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083721, 108, '2020-05-11', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083722, 108, '2020-05-12', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083723, 108, '2020-05-13', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083724, 108, '2020-05-14', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083725, 108, '2020-05-15', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083726, 108, '2020-05-16', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083727, 108, '2020-05-17', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085250, 122, '2020-06-08', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085251, 122, '2020-06-09', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1014649, 119, '2020-02-19', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1014650, 119, '2020-02-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1014651, 119, '2020-02-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1014652, 119, '2020-02-22', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1014653, 119, '2020-02-23', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1016770, 113, '2020-01-19', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083728, 108, '2020-05-18', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083729, 108, '2020-05-19', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083730, 108, '2020-05-20', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083731, 108, '2020-05-21', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083732, 108, '2020-05-22', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083733, 108, '2020-05-23', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083734, 108, '2020-05-24', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083735, 108, '2020-05-25', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083750, 108, '2020-06-09', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085257, 106, '2020-04-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '04:10:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '04:10:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085272, 106, '2020-05-05', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '04:10:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '04:10:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085273, 106, '2020-05-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '04:10:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '04:10:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085775, 114, '2020-06-29', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (997384, 112, '2020-01-01', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (997385, 112, '2020-01-02', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (997386, 112, '2020-01-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (997387, 112, '2020-01-04', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (997388, 112, '2020-01-05', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (997389, 112, '2020-01-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083751, 108, '2020-06-10', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083752, 108, '2020-06-11', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083753, 108, '2020-06-12', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083754, 108, '2020-06-13', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083755, 108, '2020-06-14', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083756, 135, '2020-04-20', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083757, 135, '2020-04-21', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083758, 135, '2020-04-22', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083759, 135, '2020-04-23', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083760, 135, '2020-04-24', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085274, 106, '2020-05-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '04:10:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '04:10:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085780, 114, '2020-07-04', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085803, 114, '2020-07-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (997406, 112, '2020-01-23', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (997407, 112, '2020-01-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (997408, 112, '2020-01-25', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (997409, 112, '2020-01-26', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (997410, 112, '2020-01-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (997411, 112, '2020-01-28', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (997412, 112, '2020-01-29', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083761, 135, '2020-04-25', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083762, 135, '2020-04-26', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083763, 135, '2020-04-27', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083764, 135, '2020-04-28', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083765, 135, '2020-04-29', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083767, 135, '2020-05-01', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083768, 135, '2020-05-02', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083783, 135, '2020-05-17', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083784, 135, '2020-05-18', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085279, 106, '2020-05-12', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '04:10:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '04:10:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085280, 106, '2020-05-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '04:10:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '04:10:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085808, 114, '2020-08-01', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1016771, 113, '2020-01-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1016772, 113, '2020-01-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1016773, 113, '2020-01-22', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1016774, 113, '2020-01-23', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1016775, 113, '2020-01-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1016776, 113, '2020-01-25', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1016777, 113, '2020-01-26', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1016778, 113, '2020-01-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1016779, 113, '2020-01-28', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1016780, 113, '2020-01-29', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1016781, 113, '2020-01-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1016782, 113, '2020-01-31', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083785, 135, '2020-05-19', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083786, 135, '2020-05-20', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083787, 135, '2020-05-21', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083788, 135, '2020-05-22', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083789, 135, '2020-05-23', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083790, 135, '2020-05-24', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1016801, 113, '2020-02-19', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1016802, 113, '2020-02-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1016803, 113, '2020-02-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1016804, 113, '2020-02-22', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1016805, 113, '2020-02-23', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1018917, 147, '2020-01-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1018918, 147, '2020-01-15', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1018919, 147, '2020-01-16', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1018920, 147, '2020-01-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1018921, 147, '2020-01-18', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1018922, 147, '2020-01-19', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1018923, 147, '2020-01-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083791, 135, '2020-05-25', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083792, 135, '2020-05-26', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083793, 135, '2020-05-27', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083794, 135, '2020-05-28', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083795, 135, '2020-05-29', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085281, 106, '2020-05-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '04:10:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '04:10:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1018924, 147, '2020-01-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1018925, 147, '2020-01-22', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1018926, 147, '2020-01-23', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1018927, 147, '2020-01-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1018928, 147, '2020-01-25', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1018929, 147, '2020-01-26', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1018930, 147, '2020-01-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1018931, 147, '2020-01-28', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1018932, 147, '2020-01-29', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1018933, 147, '2020-01-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1018934, 147, '2020-01-31', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1018935, 147, '2020-02-01', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083796, 135, '2020-05-30', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083797, 135, '2020-05-31', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083798, 135, '2020-06-01', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083813, 127, '2020-04-21', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083814, 127, '2020-04-22', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085282, 106, '2020-05-15', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '04:10:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085826, 108, '2020-06-24', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1018936, 147, '2020-02-02', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1018937, 147, '2020-02-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1018938, 147, '2020-02-04', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1018939, 147, '2020-02-05', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1018940, 147, '2020-02-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1018941, 147, '2020-02-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1018942, 147, '2020-02-08', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1018943, 147, '2020-02-09', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1018944, 147, '2020-02-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1018945, 147, '2020-02-11', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1018946, 147, '2020-02-12', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1018947, 147, '2020-02-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083815, 127, '2020-04-23', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083816, 127, '2020-04-24', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083817, 127, '2020-04-25', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083818, 127, '2020-04-26', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083819, 127, '2020-04-27', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085283, 106, '2020-05-16', NULL, NULL, NULL, NULL, NULL, '00:00:00', '04:10:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1018948, 147, '2020-02-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1018949, 147, '2020-02-15', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1018950, 147, '2020-02-16', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1018951, 147, '2020-02-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1018952, 147, '2020-02-18', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1018953, 147, '2020-02-19', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1018954, 147, '2020-02-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1021074, 131, '2020-01-19', NULL, NULL, NULL, NULL, NULL, '00:00:00', '04:00:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1021075, 131, '2020-01-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '04:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '04:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1021076, 131, '2020-01-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '04:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '04:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1021077, 131, '2020-01-22', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '04:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '04:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083820, 127, '2020-04-28', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083821, 127, '2020-04-29', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083822, 127, '2020-04-30', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083823, 127, '2020-05-01', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083824, 127, '2020-05-02', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083825, 127, '2020-05-03', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085303, 106, '2020-06-05', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '04:10:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1021078, 131, '2020-01-23', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '04:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '04:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1021079, 131, '2020-01-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '04:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '04:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1021080, 131, '2020-01-25', NULL, NULL, NULL, NULL, NULL, '00:00:00', '04:00:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1021081, 131, '2020-01-26', NULL, NULL, NULL, NULL, NULL, '00:00:00', '04:00:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1021083, 131, '2020-01-28', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '04:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '04:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1021101, 131, '2020-02-15', NULL, NULL, NULL, NULL, NULL, '00:00:00', '04:00:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1021102, 131, '2020-02-16', NULL, NULL, NULL, NULL, NULL, '00:00:00', '04:00:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1021103, 131, '2020-02-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '04:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '04:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1021104, 131, '2020-02-18', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '04:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '04:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1021105, 131, '2020-02-19', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '04:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '04:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1021106, 131, '2020-02-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '04:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '04:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1021107, 131, '2020-02-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '04:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '04:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1021108, 131, '2020-02-22', NULL, NULL, NULL, NULL, NULL, '00:00:00', '04:00:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1021109, 131, '2020-02-23', NULL, NULL, NULL, NULL, NULL, '00:00:00', '04:00:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083826, 127, '2020-05-04', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083827, 127, '2020-05-05', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083842, 127, '2020-05-20', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083843, 127, '2020-05-21', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085305, 106, '2020-06-07', NULL, NULL, NULL, NULL, NULL, '00:00:00', '04:10:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1023223, 104, '2020-01-16', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1023224, 104, '2020-01-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1023225, 104, '2020-01-18', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:00:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1023226, 104, '2020-01-19', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:00:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1023227, 104, '2020-01-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1023228, 104, '2020-01-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1023229, 104, '2020-01-22', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1023230, 104, '2020-01-23', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1023231, 104, '2020-01-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1023232, 104, '2020-01-25', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:00:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1023233, 104, '2020-01-26', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:00:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1023234, 104, '2020-01-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083844, 127, '2020-05-22', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083845, 127, '2020-05-23', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083846, 127, '2020-05-24', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083847, 127, '2020-05-25', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083848, 127, '2020-05-26', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083849, 127, '2020-05-27', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085831, 108, '2020-06-29', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085836, 108, '2020-07-04', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1023235, 104, '2020-01-28', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1023236, 104, '2020-01-29', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1023237, 104, '2020-01-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1023238, 104, '2020-01-31', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1023239, 104, '2020-02-01', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:00:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1023240, 104, '2020-02-02', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:00:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1023241, 104, '2020-02-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1023242, 104, '2020-02-04', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1023243, 104, '2020-02-05', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1023244, 104, '2020-02-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1023245, 104, '2020-02-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1023246, 104, '2020-02-08', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:00:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083850, 127, '2020-05-28', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083851, 127, '2020-05-29', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083852, 127, '2020-05-30', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083853, 127, '2020-05-31', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083854, 127, '2020-06-01', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085310, 106, '2020-06-12', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '04:10:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1023247, 104, '2020-02-09', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:00:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1023248, 104, '2020-02-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1023249, 104, '2020-02-11', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1023250, 104, '2020-02-12', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1023251, 104, '2020-02-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1023252, 104, '2020-02-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1025409, 151, '2020-02-19', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1025410, 151, '2020-02-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1025411, 151, '2020-02-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1025412, 151, '2020-02-22', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1025413, 151, '2020-02-23', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1027530, 138, '2020-01-19', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083855, 127, '2020-06-02', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083856, 127, '2020-06-03', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083871, 149, '2020-04-23', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083872, 149, '2020-04-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083873, 149, '2020-04-25', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085855, 108, '2020-07-23', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085860, 108, '2020-07-28', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085864, 108, '2020-08-01', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1027532, 138, '2020-01-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1027533, 138, '2020-01-22', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1027534, 138, '2020-01-23', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1027535, 138, '2020-01-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1027536, 138, '2020-01-25', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1027537, 138, '2020-01-26', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1027538, 138, '2020-01-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1027539, 138, '2020-01-28', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1027540, 138, '2020-01-29', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1027541, 138, '2020-01-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1027542, 138, '2020-01-31', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1027543, 138, '2020-02-01', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083874, 149, '2020-04-26', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083875, 149, '2020-04-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083876, 149, '2020-04-28', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083877, 149, '2020-04-29', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083878, 149, '2020-04-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085313, 110, '2020-04-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085878, 135, '2020-06-20', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1027544, 138, '2020-02-02', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1027545, 138, '2020-02-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1027546, 138, '2020-02-04', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1027547, 138, '2020-02-05', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1027548, 138, '2020-02-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1027549, 138, '2020-02-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1027550, 138, '2020-02-08', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1027551, 138, '2020-02-09', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1027557, 138, '2020-02-15', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1029700, 105, '2020-02-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1029701, 105, '2020-02-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1029702, 105, '2020-02-08', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083879, 149, '2020-05-01', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083880, 149, '2020-05-02', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083881, 149, '2020-05-03', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083882, 149, '2020-05-04', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083883, 149, '2020-05-05', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085331, 110, '2020-05-08', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085332, 110, '2020-05-09', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1029703, 105, '2020-02-09', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1029704, 105, '2020-02-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1029705, 105, '2020-02-11', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1029706, 105, '2020-02-12', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1029707, 105, '2020-02-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1029708, 105, '2020-02-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1029709, 105, '2020-02-15', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1029710, 105, '2020-02-16', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1029711, 105, '2020-02-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1029712, 105, '2020-02-18', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1029713, 105, '2020-02-19', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1029715, 105, '2020-02-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1029716, 105, '2020-02-22', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083884, 149, '2020-05-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083885, 149, '2020-05-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083900, 149, '2020-05-22', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083901, 149, '2020-05-23', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083902, 149, '2020-05-24', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1029717, 105, '2020-02-23', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1031835, 134, '2020-01-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1031836, 134, '2020-01-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1031837, 134, '2020-01-22', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1031838, 134, '2020-01-23', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1031839, 134, '2020-01-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1031840, 134, '2020-01-25', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1031841, 134, '2020-01-26', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1031842, 134, '2020-01-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1031843, 134, '2020-01-28', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1031844, 134, '2020-01-29', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1031845, 134, '2020-01-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083903, 149, '2020-05-25', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083904, 149, '2020-05-26', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083905, 149, '2020-05-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083906, 149, '2020-05-28', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083907, 149, '2020-05-29', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1031846, 134, '2020-01-31', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1031847, 134, '2020-02-01', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1031848, 134, '2020-02-02', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1031849, 134, '2020-02-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1031869, 134, '2020-02-23', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1033995, 144, '2020-01-28', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1033996, 144, '2020-01-29', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1033997, 144, '2020-01-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1033998, 144, '2020-01-31', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1033999, 144, '2020-02-01', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1034000, 144, '2020-02-02', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1034001, 144, '2020-02-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1034002, 144, '2020-02-04', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083908, 149, '2020-05-30', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083909, 149, '2020-05-31', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083910, 149, '2020-06-01', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083911, 149, '2020-06-02', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083912, 149, '2020-06-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085339, 110, '2020-05-16', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1034003, 144, '2020-02-05', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1034004, 144, '2020-02-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1034005, 144, '2020-02-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1034006, 144, '2020-02-08', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1034007, 144, '2020-02-09', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1034008, 144, '2020-02-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1034009, 144, '2020-02-11', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1034010, 144, '2020-02-12', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1034011, 144, '2020-02-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1034013, 144, '2020-02-15', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1034014, 144, '2020-02-16', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1034015, 144, '2020-02-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083913, 149, '2020-06-04', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083914, 149, '2020-06-05', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083929, 103, '2020-04-25', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083930, 103, '2020-04-26', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083931, 103, '2020-04-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083932, 103, '2020-04-28', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085340, 110, '2020-05-17', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1034016, 144, '2020-02-18', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1034017, 144, '2020-02-19', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1034018, 144, '2020-02-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1034019, 144, '2020-02-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1034020, 144, '2020-02-22', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1034021, 144, '2020-02-23', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1036139, 102, '2020-01-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1036140, 102, '2020-01-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1036141, 102, '2020-01-22', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1036142, 102, '2020-01-23', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1036143, 102, '2020-01-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1036144, 102, '2020-01-25', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1036145, 102, '2020-01-26', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083933, 103, '2020-04-29', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083934, 103, '2020-04-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083935, 103, '2020-05-01', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083936, 103, '2020-05-02', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085341, 110, '2020-05-18', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085897, 135, '2020-07-09', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1036146, 102, '2020-01-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1036147, 102, '2020-01-28', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1036148, 102, '2020-01-29', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1036149, 102, '2020-01-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1036150, 102, '2020-01-31', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1036169, 102, '2020-02-19', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1036170, 102, '2020-02-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1036171, 102, '2020-02-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1036172, 102, '2020-02-22', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1036173, 102, '2020-02-23', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1038288, 109, '2020-01-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1038289, 109, '2020-01-18', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083937, 103, '2020-05-03', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083938, 103, '2020-05-04', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083939, 103, '2020-05-05', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083940, 103, '2020-05-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083941, 103, '2020-05-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085342, 110, '2020-05-19', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1038290, 109, '2020-01-19', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1038291, 109, '2020-01-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1038292, 109, '2020-01-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1038293, 109, '2020-01-22', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1038294, 109, '2020-01-23', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1038295, 109, '2020-01-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1038296, 109, '2020-01-25', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1038297, 109, '2020-01-26', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1038298, 109, '2020-01-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1038299, 109, '2020-01-28', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1038300, 109, '2020-01-29', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1038301, 109, '2020-01-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083942, 103, '2020-05-08', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083943, 103, '2020-05-09', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083944, 103, '2020-05-10', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083959, 103, '2020-05-25', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083960, 103, '2020-05-26', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085362, 110, '2020-06-08', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085906, 135, '2020-07-18', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1038302, 109, '2020-01-31', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1038303, 109, '2020-02-01', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1038304, 109, '2020-02-02', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1038305, 109, '2020-02-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1038306, 109, '2020-02-04', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1038307, 109, '2020-02-05', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1038308, 109, '2020-02-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1038309, 109, '2020-02-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1038310, 109, '2020-02-08', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1038311, 109, '2020-02-09', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1038312, 109, '2020-02-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1038313, 109, '2020-02-11', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083961, 103, '2020-05-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083962, 103, '2020-05-28', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083963, 103, '2020-05-29', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083964, 103, '2020-05-30', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083965, 103, '2020-05-31', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083966, 103, '2020-06-01', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085910, 135, '2020-07-22', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085937, 127, '2020-06-23', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1038314, 109, '2020-02-12', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1038315, 109, '2020-02-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1038316, 109, '2020-02-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1038317, 109, '2020-02-15', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1038318, 109, '2020-02-16', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1038319, 109, '2020-02-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1038320, 109, '2020-02-18', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1038321, 109, '2020-02-19', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1038322, 109, '2020-02-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1038323, 109, '2020-02-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1038324, 109, '2020-02-22', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1038325, 109, '2020-02-23', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083967, 103, '2020-06-02', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083968, 103, '2020-06-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083969, 103, '2020-06-04', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083970, 103, '2020-06-05', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083971, 103, '2020-06-06', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085363, 110, '2020-06-09', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1040443, 118, '2020-01-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1040444, 118, '2020-01-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1040445, 118, '2020-01-22', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1040446, 118, '2020-01-23', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1040447, 118, '2020-01-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1040448, 118, '2020-01-25', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1040449, 118, '2020-01-26', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1040450, 118, '2020-01-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1040451, 118, '2020-01-28', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1040452, 118, '2020-01-29', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1040453, 118, '2020-01-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083972, 103, '2020-06-07', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083973, 103, '2020-06-08', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083988, 121, '2020-04-28', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083989, 121, '2020-04-29', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083990, 121, '2020-04-30', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083991, 121, '2020-05-01', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085956, 127, '2020-07-12', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085960, 127, '2020-07-16', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1040454, 118, '2020-01-31', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1040473, 118, '2020-02-19', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1040474, 118, '2020-02-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1040475, 118, '2020-02-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1040476, 118, '2020-02-22', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1040477, 118, '2020-02-23', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1042588, 133, '2020-01-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1042589, 133, '2020-01-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1042590, 133, '2020-01-15', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1042591, 133, '2020-01-16', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1042592, 133, '2020-01-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1042593, 133, '2020-01-18', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1042594, 133, '2020-01-19', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083992, 121, '2020-05-02', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083993, 121, '2020-05-03', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083994, 121, '2020-05-04', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083995, 121, '2020-05-05', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083996, 121, '2020-05-06', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1042595, 133, '2020-01-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1042596, 133, '2020-01-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1042597, 133, '2020-01-22', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1042598, 133, '2020-01-23', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1042599, 133, '2020-01-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1042600, 133, '2020-01-25', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1042601, 133, '2020-01-26', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1042602, 133, '2020-01-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1042603, 133, '2020-01-28', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1042604, 133, '2020-01-29', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1042605, 133, '2020-01-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1042606, 133, '2020-01-31', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1042607, 133, '2020-02-01', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1042608, 133, '2020-02-02', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083997, 121, '2020-05-07', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083998, 121, '2020-05-08', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083999, 121, '2020-05-09', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084000, 121, '2020-05-10', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085961, 127, '2020-07-17', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085984, 127, '2020-08-09', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1042609, 133, '2020-02-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1042610, 133, '2020-02-04', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1042611, 133, '2020-02-05', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1042612, 133, '2020-02-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1042613, 133, '2020-02-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1042614, 133, '2020-02-08', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1042615, 133, '2020-02-09', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1042616, 133, '2020-02-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1042617, 133, '2020-02-11', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1042618, 133, '2020-02-12', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1042619, 133, '2020-02-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1042620, 133, '2020-02-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1042621, 133, '2020-02-15', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1042622, 133, '2020-02-16', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084001, 121, '2020-05-11', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084002, 121, '2020-05-12', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084017, 121, '2020-05-27', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084018, 121, '2020-05-28', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (999541, 108, '2020-01-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (999542, 108, '2020-01-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (999543, 108, '2020-01-08', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (999544, 108, '2020-01-09', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (999545, 108, '2020-01-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (999546, 108, '2020-01-11', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (999547, 108, '2020-01-12', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (999548, 108, '2020-01-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (999549, 108, '2020-01-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (999550, 108, '2020-01-15', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (999551, 108, '2020-01-16', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (999552, 108, '2020-01-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (999553, 108, '2020-01-18', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (999554, 108, '2020-01-19', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (999555, 108, '2020-01-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (999556, 108, '2020-01-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (999557, 108, '2020-01-22', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (999558, 108, '2020-01-23', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (999576, 108, '2020-02-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (999577, 108, '2020-02-11', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (999578, 108, '2020-02-12', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (999579, 108, '2020-02-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (999580, 108, '2020-02-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (999582, 108, '2020-02-16', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (999583, 108, '2020-02-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (999584, 108, '2020-02-18', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (999585, 108, '2020-02-19', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (999586, 108, '2020-02-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (999587, 108, '2020-02-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (999588, 108, '2020-02-22', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (999589, 108, '2020-02-23', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1044755, 111, '2020-01-28', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1044756, 111, '2020-01-29', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1044757, 111, '2020-01-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1044758, 111, '2020-01-31', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1046894, 128, '2020-01-15', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1046895, 128, '2020-01-16', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1046896, 128, '2020-01-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1046897, 128, '2020-01-18', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1046898, 128, '2020-01-19', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1046899, 128, '2020-01-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1046900, 128, '2020-01-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1046901, 128, '2020-01-22', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1046902, 128, '2020-01-23', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1046903, 128, '2020-01-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1046904, 128, '2020-01-25', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1046905, 128, '2020-01-26', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1046906, 128, '2020-01-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1046907, 128, '2020-01-28', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084026, 121, '2020-06-05', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084027, 121, '2020-06-06', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084028, 121, '2020-06-07', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084029, 121, '2020-06-08', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1046923, 128, '2020-02-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1046924, 128, '2020-02-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1046925, 128, '2020-02-15', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1046926, 128, '2020-02-16', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1046927, 128, '2020-02-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1046928, 128, '2020-02-18', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1046929, 128, '2020-02-19', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1046930, 128, '2020-02-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1049050, 142, '2020-01-19', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1049051, 142, '2020-01-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1049052, 142, '2020-01-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1049053, 142, '2020-01-22', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1049054, 142, '2020-01-23', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1049055, 142, '2020-01-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084049, 117, '2020-05-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084050, 117, '2020-05-15', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084051, 117, '2020-05-16', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084052, 117, '2020-05-17', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085988, 149, '2020-06-18', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1051203, 136, '2020-01-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1051204, 136, '2020-01-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1051205, 136, '2020-01-22', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1051206, 136, '2020-01-23', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1051207, 136, '2020-01-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1051208, 136, '2020-01-25', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1051209, 136, '2020-01-26', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1051210, 136, '2020-01-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1051211, 136, '2020-01-28', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1051212, 136, '2020-01-29', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1051213, 136, '2020-01-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1051214, 136, '2020-01-31', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1051215, 136, '2020-02-01', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1051216, 136, '2020-02-02', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084056, 117, '2020-05-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084057, 117, '2020-05-22', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084058, 117, '2020-05-23', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084059, 117, '2020-05-24', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1053357, 140, '2020-01-22', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1055506, 139, '2020-01-19', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1055507, 139, '2020-01-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1055508, 139, '2020-01-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1055509, 139, '2020-01-22', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1055510, 139, '2020-01-23', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1055511, 139, '2020-01-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1055512, 139, '2020-01-25', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1055513, 139, '2020-01-26', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1055514, 139, '2020-01-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1055515, 139, '2020-01-28', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1055516, 139, '2020-01-29', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1055517, 139, '2020-01-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1055518, 139, '2020-01-31', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1055519, 139, '2020-02-01', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084079, 117, '2020-06-13', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084080, 117, '2020-06-14', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084081, 125, '2020-04-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '03:20:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1057681, 141, '2020-02-11', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1057682, 141, '2020-02-12', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1057683, 141, '2020-02-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1057684, 141, '2020-02-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1057685, 141, '2020-02-15', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1057686, 141, '2020-02-16', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1057687, 141, '2020-02-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1057688, 141, '2020-02-18', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1057689, 141, '2020-02-19', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1057690, 141, '2020-02-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1057691, 141, '2020-02-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1057692, 141, '2020-02-22', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1057693, 141, '2020-02-23', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1059811, 122, '2020-01-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084085, 125, '2020-04-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '03:20:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084086, 125, '2020-04-25', NULL, NULL, NULL, NULL, NULL, '00:00:00', '03:20:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '03:20:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084087, 125, '2020-04-26', NULL, NULL, NULL, NULL, NULL, '00:00:00', '03:20:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084088, 125, '2020-04-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '03:20:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1061973, 106, '2020-01-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '04:10:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '04:10:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1061974, 106, '2020-01-31', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '04:10:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1061975, 106, '2020-02-01', NULL, NULL, NULL, NULL, NULL, '00:00:00', '04:10:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1061976, 106, '2020-02-02', NULL, NULL, NULL, NULL, NULL, '00:00:00', '04:10:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1061977, 106, '2020-02-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '04:10:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '04:10:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1061978, 106, '2020-02-04', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '04:10:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '04:10:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1061979, 106, '2020-02-05', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '04:10:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '04:10:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1061980, 106, '2020-02-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '04:10:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '04:10:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1061981, 106, '2020-02-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '04:10:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1061982, 106, '2020-02-08', NULL, NULL, NULL, NULL, NULL, '00:00:00', '04:10:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1061983, 106, '2020-02-09', NULL, NULL, NULL, NULL, NULL, '00:00:00', '04:10:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1061984, 106, '2020-02-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '04:10:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '04:10:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1061985, 106, '2020-02-11', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '04:10:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '04:10:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1061986, 106, '2020-02-12', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '04:10:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '04:10:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084108, 125, '2020-05-17', NULL, NULL, NULL, NULL, NULL, '00:00:00', '03:20:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084109, 125, '2020-05-18', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '03:20:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084110, 125, '2020-05-19', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '03:20:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084111, 125, '2020-05-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '03:20:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1064119, 110, '2020-01-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1064120, 110, '2020-01-25', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1064121, 110, '2020-01-26', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1064122, 110, '2020-01-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1064123, 110, '2020-01-28', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1064124, 110, '2020-01-29', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1064125, 110, '2020-01-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1064126, 110, '2020-01-31', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1064145, 110, '2020-02-19', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1064146, 110, '2020-02-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1064147, 110, '2020-02-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1064148, 110, '2020-02-22', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1064149, 110, '2020-02-23', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1066264, 145, '2020-01-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084116, 125, '2020-05-25', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '03:20:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084117, 125, '2020-05-26', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '03:20:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084118, 125, '2020-05-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '03:20:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084133, 125, '2020-06-11', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '03:20:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1066281, 145, '2020-02-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1066282, 145, '2020-02-04', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1066283, 145, '2020-02-05', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1066284, 145, '2020-02-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1066285, 145, '2020-02-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1066286, 145, '2020-02-08', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1066287, 145, '2020-02-09', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1066288, 145, '2020-02-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1066289, 145, '2020-02-11', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1066290, 145, '2020-02-12', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1066291, 145, '2020-02-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1066292, 145, '2020-02-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1066293, 145, '2020-02-15', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1066294, 145, '2020-02-16', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084138, 119, '2020-04-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084139, 119, '2020-04-22', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084140, 119, '2020-04-23', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084141, 119, '2020-04-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1068427, 148, '2020-01-28', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1068428, 148, '2020-01-29', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1068429, 148, '2020-01-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1068430, 148, '2020-01-31', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1068449, 148, '2020-02-19', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1068450, 148, '2020-02-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1068451, 148, '2020-02-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1068452, 148, '2020-02-22', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1068453, 148, '2020-02-23', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1070564, 130, '2020-01-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1070565, 130, '2020-01-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1070566, 130, '2020-01-15', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1070567, 130, '2020-01-16', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084146, 119, '2020-04-29', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084147, 119, '2020-04-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084162, 119, '2020-05-15', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084163, 119, '2020-05-16', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1070585, 130, '2020-02-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1070586, 130, '2020-02-04', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1070587, 130, '2020-02-05', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1070588, 130, '2020-02-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1070589, 130, '2020-02-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1070590, 130, '2020-02-08', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1070591, 130, '2020-02-09', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1070592, 130, '2020-02-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1070593, 130, '2020-02-11', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1070594, 130, '2020-02-12', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1070595, 130, '2020-02-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1070596, 130, '2020-02-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1070597, 130, '2020-02-15', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1070598, 130, '2020-02-16', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084169, 119, '2020-05-22', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084170, 119, '2020-05-23', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084171, 119, '2020-05-24', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084172, 119, '2020-05-25', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (914498, 129, '2020-02-04', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (914499, 129, '2020-02-05', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (914500, 129, '2020-02-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (914501, 129, '2020-02-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (914502, 129, '2020-02-08', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (914503, 129, '2020-02-09', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (914504, 129, '2020-02-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (914505, 129, '2020-02-11', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (914506, 129, '2020-02-12', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (914507, 129, '2020-02-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (914508, 129, '2020-02-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (914509, 129, '2020-02-15', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (914510, 129, '2020-02-16', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (914511, 129, '2020-02-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084193, 113, '2020-04-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084194, 113, '2020-04-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084195, 113, '2020-04-22', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084196, 113, '2020-04-23', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1074884, 143, '2020-01-29', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1074885, 143, '2020-01-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1074886, 143, '2020-01-31', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1074905, 143, '2020-02-19', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1074906, 143, '2020-02-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1074907, 143, '2020-02-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1074908, 143, '2020-02-22', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1074909, 143, '2020-02-23', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079160, 146, '2020-02-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079161, 146, '2020-02-25', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079162, 146, '2020-02-26', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079163, 146, '2020-02-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079164, 146, '2020-02-28', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079165, 146, '2020-02-29', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084201, 113, '2020-04-28', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084202, 113, '2020-04-29', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084203, 113, '2020-04-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085402, 145, '2020-05-23', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079182, 146, '2020-03-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079183, 146, '2020-03-18', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079184, 146, '2020-03-19', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079185, 146, '2020-03-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079186, 146, '2020-03-21', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079187, 146, '2020-03-22', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079188, 146, '2020-03-23', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079189, 146, '2020-03-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079190, 146, '2020-03-25', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079191, 146, '2020-03-26', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079192, 146, '2020-03-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079193, 146, '2020-03-28', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079194, 146, '2020-03-29', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079195, 146, '2020-03-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084222, 113, '2020-05-19', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084223, 113, '2020-05-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084224, 113, '2020-05-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079211, 146, '2020-04-15', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079212, 146, '2020-04-16', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079213, 146, '2020-04-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079214, 146, '2020-04-18', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079215, 146, '2020-04-19', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079216, 115, '2020-02-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079217, 115, '2020-02-25', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079218, 115, '2020-02-26', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079219, 115, '2020-02-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079220, 115, '2020-02-28', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079221, 115, '2020-02-29', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079222, 115, '2020-03-01', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079223, 115, '2020-03-02', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079224, 115, '2020-03-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084230, 113, '2020-05-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084231, 113, '2020-05-28', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084232, 113, '2020-05-29', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084233, 113, '2020-05-30', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079240, 115, '2020-03-19', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079241, 115, '2020-03-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079242, 115, '2020-03-21', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079243, 115, '2020-03-22', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079244, 115, '2020-03-23', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079245, 115, '2020-03-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079246, 115, '2020-03-25', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079247, 115, '2020-03-26', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079248, 115, '2020-03-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079249, 115, '2020-03-28', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079250, 115, '2020-03-29', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079251, 115, '2020-03-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079252, 115, '2020-03-31', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079253, 115, '2020-04-01', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084252, 147, '2020-04-23', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084253, 147, '2020-04-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084254, 147, '2020-04-25', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084255, 147, '2020-04-26', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079269, 115, '2020-04-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079270, 115, '2020-04-18', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079271, 115, '2020-04-19', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079272, 114, '2020-02-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079273, 114, '2020-02-25', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079274, 114, '2020-02-26', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079275, 114, '2020-02-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079276, 114, '2020-02-28', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079277, 114, '2020-02-29', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079278, 114, '2020-03-01', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079279, 114, '2020-03-02', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079280, 114, '2020-03-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079281, 114, '2020-03-04', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079282, 114, '2020-03-05', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084260, 147, '2020-05-01', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084261, 147, '2020-05-02', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084262, 147, '2020-05-03', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084263, 147, '2020-05-04', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079298, 114, '2020-03-21', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079299, 114, '2020-03-22', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079300, 114, '2020-03-23', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079301, 114, '2020-03-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079302, 114, '2020-03-25', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079303, 114, '2020-03-26', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079304, 114, '2020-03-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079305, 114, '2020-03-28', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079306, 114, '2020-03-29', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079307, 114, '2020-03-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079308, 114, '2020-03-31', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079309, 114, '2020-04-01', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079310, 114, '2020-04-02', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079311, 114, '2020-04-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084283, 147, '2020-05-24', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084284, 147, '2020-05-25', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084285, 147, '2020-05-26', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084286, 147, '2020-05-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085989, 149, '2020-06-19', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079328, 112, '2020-02-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079329, 112, '2020-02-25', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079330, 112, '2020-02-26', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079331, 112, '2020-02-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079332, 112, '2020-02-28', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079333, 112, '2020-02-29', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079334, 112, '2020-03-01', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079335, 112, '2020-03-02', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079336, 112, '2020-03-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079337, 112, '2020-03-04', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079338, 112, '2020-03-05', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079339, 112, '2020-03-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079340, 112, '2020-03-07', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079341, 112, '2020-03-08', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084291, 147, '2020-06-01', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084292, 147, '2020-06-02', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084293, 147, '2020-06-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084308, 131, '2020-04-23', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '04:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '04:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079357, 112, '2020-03-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079358, 112, '2020-03-25', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079359, 112, '2020-03-26', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079360, 112, '2020-03-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079361, 112, '2020-03-28', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079362, 112, '2020-03-29', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079363, 112, '2020-03-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079364, 112, '2020-03-31', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079365, 112, '2020-04-01', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079366, 112, '2020-04-02', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079367, 112, '2020-04-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079368, 112, '2020-04-04', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079369, 112, '2020-04-05', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079370, 112, '2020-04-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084313, 131, '2020-04-28', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '04:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '04:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084314, 131, '2020-04-29', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '04:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '04:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084315, 131, '2020-04-30', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '04:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '04:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084316, 131, '2020-05-01', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '04:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '04:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1001742, 135, '2019-12-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1001743, 135, '2019-12-31', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079386, 108, '2020-02-26', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079387, 108, '2020-02-27', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079388, 108, '2020-02-28', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079389, 108, '2020-02-29', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079390, 108, '2020-03-01', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079391, 108, '2020-03-02', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079392, 108, '2020-03-03', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079393, 108, '2020-03-04', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079394, 108, '2020-03-05', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079395, 108, '2020-03-06', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079396, 108, '2020-03-07', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079397, 108, '2020-03-08', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084321, 131, '2020-05-06', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '04:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '04:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084322, 131, '2020-05-07', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '04:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '04:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084337, 131, '2020-05-22', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '04:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '04:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084338, 131, '2020-05-23', NULL, NULL, NULL, NULL, NULL, '00:00:00', '04:00:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079413, 108, '2020-03-24', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079414, 108, '2020-03-25', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079415, 108, '2020-03-26', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079416, 108, '2020-03-27', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079417, 108, '2020-03-28', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079418, 108, '2020-03-29', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079419, 108, '2020-03-30', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079420, 108, '2020-03-31', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079421, 108, '2020-04-01', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079422, 108, '2020-04-02', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079423, 108, '2020-04-03', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079424, 108, '2020-04-04', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079425, 108, '2020-04-05', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079426, 108, '2020-04-06', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084343, 131, '2020-05-28', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '04:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '04:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084344, 131, '2020-05-29', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '04:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '04:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084345, 131, '2020-05-30', NULL, NULL, NULL, NULL, NULL, '00:00:00', '04:00:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084346, 131, '2020-05-31', NULL, NULL, NULL, NULL, NULL, '00:00:00', '04:00:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079443, 135, '2020-02-27', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079444, 135, '2020-02-28', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079445, 135, '2020-02-29', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079446, 135, '2020-03-01', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079447, 135, '2020-03-02', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079448, 135, '2020-03-03', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079449, 135, '2020-03-04', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079450, 135, '2020-03-05', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079451, 135, '2020-03-06', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079452, 135, '2020-03-07', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079453, 135, '2020-03-08', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079454, 135, '2020-03-09', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079455, 135, '2020-03-10', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079456, 135, '2020-03-11', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084351, 131, '2020-06-05', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '04:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '04:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084352, 131, '2020-06-06', NULL, NULL, NULL, NULL, NULL, '00:00:00', '04:00:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084368, 104, '2020-04-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085448, 148, '2020-05-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079472, 135, '2020-03-27', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079473, 135, '2020-03-28', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079474, 135, '2020-03-29', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079475, 135, '2020-03-30', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079476, 135, '2020-03-31', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079477, 135, '2020-04-01', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079478, 135, '2020-04-02', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079479, 135, '2020-04-03', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079480, 135, '2020-04-04', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079481, 135, '2020-04-05', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079482, 135, '2020-04-06', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079483, 135, '2020-04-07', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079484, 135, '2020-04-08', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079485, 135, '2020-04-09', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084375, 104, '2020-05-04', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084376, 104, '2020-05-05', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084377, 104, '2020-05-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085453, 148, '2020-05-18', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1001688, 135, '2020-01-01', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1001689, 135, '2020-01-02', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1001690, 135, '2020-01-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1001691, 135, '2020-01-04', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1001692, 135, '2020-01-05', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1001693, 135, '2020-01-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1001694, 135, '2020-01-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1001695, 135, '2020-01-08', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1001696, 135, '2020-01-09', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1001697, 135, '2020-01-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1001698, 135, '2020-01-11', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1001699, 135, '2020-01-12', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1001700, 135, '2020-01-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1001701, 135, '2020-01-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1001702, 135, '2020-01-15', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1001703, 135, '2020-01-16', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1001704, 135, '2020-01-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079501, 127, '2020-02-29', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1001705, 135, '2020-01-18', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1001706, 135, '2020-01-19', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1001707, 135, '2020-01-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1001708, 135, '2020-01-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1001709, 135, '2020-01-22', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1001710, 135, '2020-01-23', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1001711, 135, '2020-01-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1001712, 135, '2020-01-25', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1001713, 135, '2020-01-26', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1001714, 135, '2020-01-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1001715, 135, '2020-01-28', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1001716, 135, '2020-01-29', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1001717, 135, '2020-01-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1001718, 135, '2020-01-31', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1001719, 135, '2020-02-01', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1001720, 135, '2020-02-02', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1001721, 135, '2020-02-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1001722, 135, '2020-02-04', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085994, 149, '2020-06-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085998, 149, '2020-06-28', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079505, 127, '2020-03-04', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079506, 127, '2020-03-05', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079507, 127, '2020-03-06', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079508, 127, '2020-03-07', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079509, 127, '2020-03-08', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079510, 127, '2020-03-09', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079511, 127, '2020-03-10', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079512, 127, '2020-03-11', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079513, 127, '2020-03-12', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079514, 127, '2020-03-13', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079515, 127, '2020-03-14', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079516, 127, '2020-03-15', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079517, 127, '2020-03-16', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079518, 127, '2020-03-17', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084398, 104, '2020-05-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084399, 104, '2020-05-28', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084400, 104, '2020-05-29', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084401, 104, '2020-05-30', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:00:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079535, 127, '2020-04-03', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079536, 127, '2020-04-04', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079537, 127, '2020-04-05', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079538, 127, '2020-04-06', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079539, 127, '2020-04-07', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079540, 127, '2020-04-08', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079541, 127, '2020-04-09', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079542, 127, '2020-04-10', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079543, 127, '2020-04-11', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079544, 127, '2020-04-12', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079545, 127, '2020-04-13', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079546, 127, '2020-04-14', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079547, 127, '2020-04-15', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079548, 127, '2020-04-16', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084406, 104, '2020-06-04', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084407, 104, '2020-06-05', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084408, 104, '2020-06-06', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:00:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084409, 104, '2020-06-07', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:00:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079564, 149, '2020-03-07', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079565, 149, '2020-03-08', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079566, 149, '2020-03-09', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079567, 149, '2020-03-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079568, 149, '2020-03-11', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079569, 149, '2020-03-12', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079570, 149, '2020-03-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079571, 149, '2020-03-14', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079572, 149, '2020-03-15', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079573, 149, '2020-03-16', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079574, 149, '2020-03-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079575, 149, '2020-03-18', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079576, 149, '2020-03-19', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079577, 149, '2020-03-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084428, 151, '2020-05-01', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084429, 151, '2020-05-02', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084430, 151, '2020-05-03', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084431, 151, '2020-05-04', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079595, 149, '2020-04-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079596, 149, '2020-04-08', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079597, 149, '2020-04-09', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079598, 149, '2020-04-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079599, 149, '2020-04-11', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079600, 149, '2020-04-12', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079601, 149, '2020-04-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079602, 149, '2020-04-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079603, 149, '2020-04-15', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079604, 149, '2020-04-16', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079605, 149, '2020-04-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079606, 149, '2020-04-18', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079607, 149, '2020-04-19', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079608, 103, '2020-02-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084437, 151, '2020-05-10', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084438, 151, '2020-05-11', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084439, 151, '2020-05-12', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084452, 151, '2020-05-25', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079625, 103, '2020-03-12', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079626, 103, '2020-03-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079627, 103, '2020-03-14', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079628, 103, '2020-03-15', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079629, 103, '2020-03-16', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079630, 103, '2020-03-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079631, 103, '2020-03-18', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079632, 103, '2020-03-19', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079633, 103, '2020-03-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079634, 103, '2020-03-21', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079635, 103, '2020-03-22', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079636, 103, '2020-03-23', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079637, 103, '2020-03-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079638, 103, '2020-03-25', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084457, 151, '2020-05-30', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084458, 151, '2020-05-31', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084459, 151, '2020-06-01', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084460, 151, '2020-06-02', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079654, 103, '2020-04-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079655, 103, '2020-04-11', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079656, 103, '2020-04-12', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079657, 103, '2020-04-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079658, 103, '2020-04-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079659, 103, '2020-04-15', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079660, 103, '2020-04-16', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079661, 103, '2020-04-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079662, 103, '2020-04-18', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079663, 103, '2020-04-19', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079664, 121, '2020-02-24', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079665, 121, '2020-02-25', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079666, 121, '2020-02-26', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079667, 121, '2020-02-27', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084470, 151, '2020-06-12', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084471, 151, '2020-06-13', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084472, 151, '2020-06-14', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084473, 138, '2020-04-20', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079684, 121, '2020-03-15', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079685, 121, '2020-03-16', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079686, 121, '2020-03-17', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079687, 121, '2020-03-18', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079688, 121, '2020-03-19', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079689, 121, '2020-03-20', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079690, 121, '2020-03-21', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079691, 121, '2020-03-22', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079692, 121, '2020-03-23', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079693, 121, '2020-03-24', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079694, 121, '2020-03-25', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079695, 121, '2020-03-26', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079696, 121, '2020-03-27', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079697, 121, '2020-03-28', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079698, 121, '2020-03-29', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084493, 138, '2020-05-10', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084494, 138, '2020-05-11', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084495, 138, '2020-05-12', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079713, 121, '2020-04-13', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079714, 121, '2020-04-14', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079715, 121, '2020-04-15', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079716, 121, '2020-04-16', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079717, 121, '2020-04-17', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079718, 121, '2020-04-18', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079719, 121, '2020-04-19', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079720, 125, '2020-02-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '03:20:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079721, 125, '2020-02-25', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '03:20:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079722, 125, '2020-02-26', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '03:20:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079723, 125, '2020-02-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '03:20:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079724, 125, '2020-02-28', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '03:20:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079725, 125, '2020-02-29', NULL, NULL, NULL, NULL, NULL, '00:00:00', '03:20:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '03:20:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079726, 125, '2020-03-01', NULL, NULL, NULL, NULL, NULL, '00:00:00', '03:20:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084500, 138, '2020-05-17', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084501, 138, '2020-05-18', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084502, 138, '2020-05-19', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084517, 138, '2020-06-03', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086021, 149, '2020-07-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086026, 149, '2020-07-26', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079743, 125, '2020-03-18', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '03:20:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079744, 125, '2020-03-19', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '03:20:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079745, 125, '2020-03-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '03:20:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079746, 125, '2020-03-21', NULL, NULL, NULL, NULL, NULL, '00:00:00', '03:20:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '03:20:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079747, 125, '2020-03-22', NULL, NULL, NULL, NULL, NULL, '00:00:00', '03:20:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079748, 125, '2020-03-23', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '03:20:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079749, 125, '2020-03-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '03:20:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079750, 125, '2020-03-25', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '03:20:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079751, 125, '2020-03-26', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '03:20:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079752, 125, '2020-03-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '03:20:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079753, 125, '2020-03-28', NULL, NULL, NULL, NULL, NULL, '00:00:00', '03:20:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '03:20:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079754, 125, '2020-03-29', NULL, NULL, NULL, NULL, NULL, '00:00:00', '03:20:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079755, 125, '2020-03-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '03:20:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079756, 125, '2020-03-31', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '03:20:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084522, 138, '2020-06-08', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084523, 138, '2020-06-09', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084524, 138, '2020-06-10', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079772, 125, '2020-04-16', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '03:20:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079773, 125, '2020-04-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '03:20:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079774, 125, '2020-04-18', NULL, NULL, NULL, NULL, NULL, '00:00:00', '03:20:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '03:20:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079775, 125, '2020-04-19', NULL, NULL, NULL, NULL, NULL, '00:00:00', '03:20:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079776, 119, '2020-02-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079777, 119, '2020-02-25', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079778, 119, '2020-02-26', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079779, 119, '2020-02-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079780, 119, '2020-02-28', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079781, 119, '2020-02-29', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079782, 119, '2020-03-01', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079783, 119, '2020-03-02', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079784, 119, '2020-03-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079785, 119, '2020-03-04', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084530, 105, '2020-04-21', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084531, 105, '2020-04-22', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084546, 105, '2020-05-07', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084547, 105, '2020-05-08', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079801, 119, '2020-03-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079802, 119, '2020-03-21', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079803, 119, '2020-03-22', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079804, 119, '2020-03-23', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079805, 119, '2020-03-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079806, 119, '2020-03-25', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079807, 119, '2020-03-26', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079808, 119, '2020-03-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079809, 119, '2020-03-28', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079810, 119, '2020-03-29', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079811, 119, '2020-03-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079812, 119, '2020-03-31', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079813, 119, '2020-04-01', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079814, 119, '2020-04-02', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084552, 105, '2020-05-13', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084553, 105, '2020-05-14', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084554, 105, '2020-05-15', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084555, 105, '2020-05-16', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086042, 103, '2020-06-16', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079830, 119, '2020-04-18', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079831, 119, '2020-04-19', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079832, 113, '2020-02-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079833, 113, '2020-02-25', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079834, 113, '2020-02-26', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079835, 113, '2020-02-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079836, 113, '2020-02-28', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079837, 113, '2020-02-29', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079838, 113, '2020-03-01', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079839, 113, '2020-03-02', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079840, 113, '2020-03-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079841, 113, '2020-03-04', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079842, 113, '2020-03-05', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079843, 113, '2020-03-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084560, 105, '2020-05-21', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084575, 105, '2020-06-05', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084576, 105, '2020-06-06', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084577, 105, '2020-06-07', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079860, 113, '2020-03-23', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079861, 113, '2020-03-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079862, 113, '2020-03-25', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079863, 113, '2020-03-26', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079864, 113, '2020-03-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079865, 113, '2020-03-28', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079866, 113, '2020-03-29', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079867, 113, '2020-03-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079868, 113, '2020-03-31', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079869, 113, '2020-04-01', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079870, 113, '2020-04-02', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079871, 113, '2020-04-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079872, 113, '2020-04-04', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079873, 113, '2020-04-05', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084582, 105, '2020-06-12', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084583, 105, '2020-06-13', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084584, 105, '2020-06-14', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084585, 134, '2020-04-20', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079889, 147, '2020-02-25', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079890, 147, '2020-02-26', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079891, 147, '2020-02-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079892, 147, '2020-02-28', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079893, 147, '2020-02-29', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079894, 147, '2020-03-01', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079895, 147, '2020-03-02', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079896, 147, '2020-03-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079897, 147, '2020-03-04', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079898, 147, '2020-03-05', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079899, 147, '2020-03-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079900, 147, '2020-03-07', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079901, 147, '2020-03-08', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079902, 147, '2020-03-09', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084606, 134, '2020-05-11', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084607, 134, '2020-05-12', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084608, 134, '2020-05-13', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084609, 134, '2020-05-14', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079918, 147, '2020-03-25', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079919, 147, '2020-03-26', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079920, 147, '2020-03-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079921, 147, '2020-03-28', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079922, 147, '2020-03-29', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079923, 147, '2020-03-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079924, 147, '2020-03-31', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079925, 147, '2020-04-01', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079926, 147, '2020-04-02', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079927, 147, '2020-04-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079928, 147, '2020-04-04', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079929, 147, '2020-04-05', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079930, 147, '2020-04-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079931, 147, '2020-04-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084614, 134, '2020-05-19', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084615, 134, '2020-05-20', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084616, 134, '2020-05-21', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084617, 134, '2020-05-22', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079947, 131, '2020-02-27', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '04:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '04:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079948, 131, '2020-02-28', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '04:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '04:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079949, 131, '2020-02-29', NULL, NULL, NULL, NULL, NULL, '00:00:00', '04:00:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079950, 131, '2020-03-01', NULL, NULL, NULL, NULL, NULL, '00:00:00', '04:00:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079951, 131, '2020-03-02', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '04:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '04:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079952, 131, '2020-03-03', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '04:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '04:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079953, 131, '2020-03-04', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '04:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '04:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079954, 131, '2020-03-05', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '04:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '04:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079955, 131, '2020-03-06', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '04:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '04:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079956, 131, '2020-03-07', NULL, NULL, NULL, NULL, NULL, '00:00:00', '04:00:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079957, 131, '2020-03-08', NULL, NULL, NULL, NULL, NULL, '00:00:00', '04:00:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079958, 131, '2020-03-09', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '04:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '04:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079959, 131, '2020-03-10', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '04:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '04:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079960, 131, '2020-03-11', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '04:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '04:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084636, 134, '2020-06-10', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084637, 134, '2020-06-11', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084638, 134, '2020-06-12', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084639, 134, '2020-06-13', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079976, 131, '2020-03-27', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '04:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '04:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079977, 131, '2020-03-28', NULL, NULL, NULL, NULL, NULL, '00:00:00', '04:00:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079978, 131, '2020-03-29', NULL, NULL, NULL, NULL, NULL, '00:00:00', '04:00:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079979, 131, '2020-03-30', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '04:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '04:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079980, 131, '2020-03-31', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '04:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '04:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079981, 131, '2020-04-01', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '04:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '04:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079982, 131, '2020-04-02', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '04:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '04:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079983, 131, '2020-04-03', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '04:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '04:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079984, 131, '2020-04-04', NULL, NULL, NULL, NULL, NULL, '00:00:00', '04:00:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079985, 131, '2020-04-05', NULL, NULL, NULL, NULL, NULL, '00:00:00', '04:00:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079986, 131, '2020-04-06', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '04:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '04:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079987, 131, '2020-04-07', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '04:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '04:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079988, 131, '2020-04-08', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '04:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '04:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079989, 131, '2020-04-09', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '04:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '04:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084644, 102, '2020-04-23', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084645, 102, '2020-04-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084646, 102, '2020-04-25', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084647, 102, '2020-04-26', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080006, 104, '2020-03-01', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:00:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080007, 104, '2020-03-02', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080008, 104, '2020-03-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080009, 104, '2020-03-04', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080010, 104, '2020-03-05', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080011, 104, '2020-03-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080012, 104, '2020-03-07', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:00:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080013, 104, '2020-03-08', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:00:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080014, 104, '2020-03-09', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080015, 104, '2020-03-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080016, 104, '2020-03-11', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080017, 104, '2020-03-12', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080018, 104, '2020-03-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080019, 104, '2020-03-14', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:00:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080020, 104, '2020-03-15', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:00:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084666, 102, '2020-05-15', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084667, 102, '2020-05-16', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084668, 102, '2020-05-17', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080035, 104, '2020-03-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080036, 104, '2020-03-31', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080037, 104, '2020-04-01', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080038, 104, '2020-04-02', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080039, 104, '2020-04-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080040, 104, '2020-04-04', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:00:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080041, 104, '2020-04-05', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:00:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080042, 104, '2020-04-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080043, 104, '2020-04-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080044, 104, '2020-04-08', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080045, 104, '2020-04-09', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080046, 104, '2020-04-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080047, 104, '2020-04-11', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:00:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080048, 104, '2020-04-12', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:00:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084673, 102, '2020-05-22', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084674, 102, '2020-05-23', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084675, 102, '2020-05-24', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084676, 102, '2020-05-25', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085514, 130, '2020-05-23', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080064, 151, '2020-03-03', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080065, 151, '2020-03-04', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080066, 151, '2020-03-05', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080067, 151, '2020-03-06', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080068, 151, '2020-03-07', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080069, 151, '2020-03-08', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080070, 151, '2020-03-09', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080071, 151, '2020-03-10', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080072, 151, '2020-03-11', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080073, 151, '2020-03-12', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080074, 151, '2020-03-13', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080075, 151, '2020-03-14', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080076, 151, '2020-03-15', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080077, 151, '2020-03-16', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084695, 102, '2020-06-13', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084696, 102, '2020-06-14', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084697, 109, '2020-04-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084698, 109, '2020-04-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080093, 151, '2020-04-01', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080094, 151, '2020-04-02', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080095, 151, '2020-04-03', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080096, 151, '2020-04-04', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080097, 151, '2020-04-05', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080098, 151, '2020-04-06', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080099, 151, '2020-04-07', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080100, 151, '2020-04-08', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080101, 151, '2020-04-09', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080102, 151, '2020-04-10', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080103, 151, '2020-04-11', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080104, 151, '2020-04-12', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080105, 151, '2020-04-13', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080106, 151, '2020-04-14', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084704, 109, '2020-04-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084705, 109, '2020-04-28', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084706, 109, '2020-04-29', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084721, 109, '2020-05-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080122, 138, '2020-03-05', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080123, 138, '2020-03-06', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080124, 138, '2020-03-07', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080125, 138, '2020-03-08', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080126, 138, '2020-03-09', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080127, 138, '2020-03-10', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080128, 138, '2020-03-11', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080129, 138, '2020-03-12', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080130, 138, '2020-03-13', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080131, 138, '2020-03-14', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080132, 138, '2020-03-15', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080133, 138, '2020-03-16', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080134, 138, '2020-03-17', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080135, 138, '2020-03-18', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084726, 109, '2020-05-19', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084727, 109, '2020-05-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084728, 109, '2020-05-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085534, 130, '2020-06-12', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080151, 138, '2020-04-03', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080152, 138, '2020-04-04', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080153, 138, '2020-04-05', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080154, 138, '2020-04-06', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080155, 138, '2020-04-07', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080156, 138, '2020-04-08', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080157, 138, '2020-04-09', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080158, 138, '2020-04-10', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080159, 138, '2020-04-11', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080160, 138, '2020-04-12', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080161, 138, '2020-04-13', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080162, 138, '2020-04-14', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080163, 138, '2020-04-15', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080164, 138, '2020-04-16', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084734, 109, '2020-05-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084735, 109, '2020-05-28', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084750, 109, '2020-06-12', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084751, 109, '2020-06-13', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080181, 105, '2020-03-08', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080182, 105, '2020-03-09', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080183, 105, '2020-03-10', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080184, 105, '2020-03-11', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080185, 105, '2020-03-12', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080186, 105, '2020-03-13', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080187, 105, '2020-03-14', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080188, 105, '2020-03-15', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080189, 105, '2020-03-16', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080190, 105, '2020-03-17', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080191, 105, '2020-03-18', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080192, 105, '2020-03-19', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080193, 105, '2020-03-20', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080194, 105, '2020-03-21', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084756, 118, '2020-04-23', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084757, 118, '2020-04-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084758, 118, '2020-04-25', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084759, 118, '2020-04-26', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1003840, 127, '2020-01-01', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1003841, 127, '2020-01-02', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1003842, 127, '2020-01-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1003843, 127, '2020-01-04', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1003844, 127, '2020-01-05', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1003845, 127, '2020-01-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1003846, 127, '2020-01-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1003847, 127, '2020-01-08', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1003848, 127, '2020-01-09', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1003849, 127, '2020-01-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1003850, 127, '2020-01-11', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1003851, 127, '2020-01-12', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1003852, 127, '2020-01-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1003853, 127, '2020-01-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1003854, 127, '2020-01-15', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1003855, 127, '2020-01-16', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1003856, 127, '2020-01-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1003857, 127, '2020-01-18', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086049, 103, '2020-06-23', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086053, 103, '2020-06-27', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1003874, 127, '2020-02-04', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1003875, 127, '2020-02-05', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1003876, 127, '2020-02-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1003877, 127, '2020-02-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1003878, 127, '2020-02-08', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1003879, 127, '2020-02-09', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1003880, 127, '2020-02-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1003881, 127, '2020-02-11', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1003882, 127, '2020-02-12', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1003883, 127, '2020-02-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1003884, 127, '2020-02-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1003885, 127, '2020-02-15', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1003886, 127, '2020-02-16', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1003887, 127, '2020-02-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1003888, 127, '2020-02-18', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1003889, 127, '2020-02-19', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1003890, 127, '2020-02-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1003891, 127, '2020-02-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080211, 105, '2020-04-07', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080212, 105, '2020-04-08', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080213, 105, '2020-04-09', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080214, 105, '2020-04-10', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080215, 105, '2020-04-11', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080216, 105, '2020-04-12', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080217, 105, '2020-04-13', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080218, 105, '2020-04-14', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080219, 105, '2020-04-15', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080220, 105, '2020-04-16', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080221, 105, '2020-04-17', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080222, 105, '2020-04-18', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080223, 105, '2020-04-19', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080224, 134, '2020-02-24', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084764, 118, '2020-05-01', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084765, 118, '2020-05-02', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084781, 118, '2020-05-18', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085538, 129, '2020-04-21', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080240, 134, '2020-03-11', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080241, 134, '2020-03-12', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080242, 134, '2020-03-13', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080243, 134, '2020-03-14', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080244, 134, '2020-03-15', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080245, 134, '2020-03-16', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080246, 134, '2020-03-17', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080247, 134, '2020-03-18', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080248, 134, '2020-03-19', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080249, 134, '2020-03-20', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080250, 134, '2020-03-21', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080251, 134, '2020-03-22', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080252, 134, '2020-03-23', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080253, 134, '2020-03-24', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084788, 118, '2020-05-25', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084789, 118, '2020-05-26', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084790, 118, '2020-05-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084791, 118, '2020-05-28', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080269, 134, '2020-04-09', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080270, 134, '2020-04-10', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080271, 134, '2020-04-11', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080272, 134, '2020-04-12', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080273, 134, '2020-04-13', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080274, 134, '2020-04-14', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080275, 134, '2020-04-15', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080276, 134, '2020-04-16', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080277, 134, '2020-04-17', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080278, 134, '2020-04-18', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080279, 134, '2020-04-19', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080280, 144, '2020-02-24', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080281, 144, '2020-02-25', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080282, 144, '2020-02-26', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084810, 133, '2020-04-21', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084811, 133, '2020-04-22', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084812, 133, '2020-04-23', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080298, 144, '2020-03-13', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080299, 144, '2020-03-14', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080300, 144, '2020-03-15', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080301, 144, '2020-03-16', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080302, 144, '2020-03-17', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080303, 144, '2020-03-18', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080304, 144, '2020-03-19', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080305, 144, '2020-03-20', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080306, 144, '2020-03-21', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080307, 144, '2020-03-22', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080308, 144, '2020-03-23', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080309, 144, '2020-03-24', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080310, 144, '2020-03-25', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080311, 144, '2020-03-26', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084818, 133, '2020-04-29', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084819, 133, '2020-04-30', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084820, 133, '2020-05-01', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084821, 133, '2020-05-02', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080328, 102, '2020-03-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080329, 102, '2020-03-07', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080330, 102, '2020-03-08', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080331, 102, '2020-03-09', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080332, 102, '2020-03-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080333, 102, '2020-03-11', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080334, 102, '2020-03-12', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080335, 102, '2020-03-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080336, 102, '2020-03-14', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080337, 102, '2020-03-15', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080338, 102, '2020-03-16', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080339, 102, '2020-03-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080340, 102, '2020-03-18', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080341, 102, '2020-03-19', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084840, 133, '2020-05-21', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084841, 133, '2020-05-22', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084842, 133, '2020-05-23', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084843, 133, '2020-05-24', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080357, 102, '2020-04-04', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080358, 102, '2020-04-05', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080359, 102, '2020-04-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080360, 102, '2020-04-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080361, 102, '2020-04-08', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080362, 102, '2020-04-09', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080363, 102, '2020-04-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080364, 102, '2020-04-11', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080365, 102, '2020-04-12', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080366, 102, '2020-04-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080367, 102, '2020-04-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080368, 102, '2020-04-15', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080369, 102, '2020-04-16', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080370, 102, '2020-04-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084848, 133, '2020-05-29', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084849, 133, '2020-05-30', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084850, 133, '2020-05-31', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084851, 133, '2020-06-01', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080387, 109, '2020-03-09', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080388, 109, '2020-03-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080389, 109, '2020-03-11', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080390, 109, '2020-03-12', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080391, 109, '2020-03-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080392, 109, '2020-03-14', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080393, 109, '2020-03-15', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080394, 109, '2020-03-16', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080395, 109, '2020-03-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080396, 109, '2020-03-18', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080397, 109, '2020-03-19', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080398, 109, '2020-03-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080399, 109, '2020-03-21', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080400, 109, '2020-03-22', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084870, 111, '2020-04-25', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084871, 111, '2020-04-26', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084872, 111, '2020-04-27', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084873, 111, '2020-04-28', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080416, 109, '2020-04-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080417, 109, '2020-04-08', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080418, 109, '2020-04-09', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080419, 109, '2020-04-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080420, 109, '2020-04-11', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080421, 109, '2020-04-12', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080422, 109, '2020-04-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080423, 109, '2020-04-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080424, 109, '2020-04-15', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080425, 109, '2020-04-16', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080426, 109, '2020-04-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080427, 109, '2020-04-18', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080428, 109, '2020-04-19', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080429, 118, '2020-02-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084879, 111, '2020-05-04', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084880, 111, '2020-05-05', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084881, 111, '2020-05-06', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084896, 111, '2020-05-21', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080445, 118, '2020-03-11', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080446, 118, '2020-03-12', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080447, 118, '2020-03-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080448, 118, '2020-03-14', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080449, 118, '2020-03-15', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080450, 118, '2020-03-16', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080451, 118, '2020-03-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080452, 118, '2020-03-18', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080453, 118, '2020-03-19', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080454, 118, '2020-03-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080455, 118, '2020-03-21', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080456, 118, '2020-03-22', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080457, 118, '2020-03-23', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080458, 118, '2020-03-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084901, 111, '2020-05-26', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084902, 111, '2020-05-27', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084903, 111, '2020-05-28', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084904, 111, '2020-05-29', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080474, 118, '2020-04-09', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080475, 118, '2020-04-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080476, 118, '2020-04-11', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080477, 118, '2020-04-12', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080478, 118, '2020-04-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080479, 118, '2020-04-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080480, 118, '2020-04-15', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080481, 118, '2020-04-16', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080482, 118, '2020-04-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080483, 118, '2020-04-18', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080484, 118, '2020-04-19', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080485, 133, '2020-02-24', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080486, 133, '2020-02-25', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080487, 133, '2020-02-26', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084909, 111, '2020-06-03', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084910, 111, '2020-06-04', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084925, 128, '2020-04-24', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084926, 128, '2020-04-25', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080503, 133, '2020-03-13', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080504, 133, '2020-03-14', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080505, 133, '2020-03-15', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080506, 133, '2020-03-16', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080507, 133, '2020-03-17', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080508, 133, '2020-03-18', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080509, 133, '2020-03-19', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080510, 133, '2020-03-20', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080511, 133, '2020-03-21', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080512, 133, '2020-03-22', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080513, 133, '2020-03-23', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080514, 133, '2020-03-24', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080515, 133, '2020-03-25', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080516, 133, '2020-03-26', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084931, 128, '2020-04-30', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084932, 128, '2020-05-01', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084933, 128, '2020-05-02', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084934, 128, '2020-05-03', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080532, 133, '2020-04-11', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080533, 133, '2020-04-12', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080534, 133, '2020-04-13', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080535, 133, '2020-04-14', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080536, 133, '2020-04-15', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080537, 133, '2020-04-16', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080538, 133, '2020-04-17', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080539, 133, '2020-04-18', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080540, 133, '2020-04-19', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080541, 111, '2020-02-24', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080542, 111, '2020-02-25', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080543, 111, '2020-02-26', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080544, 111, '2020-02-27', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080545, 111, '2020-02-28', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084939, 128, '2020-05-08', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084940, 128, '2020-05-09', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084956, 128, '2020-05-25', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084957, 128, '2020-05-26', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086072, 103, '2020-07-16', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080562, 111, '2020-03-16', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080563, 111, '2020-03-17', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080564, 111, '2020-03-18', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080565, 111, '2020-03-19', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080566, 111, '2020-03-20', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080567, 111, '2020-03-21', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080568, 111, '2020-03-22', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080569, 111, '2020-03-23', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080570, 111, '2020-03-24', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080571, 111, '2020-03-25', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080572, 111, '2020-03-26', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080573, 111, '2020-03-27', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080574, 111, '2020-03-28', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080575, 111, '2020-03-29', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084962, 128, '2020-05-31', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084963, 128, '2020-06-01', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084964, 128, '2020-06-02', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084965, 128, '2020-06-03', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080591, 111, '2020-04-14', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080592, 111, '2020-04-15', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080593, 111, '2020-04-16', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080594, 111, '2020-04-17', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080595, 111, '2020-04-18', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080596, 111, '2020-04-19', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080597, 128, '2020-02-24', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080598, 128, '2020-02-25', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080599, 128, '2020-02-26', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080600, 128, '2020-02-27', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080601, 128, '2020-02-28', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080602, 128, '2020-02-29', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080603, 128, '2020-03-01', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080604, 128, '2020-03-02', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084984, 142, '2020-04-27', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084985, 142, '2020-04-28', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084986, 142, '2020-04-29', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085575, 129, '2020-05-28', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086081, 103, '2020-07-25', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080620, 128, '2020-03-18', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080621, 128, '2020-03-19', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080622, 128, '2020-03-20', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080623, 128, '2020-03-21', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080624, 128, '2020-03-22', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080625, 128, '2020-03-23', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080626, 128, '2020-03-24', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080627, 128, '2020-03-25', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080628, 128, '2020-03-26', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080629, 128, '2020-03-27', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080630, 128, '2020-03-28', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080631, 128, '2020-03-29', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080632, 128, '2020-03-30', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080633, 128, '2020-03-31', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084993, 142, '2020-05-06', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084994, 142, '2020-05-07', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084995, 142, '2020-05-08', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084996, 142, '2020-05-09', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086082, 103, '2020-07-26', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080649, 128, '2020-04-16', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080650, 128, '2020-04-17', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080651, 128, '2020-04-18', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080652, 128, '2020-04-19', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080653, 142, '2020-02-24', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080654, 142, '2020-02-25', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080655, 142, '2020-02-26', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080656, 142, '2020-02-27', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080657, 142, '2020-02-28', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080658, 142, '2020-02-29', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080659, 142, '2020-03-01', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080660, 142, '2020-03-02', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080661, 142, '2020-03-03', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080662, 142, '2020-03-04', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085015, 142, '2020-05-28', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085016, 142, '2020-05-29', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085017, 142, '2020-05-30', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085018, 142, '2020-05-31', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080678, 142, '2020-03-20', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080679, 142, '2020-03-21', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080680, 142, '2020-03-22', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080681, 142, '2020-03-23', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080682, 142, '2020-03-24', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080683, 142, '2020-03-25', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080684, 142, '2020-03-26', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080685, 142, '2020-03-27', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080686, 142, '2020-03-28', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080687, 142, '2020-03-29', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080688, 142, '2020-03-30', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080689, 142, '2020-03-31', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080690, 142, '2020-04-01', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080691, 142, '2020-04-02', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085023, 142, '2020-06-05', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085024, 142, '2020-06-06', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085025, 142, '2020-06-07', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085026, 142, '2020-06-08', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085578, 129, '2020-05-31', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080707, 142, '2020-04-18', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080708, 142, '2020-04-19', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080709, 136, '2020-02-24', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080710, 136, '2020-02-25', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080711, 136, '2020-02-26', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080712, 136, '2020-02-27', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080713, 136, '2020-02-28', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080714, 136, '2020-02-29', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080715, 136, '2020-03-01', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080716, 136, '2020-03-02', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080717, 136, '2020-03-03', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080718, 136, '2020-03-04', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080719, 136, '2020-03-05', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080720, 136, '2020-03-06', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085045, 136, '2020-05-02', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085046, 136, '2020-05-03', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085047, 136, '2020-05-04', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085048, 136, '2020-05-05', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080737, 136, '2020-03-23', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080738, 136, '2020-03-24', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080739, 136, '2020-03-25', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080740, 136, '2020-03-26', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080741, 136, '2020-03-27', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080742, 136, '2020-03-28', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080743, 136, '2020-03-29', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080744, 136, '2020-03-30', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080745, 136, '2020-03-31', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080746, 136, '2020-04-01', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080747, 136, '2020-04-02', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080748, 136, '2020-04-03', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080749, 136, '2020-04-04', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080750, 136, '2020-04-05', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085053, 136, '2020-05-10', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085054, 136, '2020-05-11', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085055, 136, '2020-05-12', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085056, 136, '2020-05-13', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086105, 121, '2020-06-23', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086109, 121, '2020-06-27', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080766, 139, '2020-02-25', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080767, 139, '2020-02-26', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080768, 139, '2020-02-27', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080769, 139, '2020-02-28', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080770, 139, '2020-02-29', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080771, 139, '2020-03-01', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080772, 139, '2020-03-02', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080773, 139, '2020-03-03', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080774, 139, '2020-03-04', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080775, 139, '2020-03-05', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080776, 139, '2020-03-06', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080777, 139, '2020-03-07', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080778, 139, '2020-03-08', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080779, 139, '2020-03-09', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085075, 136, '2020-06-01', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085076, 136, '2020-06-02', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085077, 136, '2020-06-03', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085078, 136, '2020-06-04', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080795, 139, '2020-03-25', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080796, 139, '2020-03-26', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080797, 139, '2020-03-27', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080798, 139, '2020-03-28', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080799, 139, '2020-03-29', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080800, 139, '2020-03-30', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080801, 139, '2020-03-31', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080802, 139, '2020-04-01', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080803, 139, '2020-04-02', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080804, 139, '2020-04-03', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080805, 139, '2020-04-04', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080806, 139, '2020-04-05', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080807, 139, '2020-04-06', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080808, 139, '2020-04-07', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085097, 139, '2020-04-28', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085098, 139, '2020-04-29', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085099, 139, '2020-04-30', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085100, 139, '2020-05-01', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080824, 141, '2020-02-27', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080825, 141, '2020-02-28', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080826, 141, '2020-02-29', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080827, 141, '2020-03-01', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080828, 141, '2020-03-02', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080829, 141, '2020-03-03', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080830, 141, '2020-03-04', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080831, 141, '2020-03-05', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080832, 141, '2020-03-06', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080833, 141, '2020-03-07', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080834, 141, '2020-03-08', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080835, 141, '2020-03-09', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080836, 141, '2020-03-10', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080837, 141, '2020-03-11', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085105, 139, '2020-05-06', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085106, 139, '2020-05-07', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085107, 139, '2020-05-08', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085108, 139, '2020-05-09', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080853, 141, '2020-03-27', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080854, 141, '2020-03-28', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080855, 141, '2020-03-29', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080856, 141, '2020-03-30', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080857, 141, '2020-03-31', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080858, 141, '2020-04-01', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080859, 141, '2020-04-02', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080860, 141, '2020-04-03', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080861, 141, '2020-04-04', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080862, 141, '2020-04-05', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080863, 141, '2020-04-06', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080864, 141, '2020-04-07', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080865, 141, '2020-04-08', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080866, 141, '2020-04-09', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085127, 139, '2020-05-28', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085128, 139, '2020-05-29', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085129, 139, '2020-05-30', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085130, 139, '2020-05-31', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085598, 143, '2020-04-25', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1005992, 149, '2020-01-01', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1005993, 149, '2020-01-02', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1005994, 149, '2020-01-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1005995, 149, '2020-01-04', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1005996, 149, '2020-01-05', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1005997, 149, '2020-01-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1005998, 149, '2020-01-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1005999, 149, '2020-01-08', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1006000, 149, '2020-01-09', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1006001, 149, '2020-01-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080883, 122, '2020-03-01', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080884, 122, '2020-03-02', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080885, 122, '2020-03-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080886, 122, '2020-03-04', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080887, 122, '2020-03-05', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080888, 122, '2020-03-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080889, 122, '2020-03-07', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085599, 143, '2020-04-26', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1006002, 149, '2020-01-11', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1006003, 149, '2020-01-12', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1006004, 149, '2020-01-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1006005, 149, '2020-01-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1006006, 149, '2020-01-15', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1006007, 149, '2020-01-16', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1006008, 149, '2020-01-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1006009, 149, '2020-01-18', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1006010, 149, '2020-01-19', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1006011, 149, '2020-01-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1006012, 149, '2020-01-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1006013, 149, '2020-01-22', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1006014, 149, '2020-01-23', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1006015, 149, '2020-01-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1006016, 149, '2020-01-25', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1006017, 149, '2020-01-26', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1006018, 149, '2020-01-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080897, 122, '2020-03-15', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080898, 122, '2020-03-16', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080901, 122, '2020-03-19', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080902, 122, '2020-03-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080903, 122, '2020-03-21', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080904, 122, '2020-03-22', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080905, 122, '2020-03-23', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080906, 122, '2020-03-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080907, 122, '2020-03-25', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080908, 122, '2020-03-26', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080909, 122, '2020-03-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080910, 122, '2020-03-28', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080911, 122, '2020-03-29', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080912, 122, '2020-03-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080913, 122, '2020-03-31', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080914, 122, '2020-04-01', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085140, 139, '2020-06-10', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085155, 141, '2020-04-30', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085156, 141, '2020-05-01', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085157, 141, '2020-05-02', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080930, 122, '2020-04-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080931, 122, '2020-04-18', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080932, 122, '2020-04-19', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080933, 106, '2020-02-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '04:10:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '04:10:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080934, 106, '2020-02-25', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '04:10:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '04:10:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080935, 106, '2020-02-26', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '04:10:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '04:10:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080936, 106, '2020-02-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '04:10:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '04:10:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080937, 106, '2020-02-28', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '04:10:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080938, 106, '2020-02-29', NULL, NULL, NULL, NULL, NULL, '00:00:00', '04:10:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080939, 106, '2020-03-01', NULL, NULL, NULL, NULL, NULL, '00:00:00', '04:10:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080940, 106, '2020-03-02', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '04:10:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '04:10:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080941, 106, '2020-03-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '04:10:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '04:10:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080942, 106, '2020-03-04', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '04:10:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '04:10:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080943, 106, '2020-03-05', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '04:10:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '04:10:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085162, 141, '2020-05-07', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085163, 141, '2020-05-08', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085164, 141, '2020-05-09', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085165, 141, '2020-05-10', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080960, 106, '2020-03-22', NULL, NULL, NULL, NULL, NULL, '00:00:00', '04:10:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080961, 106, '2020-03-23', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '04:10:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '04:10:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080962, 106, '2020-03-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '04:10:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '04:10:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080963, 106, '2020-03-25', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '04:10:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '04:10:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080964, 106, '2020-03-26', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '04:10:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '04:10:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080965, 106, '2020-03-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '04:10:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080966, 106, '2020-03-28', NULL, NULL, NULL, NULL, NULL, '00:00:00', '04:10:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080967, 106, '2020-03-29', NULL, NULL, NULL, NULL, NULL, '00:00:00', '04:10:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080968, 106, '2020-03-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '04:10:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '04:10:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080969, 106, '2020-03-31', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '04:10:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '04:10:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080970, 106, '2020-04-01', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '04:10:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '04:10:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080971, 106, '2020-04-02', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '04:10:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '04:10:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080972, 106, '2020-04-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '04:10:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080973, 106, '2020-04-04', NULL, NULL, NULL, NULL, NULL, '00:00:00', '04:10:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085184, 141, '2020-05-29', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085185, 141, '2020-05-30', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085186, 141, '2020-05-31', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085187, 141, '2020-06-01', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085622, 143, '2020-05-19', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080990, 110, '2020-02-25', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080991, 110, '2020-02-26', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080992, 110, '2020-02-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080993, 110, '2020-02-28', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080994, 110, '2020-02-29', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080995, 110, '2020-03-01', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080996, 110, '2020-03-02', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080997, 110, '2020-03-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080998, 110, '2020-03-04', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080999, 110, '2020-03-05', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081000, 110, '2020-03-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081001, 110, '2020-03-07', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081002, 110, '2020-03-08', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081003, 110, '2020-03-09', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085192, 141, '2020-06-06', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085193, 141, '2020-06-07', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085194, 141, '2020-06-08', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085195, 141, '2020-06-09', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085627, 143, '2020-05-24', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081019, 110, '2020-03-25', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081020, 110, '2020-03-26', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081021, 110, '2020-03-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081022, 110, '2020-03-28', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081023, 110, '2020-03-29', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081024, 110, '2020-03-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081025, 110, '2020-03-31', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081026, 110, '2020-04-01', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081027, 110, '2020-04-02', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081028, 110, '2020-04-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081029, 110, '2020-04-04', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081030, 110, '2020-04-05', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081031, 110, '2020-04-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081032, 110, '2020-04-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085215, 122, '2020-05-04', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085216, 122, '2020-05-05', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085217, 122, '2020-05-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085218, 122, '2020-05-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081048, 145, '2020-02-27', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081049, 145, '2020-02-28', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081050, 145, '2020-02-29', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081051, 145, '2020-03-01', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081052, 145, '2020-03-02', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081053, 145, '2020-03-03', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081054, 145, '2020-03-04', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081055, 145, '2020-03-05', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081056, 145, '2020-03-06', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081057, 145, '2020-03-07', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081058, 145, '2020-03-08', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081059, 145, '2020-03-09', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081060, 145, '2020-03-10', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081061, 145, '2020-03-11', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085223, 122, '2020-05-12', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085224, 122, '2020-05-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085225, 122, '2020-05-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085226, 122, '2020-05-15', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081077, 145, '2020-03-27', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081078, 145, '2020-03-28', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081079, 145, '2020-03-29', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081080, 145, '2020-03-30', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081081, 145, '2020-03-31', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081082, 145, '2020-04-01', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081083, 145, '2020-04-02', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081084, 145, '2020-04-03', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081085, 145, '2020-04-04', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081086, 145, '2020-04-05', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081087, 145, '2020-04-06', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081088, 145, '2020-04-07', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081089, 145, '2020-04-08', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081090, 145, '2020-04-09', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085245, 122, '2020-06-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085246, 122, '2020-06-04', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085247, 122, '2020-06-05', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085248, 122, '2020-06-06', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081106, 148, '2020-02-29', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081107, 148, '2020-03-01', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081108, 148, '2020-03-02', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081109, 148, '2020-03-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081110, 148, '2020-03-04', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081111, 148, '2020-03-05', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081112, 148, '2020-03-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081113, 148, '2020-03-07', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081114, 148, '2020-03-08', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081115, 148, '2020-03-09', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081116, 148, '2020-03-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081117, 148, '2020-03-11', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081118, 148, '2020-03-12', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081119, 148, '2020-03-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085253, 122, '2020-06-11', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085254, 122, '2020-06-12', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085255, 122, '2020-06-13', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085256, 122, '2020-06-14', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081136, 148, '2020-03-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081137, 148, '2020-03-31', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081138, 148, '2020-04-01', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081139, 148, '2020-04-02', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081140, 148, '2020-04-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081141, 148, '2020-04-04', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081142, 148, '2020-04-05', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081143, 148, '2020-04-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081144, 148, '2020-04-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081145, 148, '2020-04-08', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081146, 148, '2020-04-09', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081147, 148, '2020-04-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081148, 148, '2020-04-11', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081149, 148, '2020-04-12', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085275, 106, '2020-05-08', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '04:10:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085276, 106, '2020-05-09', NULL, NULL, NULL, NULL, NULL, '00:00:00', '04:10:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085277, 106, '2020-05-10', NULL, NULL, NULL, NULL, NULL, '00:00:00', '04:10:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085278, 106, '2020-05-11', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '04:10:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '04:10:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081165, 130, '2020-03-03', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081166, 130, '2020-03-04', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081167, 130, '2020-03-05', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081168, 130, '2020-03-06', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081169, 130, '2020-03-07', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081170, 130, '2020-03-08', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081171, 130, '2020-03-09', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081172, 130, '2020-03-10', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081173, 130, '2020-03-11', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081174, 130, '2020-03-12', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081175, 130, '2020-03-13', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081176, 130, '2020-03-14', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081177, 130, '2020-03-15', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081178, 130, '2020-03-16', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085284, 106, '2020-05-17', NULL, NULL, NULL, NULL, NULL, '00:00:00', '04:10:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085285, 106, '2020-05-18', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '04:10:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '04:10:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085286, 106, '2020-05-19', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '04:10:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '04:10:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085301, 106, '2020-06-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '04:10:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '04:10:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081194, 130, '2020-04-01', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081195, 130, '2020-04-02', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081196, 130, '2020-04-03', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081197, 130, '2020-04-04', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081198, 130, '2020-04-05', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081199, 130, '2020-04-06', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081200, 130, '2020-04-07', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081201, 130, '2020-04-08', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081202, 130, '2020-04-09', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081203, 130, '2020-04-10', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081204, 130, '2020-04-11', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081205, 130, '2020-04-12', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081206, 130, '2020-04-13', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081207, 130, '2020-04-14', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085306, 106, '2020-06-08', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '04:10:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '04:10:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085307, 106, '2020-06-09', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '04:10:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '04:10:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085308, 106, '2020-06-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '04:10:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '04:10:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085309, 106, '2020-06-11', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '04:10:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '04:10:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081223, 129, '2020-03-05', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081224, 129, '2020-03-06', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081225, 129, '2020-03-07', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081226, 129, '2020-03-08', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081227, 129, '2020-03-09', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081228, 129, '2020-03-10', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081229, 129, '2020-03-11', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081230, 129, '2020-03-12', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081231, 129, '2020-03-13', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081232, 129, '2020-03-14', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081233, 129, '2020-03-15', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081234, 129, '2020-03-16', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081235, 129, '2020-03-17', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081236, 129, '2020-03-18', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085314, 110, '2020-04-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085315, 110, '2020-04-22', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085330, 110, '2020-05-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085635, 143, '2020-06-01', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081253, 129, '2020-04-04', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081254, 129, '2020-04-05', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081255, 129, '2020-04-06', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081256, 129, '2020-04-07', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081257, 129, '2020-04-08', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081258, 129, '2020-04-09', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081259, 129, '2020-04-10', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081260, 129, '2020-04-11', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081261, 129, '2020-04-12', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081262, 129, '2020-04-13', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081263, 129, '2020-04-14', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081264, 129, '2020-04-15', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081265, 129, '2020-04-16', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081266, 129, '2020-04-17', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081267, 129, '2020-04-18', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085336, 110, '2020-05-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085337, 110, '2020-05-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085338, 110, '2020-05-15', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081282, 143, '2020-03-08', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081283, 143, '2020-03-09', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081284, 143, '2020-03-10', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081285, 143, '2020-03-11', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081286, 143, '2020-03-12', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081287, 143, '2020-03-13', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081288, 143, '2020-03-14', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081289, 143, '2020-03-15', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081290, 143, '2020-03-16', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081291, 143, '2020-03-17', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081292, 143, '2020-03-18', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081293, 143, '2020-03-19', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081294, 143, '2020-03-20', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081295, 143, '2020-03-21', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085343, 110, '2020-05-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085344, 110, '2020-05-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085359, 110, '2020-06-05', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085360, 110, '2020-06-06', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086114, 121, '2020-07-02', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081312, 143, '2020-04-07', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081313, 143, '2020-04-08', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081314, 143, '2020-04-09', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081315, 143, '2020-04-10', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081316, 143, '2020-04-11', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081317, 143, '2020-04-12', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081318, 143, '2020-04-13', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081319, 143, '2020-04-14', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081320, 143, '2020-04-15', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081321, 143, '2020-04-16', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081322, 143, '2020-04-17', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081323, 143, '2020-04-18', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081324, 143, '2020-04-19', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083490, 146, '2020-04-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085365, 110, '2020-06-11', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085366, 110, '2020-06-12', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085367, 110, '2020-06-13', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085368, 110, '2020-06-14', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083506, 146, '2020-05-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083507, 146, '2020-05-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083508, 146, '2020-05-08', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083509, 146, '2020-05-09', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083510, 146, '2020-05-10', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083511, 146, '2020-05-11', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083512, 146, '2020-05-12', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083513, 146, '2020-05-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083514, 146, '2020-05-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083515, 146, '2020-05-15', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083516, 146, '2020-05-16', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083517, 146, '2020-05-17', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083518, 146, '2020-05-18', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083519, 146, '2020-05-19', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085373, 145, '2020-04-24', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085374, 145, '2020-04-25', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085390, 145, '2020-05-11', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085652, 146, '2020-06-18', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086137, 121, '2020-07-25', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083535, 146, '2020-06-04', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083536, 146, '2020-06-05', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083537, 146, '2020-06-06', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083538, 146, '2020-06-07', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083539, 146, '2020-06-08', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083540, 146, '2020-06-09', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083541, 146, '2020-06-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083542, 146, '2020-06-11', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083543, 146, '2020-06-12', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083544, 146, '2020-06-13', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083545, 146, '2020-06-14', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083546, 115, '2020-04-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083547, 115, '2020-04-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083548, 115, '2020-04-22', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085397, 145, '2020-05-18', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085398, 145, '2020-05-19', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085399, 145, '2020-05-20', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083564, 115, '2020-05-08', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083565, 115, '2020-05-09', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083566, 115, '2020-05-10', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083567, 115, '2020-05-11', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083568, 115, '2020-05-12', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083569, 115, '2020-05-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083570, 115, '2020-05-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083571, 115, '2020-05-15', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083572, 115, '2020-05-16', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083573, 115, '2020-05-17', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083574, 115, '2020-05-18', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083575, 115, '2020-05-19', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083576, 115, '2020-05-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083577, 115, '2020-05-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085419, 145, '2020-06-09', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085420, 145, '2020-06-10', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085421, 145, '2020-06-11', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085422, 145, '2020-06-12', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083593, 115, '2020-06-06', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083594, 115, '2020-06-07', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083595, 115, '2020-06-08', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083596, 115, '2020-06-09', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083597, 115, '2020-06-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083598, 115, '2020-06-11', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083599, 115, '2020-06-12', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083600, 115, '2020-06-13', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083601, 115, '2020-06-14', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083602, 114, '2020-04-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083603, 114, '2020-04-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083604, 114, '2020-04-22', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083605, 114, '2020-04-23', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083606, 114, '2020-04-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085427, 148, '2020-04-22', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085428, 148, '2020-04-23', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085429, 148, '2020-04-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085430, 148, '2020-04-25', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1008198, 103, '2019-12-30', '08:00:00', '12:00:00', NULL, NULL, NULL, '04:00:00', '06:40:00', NULL, 5, NULL, '04:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1008199, 103, '2019-12-31', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083623, 114, '2020-05-11', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083624, 114, '2020-05-12', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083625, 114, '2020-05-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083626, 114, '2020-05-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083627, 114, '2020-05-15', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083628, 114, '2020-05-16', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083629, 114, '2020-05-17', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083630, 114, '2020-05-18', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083631, 114, '2020-05-19', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083632, 114, '2020-05-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083633, 114, '2020-05-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083634, 114, '2020-05-22', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083635, 114, '2020-05-23', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085449, 148, '2020-05-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085450, 148, '2020-05-15', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085451, 148, '2020-05-16', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083648, 114, '2020-06-05', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083649, 114, '2020-06-06', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083650, 114, '2020-06-07', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083651, 114, '2020-06-08', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083652, 114, '2020-06-09', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083653, 114, '2020-06-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083654, 114, '2020-06-11', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083655, 114, '2020-06-12', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083656, 114, '2020-06-13', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083657, 114, '2020-06-14', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083658, 112, '2020-04-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083659, 112, '2020-04-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083660, 112, '2020-04-22', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083661, 112, '2020-04-23', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085455, 148, '2020-05-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085456, 148, '2020-05-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085457, 148, '2020-05-22', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085458, 148, '2020-05-23', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086142, 121, '2020-07-30', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083678, 112, '2020-05-10', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083679, 112, '2020-05-11', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083680, 112, '2020-05-12', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083681, 112, '2020-05-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083682, 112, '2020-05-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083683, 112, '2020-05-15', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083684, 112, '2020-05-16', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083685, 112, '2020-05-17', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083686, 112, '2020-05-18', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083687, 112, '2020-05-19', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083688, 112, '2020-05-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083689, 112, '2020-05-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083690, 112, '2020-05-22', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083691, 112, '2020-05-23', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083692, 112, '2020-05-24', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085477, 148, '2020-06-11', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085478, 148, '2020-06-12', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085479, 148, '2020-06-13', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085480, 148, '2020-06-14', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083707, 108, '2020-04-27', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083708, 108, '2020-04-28', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083709, 108, '2020-04-29', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083710, 108, '2020-04-30', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083711, 108, '2020-05-01', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083712, 108, '2020-05-02', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083713, 108, '2020-05-03', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083714, 108, '2020-05-04', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083715, 108, '2020-05-05', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083716, 108, '2020-05-06', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083717, 108, '2020-05-07', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083718, 108, '2020-05-08', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083719, 108, '2020-05-09', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083720, 108, '2020-05-10', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085484, 130, '2020-04-23', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085485, 130, '2020-04-24', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085486, 130, '2020-04-25', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085487, 130, '2020-04-26', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083736, 108, '2020-05-26', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083737, 108, '2020-05-27', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083738, 108, '2020-05-28', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083739, 108, '2020-05-29', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083740, 108, '2020-05-30', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083741, 108, '2020-05-31', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083742, 108, '2020-06-01', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083743, 108, '2020-06-02', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083744, 108, '2020-06-03', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083745, 108, '2020-06-04', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083746, 108, '2020-06-05', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083747, 108, '2020-06-06', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083748, 108, '2020-06-07', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083749, 108, '2020-06-08', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085506, 130, '2020-05-15', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085507, 130, '2020-05-16', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085508, 130, '2020-05-17', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085509, 130, '2020-05-18', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1008144, 103, '2020-01-01', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1008145, 103, '2020-01-02', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1008146, 103, '2020-01-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1008147, 103, '2020-01-04', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1008148, 103, '2020-01-05', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1008149, 103, '2020-01-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1008150, 103, '2020-01-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1008151, 103, '2020-01-08', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1008152, 103, '2020-01-09', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1008153, 103, '2020-01-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1008154, 103, '2020-01-11', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1008155, 103, '2020-01-12', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1008156, 103, '2020-01-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1008157, 103, '2020-01-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1008158, 103, '2020-01-15', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1008159, 103, '2020-01-16', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1008160, 103, '2020-01-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1008161, 103, '2020-01-18', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086164, 117, '2020-07-05', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1008175, 103, '2020-02-01', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1008176, 103, '2020-02-02', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1008177, 103, '2020-02-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1008178, 103, '2020-02-04', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1008179, 103, '2020-02-05', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1008180, 103, '2020-02-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1008181, 103, '2020-02-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1008182, 103, '2020-02-08', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1008183, 103, '2020-02-09', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1008184, 103, '2020-02-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1008185, 103, '2020-02-11', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1008186, 103, '2020-02-12', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1008187, 103, '2020-02-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1008188, 103, '2020-02-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1008189, 103, '2020-02-15', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1008190, 103, '2020-02-16', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1008191, 103, '2020-02-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1008192, 103, '2020-02-18', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083769, 135, '2020-05-03', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083770, 135, '2020-05-04', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083771, 135, '2020-05-05', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083772, 135, '2020-05-06', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083773, 135, '2020-05-07', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083774, 135, '2020-05-08', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083775, 135, '2020-05-09', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083776, 135, '2020-05-10', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083777, 135, '2020-05-11', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083778, 135, '2020-05-12', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083779, 135, '2020-05-13', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083780, 135, '2020-05-14', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083781, 135, '2020-05-15', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083782, 135, '2020-05-16', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085517, 130, '2020-05-26', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085518, 130, '2020-05-27', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085519, 130, '2020-05-28', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085682, 146, '2020-07-18', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083799, 135, '2020-06-02', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083800, 135, '2020-06-03', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083801, 135, '2020-06-04', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083802, 135, '2020-06-05', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083803, 135, '2020-06-06', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083804, 135, '2020-06-07', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083805, 135, '2020-06-08', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083806, 135, '2020-06-09', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083807, 135, '2020-06-10', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083808, 135, '2020-06-11', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083809, 135, '2020-06-12', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083810, 135, '2020-06-13', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083811, 135, '2020-06-14', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083812, 127, '2020-04-20', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085539, 129, '2020-04-22', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085540, 129, '2020-04-23', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085541, 129, '2020-04-24', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085542, 129, '2020-04-25', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083828, 127, '2020-05-06', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083829, 127, '2020-05-07', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083830, 127, '2020-05-08', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083831, 127, '2020-05-09', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083832, 127, '2020-05-10', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083833, 127, '2020-05-11', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083834, 127, '2020-05-12', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083835, 127, '2020-05-13', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083836, 127, '2020-05-14', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083837, 127, '2020-05-15', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083838, 127, '2020-05-16', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083839, 127, '2020-05-17', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083840, 127, '2020-05-18', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083841, 127, '2020-05-19', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085547, 129, '2020-04-30', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085548, 129, '2020-05-01', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085549, 129, '2020-05-02', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085565, 129, '2020-05-18', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083857, 127, '2020-06-04', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083858, 127, '2020-06-05', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083859, 127, '2020-06-06', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083860, 127, '2020-06-07', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083861, 127, '2020-06-08', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083862, 127, '2020-06-09', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083863, 127, '2020-06-10', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083864, 127, '2020-06-11', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083865, 127, '2020-06-12', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083866, 127, '2020-06-13', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083867, 127, '2020-06-14', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083868, 149, '2020-04-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083869, 149, '2020-04-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083870, 149, '2020-04-22', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085570, 129, '2020-05-23', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085571, 129, '2020-05-24', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085572, 129, '2020-05-25', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085573, 129, '2020-05-26', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085689, 146, '2020-07-25', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083886, 149, '2020-05-08', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083887, 149, '2020-05-09', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083888, 149, '2020-05-10', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083889, 149, '2020-05-11', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083890, 149, '2020-05-12', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083891, 149, '2020-05-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083892, 149, '2020-05-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083893, 149, '2020-05-15', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083894, 149, '2020-05-16', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083895, 149, '2020-05-17', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083896, 149, '2020-05-18', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083897, 149, '2020-05-19', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083898, 149, '2020-05-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083899, 149, '2020-05-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085593, 143, '2020-04-20', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085594, 143, '2020-04-21', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085595, 143, '2020-04-22', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085690, 146, '2020-07-26', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083915, 149, '2020-06-06', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083916, 149, '2020-06-07', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083917, 149, '2020-06-08', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083918, 149, '2020-06-09', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083919, 149, '2020-06-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083920, 149, '2020-06-11', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083921, 149, '2020-06-12', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083922, 149, '2020-06-13', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083923, 149, '2020-06-14', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083924, 103, '2020-04-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083925, 103, '2020-04-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083926, 103, '2020-04-22', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083927, 103, '2020-04-23', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083928, 103, '2020-04-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085601, 143, '2020-04-28', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085602, 143, '2020-04-29', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085603, 143, '2020-04-30', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085604, 143, '2020-05-01', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083945, 103, '2020-05-11', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083946, 103, '2020-05-12', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083947, 103, '2020-05-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083948, 103, '2020-05-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083949, 103, '2020-05-15', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083950, 103, '2020-05-16', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083951, 103, '2020-05-17', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083952, 103, '2020-05-18', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083953, 103, '2020-05-19', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083954, 103, '2020-05-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083955, 103, '2020-05-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083956, 103, '2020-05-22', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083957, 103, '2020-05-23', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083958, 103, '2020-05-24', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085623, 143, '2020-05-20', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085624, 143, '2020-05-21', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085625, 143, '2020-05-22', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085626, 143, '2020-05-23', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083974, 103, '2020-06-09', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083975, 103, '2020-06-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083976, 103, '2020-06-11', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083977, 103, '2020-06-12', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083978, 103, '2020-06-13', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083979, 103, '2020-06-14', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083980, 121, '2020-04-20', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083981, 121, '2020-04-21', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083982, 121, '2020-04-22', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083983, 121, '2020-04-23', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083984, 121, '2020-04-24', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083985, 121, '2020-04-25', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083986, 121, '2020-04-26', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083987, 121, '2020-04-27', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085631, 143, '2020-05-28', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085632, 143, '2020-05-29', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085633, 143, '2020-05-30', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085634, 143, '2020-05-31', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085711, 115, '2020-06-21', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084003, 121, '2020-05-13', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084004, 121, '2020-05-14', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084005, 121, '2020-05-15', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084006, 121, '2020-05-16', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084007, 121, '2020-05-17', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084008, 121, '2020-05-18', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084009, 121, '2020-05-19', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084010, 121, '2020-05-20', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084011, 121, '2020-05-21', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084012, 121, '2020-05-22', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084013, 121, '2020-05-23', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084014, 121, '2020-05-24', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084015, 121, '2020-05-25', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084016, 121, '2020-05-26', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085653, 146, '2020-06-19', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085654, 146, '2020-06-20', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085655, 146, '2020-06-21', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085656, 146, '2020-06-22', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084032, 121, '2020-06-11', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084033, 121, '2020-06-12', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084034, 121, '2020-06-13', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084035, 121, '2020-06-14', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084036, 117, '2020-05-01', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084037, 117, '2020-05-02', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084038, 117, '2020-05-03', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084039, 117, '2020-05-04', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084040, 117, '2020-05-05', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084041, 117, '2020-05-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084042, 117, '2020-05-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084043, 117, '2020-05-08', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084044, 117, '2020-05-09', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084045, 117, '2020-05-10', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084046, 117, '2020-05-11', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085661, 146, '2020-06-27', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085662, 146, '2020-06-28', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085663, 146, '2020-06-29', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085664, 146, '2020-06-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084061, 117, '2020-05-26', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084062, 117, '2020-05-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084063, 117, '2020-05-28', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084064, 117, '2020-05-29', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084065, 117, '2020-05-30', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084066, 117, '2020-05-31', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084067, 117, '2020-06-01', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084068, 117, '2020-06-02', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084069, 117, '2020-06-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084070, 117, '2020-06-04', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084071, 117, '2020-06-05', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084072, 117, '2020-06-06', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084073, 117, '2020-06-07', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084074, 117, '2020-06-08', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085683, 146, '2020-07-19', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085684, 146, '2020-07-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085685, 146, '2020-07-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085686, 146, '2020-07-22', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084090, 125, '2020-04-29', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '03:20:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084091, 125, '2020-04-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '03:20:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084092, 125, '2020-05-01', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '03:20:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084093, 125, '2020-05-02', NULL, NULL, NULL, NULL, NULL, '00:00:00', '03:20:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '03:20:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084094, 125, '2020-05-03', NULL, NULL, NULL, NULL, NULL, '00:00:00', '03:20:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084095, 125, '2020-05-04', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '03:20:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084096, 125, '2020-05-05', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '03:20:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084097, 125, '2020-05-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '03:20:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084098, 125, '2020-05-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '03:20:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084099, 125, '2020-05-08', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '03:20:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084100, 125, '2020-05-09', NULL, NULL, NULL, NULL, NULL, '00:00:00', '03:20:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '03:20:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084101, 125, '2020-05-10', NULL, NULL, NULL, NULL, NULL, '00:00:00', '03:20:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084102, 125, '2020-05-11', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '03:20:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084103, 125, '2020-05-12', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '03:20:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085691, 146, '2020-07-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085692, 146, '2020-07-28', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085693, 146, '2020-07-29', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085694, 146, '2020-07-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084119, 125, '2020-05-28', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '03:20:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084120, 125, '2020-05-29', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '03:20:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084121, 125, '2020-05-30', NULL, NULL, NULL, NULL, NULL, '00:00:00', '03:20:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '03:20:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084122, 125, '2020-05-31', NULL, NULL, NULL, NULL, NULL, '00:00:00', '03:20:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084123, 125, '2020-06-01', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '03:20:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084124, 125, '2020-06-02', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '03:20:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084125, 125, '2020-06-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '03:20:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084126, 125, '2020-06-04', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '03:20:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084127, 125, '2020-06-05', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '03:20:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084128, 125, '2020-06-06', NULL, NULL, NULL, NULL, NULL, '00:00:00', '03:20:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '03:20:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084129, 125, '2020-06-07', NULL, NULL, NULL, NULL, NULL, '00:00:00', '03:20:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084130, 125, '2020-06-08', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '03:20:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084131, 125, '2020-06-09', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '03:20:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084132, 125, '2020-06-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '03:20:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085713, 115, '2020-06-23', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085714, 115, '2020-06-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085715, 115, '2020-06-25', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085719, 115, '2020-06-29', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084148, 119, '2020-05-01', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084149, 119, '2020-05-02', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084150, 119, '2020-05-03', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084151, 119, '2020-05-04', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084152, 119, '2020-05-05', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084153, 119, '2020-05-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084154, 119, '2020-05-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084155, 119, '2020-05-08', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084156, 119, '2020-05-09', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084157, 119, '2020-05-10', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084158, 119, '2020-05-11', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084159, 119, '2020-05-12', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084160, 119, '2020-05-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084161, 119, '2020-05-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085720, 115, '2020-06-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085721, 115, '2020-07-01', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085722, 115, '2020-07-02', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085723, 115, '2020-07-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084178, 119, '2020-05-31', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084179, 119, '2020-06-01', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084180, 119, '2020-06-02', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084181, 119, '2020-06-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084182, 119, '2020-06-04', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084183, 119, '2020-06-05', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084184, 119, '2020-06-06', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084185, 119, '2020-06-07', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084186, 119, '2020-06-08', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084187, 119, '2020-06-09', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084188, 119, '2020-06-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084189, 119, '2020-06-11', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084190, 119, '2020-06-12', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084191, 119, '2020-06-13', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084192, 119, '2020-06-14', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085740, 115, '2020-07-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085741, 115, '2020-07-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085742, 115, '2020-07-22', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086165, 117, '2020-07-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084207, 113, '2020-05-04', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084208, 113, '2020-05-05', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084209, 113, '2020-05-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084210, 113, '2020-05-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084211, 113, '2020-05-08', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084212, 113, '2020-05-09', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084213, 113, '2020-05-10', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084214, 113, '2020-05-11', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084215, 113, '2020-05-12', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084216, 113, '2020-05-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084217, 113, '2020-05-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084218, 113, '2020-05-15', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084219, 113, '2020-05-16', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084220, 113, '2020-05-17', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085743, 115, '2020-07-23', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085744, 115, '2020-07-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085745, 115, '2020-07-25', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085746, 115, '2020-07-26', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084236, 113, '2020-06-02', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084237, 113, '2020-06-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084238, 113, '2020-06-04', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084239, 113, '2020-06-05', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084240, 113, '2020-06-06', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084241, 113, '2020-06-07', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084242, 113, '2020-06-08', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084243, 113, '2020-06-09', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084244, 113, '2020-06-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084245, 113, '2020-06-11', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084246, 113, '2020-06-12', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084247, 113, '2020-06-13', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084248, 113, '2020-06-14', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084249, 147, '2020-04-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085748, 115, '2020-07-28', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085749, 115, '2020-07-29', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085750, 115, '2020-07-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085751, 115, '2020-07-31', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084265, 147, '2020-05-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084266, 147, '2020-05-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084267, 147, '2020-05-08', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084268, 147, '2020-05-09', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084269, 147, '2020-05-10', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084270, 147, '2020-05-11', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084271, 147, '2020-05-12', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084272, 147, '2020-05-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084273, 147, '2020-05-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084274, 147, '2020-05-15', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084275, 147, '2020-05-16', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084276, 147, '2020-05-17', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084277, 147, '2020-05-18', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084278, 147, '2020-05-19', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085752, 115, '2020-08-01', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085753, 115, '2020-08-02', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085768, 114, '2020-06-22', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085769, 114, '2020-06-23', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084294, 147, '2020-06-04', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084295, 147, '2020-06-05', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084296, 147, '2020-06-06', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084297, 147, '2020-06-07', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084298, 147, '2020-06-08', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084299, 147, '2020-06-09', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084300, 147, '2020-06-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084301, 147, '2020-06-11', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084302, 147, '2020-06-12', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084303, 147, '2020-06-13', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084304, 147, '2020-06-14', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084305, 131, '2020-04-20', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '04:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '04:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084306, 131, '2020-04-21', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '04:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '04:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084307, 131, '2020-04-22', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '04:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '04:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085771, 114, '2020-06-25', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085772, 114, '2020-06-26', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085773, 114, '2020-06-27', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085774, 114, '2020-06-28', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084323, 131, '2020-05-08', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '04:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '04:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084324, 131, '2020-05-09', NULL, NULL, NULL, NULL, NULL, '00:00:00', '04:00:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084325, 131, '2020-05-10', NULL, NULL, NULL, NULL, NULL, '00:00:00', '04:00:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084326, 131, '2020-05-11', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '04:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '04:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084327, 131, '2020-05-12', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '04:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '04:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084328, 131, '2020-05-13', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '04:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '04:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084329, 131, '2020-05-14', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '04:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '04:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084330, 131, '2020-05-15', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '04:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '04:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084331, 131, '2020-05-16', NULL, NULL, NULL, NULL, NULL, '00:00:00', '04:00:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084332, 131, '2020-05-17', NULL, NULL, NULL, NULL, NULL, '00:00:00', '04:00:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084333, 131, '2020-05-18', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '04:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '04:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084334, 131, '2020-05-19', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '04:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '04:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084335, 131, '2020-05-20', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '04:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '04:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084336, 131, '2020-05-21', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '04:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '04:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085776, 114, '2020-06-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085777, 114, '2020-07-01', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085778, 114, '2020-07-02', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085779, 114, '2020-07-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084353, 131, '2020-06-07', NULL, NULL, NULL, NULL, NULL, '00:00:00', '04:00:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084354, 131, '2020-06-08', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '04:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '04:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084355, 131, '2020-06-09', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '04:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '04:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084356, 131, '2020-06-10', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '04:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '04:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084357, 131, '2020-06-11', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '04:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '04:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084358, 131, '2020-06-12', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '04:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '04:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084359, 131, '2020-06-13', NULL, NULL, NULL, NULL, NULL, '00:00:00', '04:00:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084360, 131, '2020-06-14', NULL, NULL, NULL, NULL, NULL, '00:00:00', '04:00:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084361, 104, '2020-04-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084362, 104, '2020-04-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084363, 104, '2020-04-22', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084364, 104, '2020-04-23', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084365, 104, '2020-04-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084366, 104, '2020-04-25', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:00:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084367, 104, '2020-04-26', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:00:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085781, 114, '2020-07-05', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085782, 114, '2020-07-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085797, 114, '2020-07-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085798, 114, '2020-07-22', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084382, 104, '2020-05-11', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084383, 104, '2020-05-12', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084384, 104, '2020-05-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084385, 104, '2020-05-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084386, 104, '2020-05-15', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084387, 104, '2020-05-16', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:00:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084388, 104, '2020-05-17', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:00:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084389, 104, '2020-05-18', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084390, 104, '2020-05-19', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084391, 104, '2020-05-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084392, 104, '2020-05-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084393, 104, '2020-05-22', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084394, 104, '2020-05-23', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:00:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084395, 104, '2020-05-24', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:00:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085799, 114, '2020-07-23', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085800, 114, '2020-07-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085801, 114, '2020-07-25', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085802, 114, '2020-07-26', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084411, 104, '2020-06-09', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084412, 104, '2020-06-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084413, 104, '2020-06-11', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084414, 104, '2020-06-12', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084415, 104, '2020-06-13', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:00:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084416, 104, '2020-06-14', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:00:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084417, 151, '2020-04-20', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084418, 151, '2020-04-21', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084419, 151, '2020-04-22', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084420, 151, '2020-04-23', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084421, 151, '2020-04-24', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084422, 151, '2020-04-25', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084423, 151, '2020-04-26', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084424, 151, '2020-04-27', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085804, 114, '2020-07-28', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085805, 114, '2020-07-29', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085806, 114, '2020-07-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085807, 114, '2020-07-31', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1010296, 121, '2020-01-01', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1010297, 121, '2020-01-02', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1010298, 121, '2020-01-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084440, 151, '2020-05-13', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084441, 151, '2020-05-14', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084442, 151, '2020-05-15', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084443, 151, '2020-05-16', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084444, 151, '2020-05-17', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084445, 151, '2020-05-18', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084446, 151, '2020-05-19', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084447, 151, '2020-05-20', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084448, 151, '2020-05-21', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084449, 151, '2020-05-22', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084450, 151, '2020-05-23', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084451, 151, '2020-05-24', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085809, 114, '2020-08-02', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085810, 114, '2020-08-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085811, 114, '2020-08-04', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1010299, 121, '2020-01-04', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1010300, 121, '2020-01-05', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1010301, 121, '2020-01-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1010302, 121, '2020-01-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1010303, 121, '2020-01-08', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1010304, 121, '2020-01-09', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1010305, 121, '2020-01-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1010306, 121, '2020-01-11', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1010307, 121, '2020-01-12', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1010308, 121, '2020-01-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1010309, 121, '2020-01-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1010310, 121, '2020-01-15', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1010311, 121, '2020-01-16', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084465, 151, '2020-06-07', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084466, 151, '2020-06-08', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084467, 151, '2020-06-09', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084468, 151, '2020-06-10', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084469, 151, '2020-06-11', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086188, 117, '2020-07-29', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084474, 138, '2020-04-21', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084475, 138, '2020-04-22', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084476, 138, '2020-04-23', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084477, 138, '2020-04-24', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084478, 138, '2020-04-25', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084479, 138, '2020-04-26', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084480, 138, '2020-04-27', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084481, 138, '2020-04-28', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084482, 138, '2020-04-29', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084483, 138, '2020-04-30', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084484, 138, '2020-05-01', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084485, 138, '2020-05-02', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084486, 138, '2020-05-03', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084487, 138, '2020-05-04', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085827, 108, '2020-06-25', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085828, 108, '2020-06-26', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085829, 108, '2020-06-27', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085830, 108, '2020-06-28', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084503, 138, '2020-05-20', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084504, 138, '2020-05-21', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084505, 138, '2020-05-22', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084506, 138, '2020-05-23', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084507, 138, '2020-05-24', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084508, 138, '2020-05-25', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084509, 138, '2020-05-26', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084510, 138, '2020-05-27', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084511, 138, '2020-05-28', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084512, 138, '2020-05-29', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084513, 138, '2020-05-30', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084514, 138, '2020-05-31', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084515, 138, '2020-06-01', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084516, 138, '2020-06-02', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085832, 108, '2020-06-30', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085833, 108, '2020-07-01', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085834, 108, '2020-07-02', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085835, 108, '2020-07-03', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084532, 105, '2020-04-23', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084533, 105, '2020-04-24', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084534, 105, '2020-04-25', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084535, 105, '2020-04-26', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084536, 105, '2020-04-27', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084537, 105, '2020-04-28', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084538, 105, '2020-04-29', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084539, 105, '2020-04-30', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084540, 105, '2020-05-01', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084541, 105, '2020-05-02', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084542, 105, '2020-05-03', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084543, 105, '2020-05-04', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084544, 105, '2020-05-05', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084545, 105, '2020-05-06', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085837, 108, '2020-07-05', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085838, 108, '2020-07-06', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085839, 108, '2020-07-07', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085840, 108, '2020-07-08', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084561, 105, '2020-05-22', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084562, 105, '2020-05-23', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084563, 105, '2020-05-24', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084564, 105, '2020-05-25', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084565, 105, '2020-05-26', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084566, 105, '2020-05-27', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084567, 105, '2020-05-28', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084568, 105, '2020-05-29', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084569, 105, '2020-05-30', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084570, 105, '2020-05-31', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084571, 105, '2020-06-01', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084572, 105, '2020-06-02', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084573, 105, '2020-06-03', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084574, 105, '2020-06-04', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085856, 108, '2020-07-24', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085857, 108, '2020-07-25', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085858, 108, '2020-07-26', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085859, 108, '2020-07-27', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084591, 134, '2020-04-26', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084592, 134, '2020-04-27', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084593, 134, '2020-04-28', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084594, 134, '2020-04-29', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084595, 134, '2020-04-30', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084596, 134, '2020-05-01', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084597, 134, '2020-05-02', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084598, 134, '2020-05-03', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084599, 134, '2020-05-04', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084600, 134, '2020-05-05', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084601, 134, '2020-05-06', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084602, 134, '2020-05-07', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084603, 134, '2020-05-08', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084604, 134, '2020-05-09', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084605, 134, '2020-05-10', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085861, 108, '2020-07-29', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085862, 108, '2020-07-30', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085863, 108, '2020-07-31', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084620, 134, '2020-05-25', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084621, 134, '2020-05-26', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084622, 134, '2020-05-27', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084623, 134, '2020-05-28', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084624, 134, '2020-05-29', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084625, 134, '2020-05-30', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084626, 134, '2020-05-31', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084627, 134, '2020-06-01', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084628, 134, '2020-06-02', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084629, 134, '2020-06-03', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084630, 134, '2020-06-04', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084631, 134, '2020-06-05', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084632, 134, '2020-06-06', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084633, 134, '2020-06-07', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085865, 108, '2020-08-02', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085866, 108, '2020-08-03', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085867, 108, '2020-08-04', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085868, 108, '2020-08-05', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086193, 117, '2020-08-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084649, 102, '2020-04-28', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084650, 102, '2020-04-29', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084651, 102, '2020-04-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084652, 102, '2020-05-01', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084653, 102, '2020-05-02', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084654, 102, '2020-05-03', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084655, 102, '2020-05-04', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084656, 102, '2020-05-05', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084657, 102, '2020-05-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084658, 102, '2020-05-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084659, 102, '2020-05-08', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084660, 102, '2020-05-09', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084661, 102, '2020-05-10', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084662, 102, '2020-05-11', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085869, 108, '2020-08-06', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085875, 135, '2020-06-17', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085876, 135, '2020-06-18', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085877, 135, '2020-06-19', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084678, 102, '2020-05-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084679, 102, '2020-05-28', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084680, 102, '2020-05-29', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084681, 102, '2020-05-30', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084682, 102, '2020-05-31', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084683, 102, '2020-06-01', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084684, 102, '2020-06-02', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084685, 102, '2020-06-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084686, 102, '2020-06-04', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084687, 102, '2020-06-05', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084688, 102, '2020-06-06', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084689, 102, '2020-06-07', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084690, 102, '2020-06-08', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084691, 102, '2020-06-09', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085879, 135, '2020-06-21', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085880, 135, '2020-06-22', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085881, 135, '2020-06-23', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085896, 135, '2020-07-08', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086198, 117, '2020-08-08', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084707, 109, '2020-04-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084708, 109, '2020-05-01', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084709, 109, '2020-05-02', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084710, 109, '2020-05-03', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084711, 109, '2020-05-04', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084712, 109, '2020-05-05', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084713, 109, '2020-05-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084714, 109, '2020-05-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084715, 109, '2020-05-08', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084716, 109, '2020-05-09', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084717, 109, '2020-05-10', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084718, 109, '2020-05-11', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084719, 109, '2020-05-12', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084720, 109, '2020-05-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085898, 135, '2020-07-10', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085899, 135, '2020-07-11', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085900, 135, '2020-07-12', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085901, 135, '2020-07-13', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086229, 125, '2020-07-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '03:20:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086248, 125, '2020-08-02', NULL, NULL, NULL, NULL, NULL, '00:00:00', '03:20:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084736, 109, '2020-05-29', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084737, 109, '2020-05-30', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084738, 109, '2020-05-31', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084739, 109, '2020-06-01', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084740, 109, '2020-06-02', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084741, 109, '2020-06-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084742, 109, '2020-06-04', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084743, 109, '2020-06-05', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084744, 109, '2020-06-06', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084745, 109, '2020-06-07', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084746, 109, '2020-06-08', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084747, 109, '2020-06-09', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084748, 109, '2020-06-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084749, 109, '2020-06-11', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085902, 135, '2020-07-14', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085903, 135, '2020-07-15', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085904, 135, '2020-07-16', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085905, 135, '2020-07-17', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084766, 118, '2020-05-03', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084767, 118, '2020-05-04', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084768, 118, '2020-05-05', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084769, 118, '2020-05-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084770, 118, '2020-05-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084771, 118, '2020-05-08', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084772, 118, '2020-05-09', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084773, 118, '2020-05-10', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084774, 118, '2020-05-11', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084775, 118, '2020-05-12', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084776, 118, '2020-05-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084777, 118, '2020-05-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084778, 118, '2020-05-15', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084779, 118, '2020-05-16', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084780, 118, '2020-05-17', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085907, 135, '2020-07-19', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085908, 135, '2020-07-20', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085909, 135, '2020-07-21', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084795, 118, '2020-06-01', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084796, 118, '2020-06-02', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084797, 118, '2020-06-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084798, 118, '2020-06-04', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084799, 118, '2020-06-05', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084800, 118, '2020-06-06', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084801, 118, '2020-06-07', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084802, 118, '2020-06-08', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084803, 118, '2020-06-09', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084804, 118, '2020-06-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084805, 118, '2020-06-11', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084806, 118, '2020-06-12', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084807, 118, '2020-06-13', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084808, 118, '2020-06-14', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085925, 135, '2020-08-06', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085926, 135, '2020-08-07', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085927, 135, '2020-08-08', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085928, 135, '2020-08-09', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086258, 119, '2020-06-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086277, 119, '2020-07-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084824, 133, '2020-05-05', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084825, 133, '2020-05-06', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084826, 133, '2020-05-07', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084827, 133, '2020-05-08', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084828, 133, '2020-05-09', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084829, 133, '2020-05-10', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084830, 133, '2020-05-11', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084831, 133, '2020-05-12', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084832, 133, '2020-05-13', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084833, 133, '2020-05-14', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084834, 133, '2020-05-15', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084835, 133, '2020-05-16', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084836, 133, '2020-05-17', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084837, 133, '2020-05-18', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085929, 127, '2020-06-15', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085930, 127, '2020-06-16', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085931, 127, '2020-06-17', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085932, 127, '2020-06-18', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084853, 133, '2020-06-03', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084854, 133, '2020-06-04', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084855, 133, '2020-06-05', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084856, 133, '2020-06-06', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084857, 133, '2020-06-07', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084858, 133, '2020-06-08', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084859, 133, '2020-06-09', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084860, 133, '2020-06-10', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084861, 133, '2020-06-11', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084862, 133, '2020-06-12', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084863, 133, '2020-06-13', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084864, 133, '2020-06-14', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084865, 111, '2020-04-20', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084866, 111, '2020-04-21', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085933, 127, '2020-06-19', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085934, 127, '2020-06-20', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085935, 127, '2020-06-21', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085936, 127, '2020-06-22', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084882, 111, '2020-05-07', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084883, 111, '2020-05-08', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084884, 111, '2020-05-09', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084885, 111, '2020-05-10', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084886, 111, '2020-05-11', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084887, 111, '2020-05-12', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084888, 111, '2020-05-13', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084889, 111, '2020-05-14', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084890, 111, '2020-05-15', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084891, 111, '2020-05-16', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084892, 111, '2020-05-17', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084893, 111, '2020-05-18', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084894, 111, '2020-05-19', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084895, 111, '2020-05-20', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085938, 127, '2020-06-24', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085939, 127, '2020-06-25', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085954, 127, '2020-07-10', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085955, 127, '2020-07-11', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084911, 111, '2020-06-05', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084912, 111, '2020-06-06', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084913, 111, '2020-06-07', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084914, 111, '2020-06-08', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084915, 111, '2020-06-09', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084916, 111, '2020-06-10', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084917, 111, '2020-06-11', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084918, 111, '2020-06-12', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084919, 111, '2020-06-13', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084920, 111, '2020-06-14', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084921, 128, '2020-04-20', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084922, 128, '2020-04-21', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084923, 128, '2020-04-22', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084924, 128, '2020-04-23', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085957, 127, '2020-07-13', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085958, 127, '2020-07-14', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085959, 127, '2020-07-15', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084941, 128, '2020-05-10', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084942, 128, '2020-05-11', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084943, 128, '2020-05-12', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084944, 128, '2020-05-13', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084945, 128, '2020-05-14', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084946, 128, '2020-05-15', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084947, 128, '2020-05-16', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084948, 128, '2020-05-17', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084949, 128, '2020-05-18', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084950, 128, '2020-05-19', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084951, 128, '2020-05-20', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084952, 128, '2020-05-21', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084953, 128, '2020-05-22', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084954, 128, '2020-05-23', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084955, 128, '2020-05-24', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085962, 127, '2020-07-18', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085963, 127, '2020-07-19', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085964, 127, '2020-07-20', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085965, 127, '2020-07-21', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084970, 128, '2020-06-08', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084971, 128, '2020-06-09', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084972, 128, '2020-06-10', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084973, 128, '2020-06-11', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084974, 128, '2020-06-12', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084975, 128, '2020-06-13', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084976, 128, '2020-06-14', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084977, 142, '2020-04-20', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084978, 142, '2020-04-21', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084979, 142, '2020-04-22', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084980, 142, '2020-04-23', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084981, 142, '2020-04-24', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084982, 142, '2020-04-25', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084983, 142, '2020-04-26', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085966, 127, '2020-07-22', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085967, 127, '2020-07-23', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085968, 127, '2020-07-24', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085983, 127, '2020-08-08', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084999, 142, '2020-05-12', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085000, 142, '2020-05-13', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085001, 142, '2020-05-14', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085002, 142, '2020-05-15', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085003, 142, '2020-05-16', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085004, 142, '2020-05-17', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085005, 142, '2020-05-18', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085006, 142, '2020-05-19', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085007, 142, '2020-05-20', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085008, 142, '2020-05-21', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085009, 142, '2020-05-22', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085010, 142, '2020-05-23', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085011, 142, '2020-05-24', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085012, 142, '2020-05-25', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085985, 149, '2020-06-15', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085986, 149, '2020-06-16', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085987, 149, '2020-06-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085028, 142, '2020-06-10', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085029, 142, '2020-06-11', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085030, 142, '2020-06-12', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085031, 142, '2020-06-13', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085032, 142, '2020-06-14', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085033, 136, '2020-04-20', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085034, 136, '2020-04-21', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085035, 136, '2020-04-22', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085036, 136, '2020-04-23', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085037, 136, '2020-04-24', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085038, 136, '2020-04-25', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085039, 136, '2020-04-26', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085040, 136, '2020-04-27', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085041, 136, '2020-04-28', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085990, 149, '2020-06-20', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085991, 149, '2020-06-21', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085992, 149, '2020-06-22', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085993, 149, '2020-06-23', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1012502, 125, '2019-12-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '03:20:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1012503, 125, '2019-12-31', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '03:20:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085057, 136, '2020-05-14', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085058, 136, '2020-05-15', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085059, 136, '2020-05-16', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085060, 136, '2020-05-17', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085061, 136, '2020-05-18', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085062, 136, '2020-05-19', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085063, 136, '2020-05-20', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085064, 136, '2020-05-21', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085065, 136, '2020-05-22', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085066, 136, '2020-05-23', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085067, 136, '2020-05-24', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085068, 136, '2020-05-25', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085069, 136, '2020-05-26', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085995, 149, '2020-06-25', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085996, 149, '2020-06-26', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085997, 149, '2020-06-27', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085083, 136, '2020-06-09', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085084, 136, '2020-06-10', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085085, 136, '2020-06-11', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085086, 136, '2020-06-12', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085087, 136, '2020-06-13', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085088, 136, '2020-06-14', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085089, 139, '2020-04-20', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085090, 139, '2020-04-21', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085091, 139, '2020-04-22', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085092, 139, '2020-04-23', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085093, 139, '2020-04-24', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085094, 139, '2020-04-25', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085095, 139, '2020-04-26', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085096, 139, '2020-04-27', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086013, 149, '2020-07-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086014, 149, '2020-07-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086015, 149, '2020-07-15', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086016, 149, '2020-07-16', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085112, 139, '2020-05-13', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085113, 139, '2020-05-14', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085114, 139, '2020-05-15', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085115, 139, '2020-05-16', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085116, 139, '2020-05-17', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085117, 139, '2020-05-18', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085118, 139, '2020-05-19', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085119, 139, '2020-05-20', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085120, 139, '2020-05-21', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085121, 139, '2020-05-22', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085122, 139, '2020-05-23', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085123, 139, '2020-05-24', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085124, 139, '2020-05-25', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085125, 139, '2020-05-26', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086017, 149, '2020-07-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086018, 149, '2020-07-18', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086019, 149, '2020-07-19', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086020, 149, '2020-07-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085141, 139, '2020-06-11', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085142, 139, '2020-06-12', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085143, 139, '2020-06-13', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085144, 139, '2020-06-14', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085145, 141, '2020-04-20', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085146, 141, '2020-04-21', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085147, 141, '2020-04-22', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085148, 141, '2020-04-23', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085149, 141, '2020-04-24', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085150, 141, '2020-04-25', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085151, 141, '2020-04-26', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085152, 141, '2020-04-27', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085153, 141, '2020-04-28', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085154, 141, '2020-04-29', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086022, 149, '2020-07-22', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086023, 149, '2020-07-23', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086024, 149, '2020-07-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086025, 149, '2020-07-25', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1012448, 125, '2020-01-01', '08:00:00', '12:00:00', NULL, NULL, NULL, '00:00:00', '03:20:00', NULL, NULL, NULL, '04:00:00', '00:00:00', NULL, 27, '04:00:00', NULL, '00:00:00', '03:20:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1012449, 125, '2020-01-02', NULL, NULL, NULL, NULL, NULL, '00:00:00', '03:20:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '03:20:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1012450, 125, '2020-01-03', NULL, NULL, NULL, NULL, NULL, '00:00:00', '03:20:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '03:20:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1012451, 125, '2020-01-04', NULL, NULL, NULL, NULL, NULL, '00:00:00', '03:20:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '03:20:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1012452, 125, '2020-01-05', NULL, NULL, NULL, NULL, NULL, '00:00:00', '03:20:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1012453, 125, '2020-01-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '03:20:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1012454, 125, '2020-01-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '03:20:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1012455, 125, '2020-01-08', '08:00:00', '12:00:00', NULL, NULL, NULL, '00:00:00', '03:20:00', NULL, NULL, NULL, '04:00:00', '00:00:00', NULL, 27, '04:00:00', NULL, '00:00:00', '03:20:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1012456, 125, '2020-01-09', NULL, NULL, NULL, NULL, NULL, '00:00:00', '03:20:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '03:20:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1012457, 125, '2020-01-10', NULL, NULL, NULL, NULL, NULL, '00:00:00', '03:20:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '03:20:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1012458, 125, '2020-01-11', NULL, NULL, NULL, NULL, NULL, '00:00:00', '03:20:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '03:20:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1012459, 125, '2020-01-12', NULL, NULL, NULL, NULL, NULL, '00:00:00', '03:20:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1012460, 125, '2020-01-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '03:20:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1012461, 125, '2020-01-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '03:20:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1012462, 125, '2020-01-15', '08:00:00', '12:00:00', NULL, NULL, NULL, '00:00:00', '03:20:00', NULL, NULL, NULL, '04:00:00', '00:00:00', NULL, 27, '04:00:00', NULL, '00:00:00', '03:20:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1012463, 125, '2020-01-16', NULL, NULL, NULL, NULL, NULL, '00:00:00', '03:20:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '03:20:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1012464, 125, '2020-01-17', NULL, NULL, NULL, NULL, NULL, '00:00:00', '03:20:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '03:20:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1012465, 125, '2020-01-18', NULL, NULL, NULL, NULL, NULL, '00:00:00', '03:20:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '03:20:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1012466, 125, '2020-01-19', NULL, NULL, NULL, NULL, NULL, '00:00:00', '03:20:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086027, 149, '2020-07-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1012479, 125, '2020-02-01', NULL, NULL, NULL, NULL, NULL, '00:00:00', '03:20:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '03:20:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1012480, 125, '2020-02-02', NULL, NULL, NULL, NULL, NULL, '00:00:00', '03:20:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1012481, 125, '2020-02-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '03:20:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1012482, 125, '2020-02-04', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '03:20:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1012483, 125, '2020-02-05', '08:00:00', '12:00:00', NULL, NULL, NULL, '00:00:00', '03:20:00', NULL, NULL, NULL, '04:00:00', '00:00:00', NULL, 27, '04:00:00', NULL, '00:00:00', '03:20:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1012484, 125, '2020-02-06', NULL, NULL, NULL, NULL, NULL, '00:00:00', '03:20:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '03:20:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1012485, 125, '2020-02-07', NULL, NULL, NULL, NULL, NULL, '00:00:00', '03:20:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '03:20:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1012486, 125, '2020-02-08', NULL, NULL, NULL, NULL, NULL, '00:00:00', '03:20:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '03:20:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1012487, 125, '2020-02-09', NULL, NULL, NULL, NULL, NULL, '00:00:00', '03:20:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1012488, 125, '2020-02-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '03:20:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1012489, 125, '2020-02-11', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '03:20:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1012490, 125, '2020-02-12', '08:00:00', '12:00:00', NULL, NULL, NULL, '00:00:00', '03:20:00', NULL, NULL, NULL, '04:00:00', '00:00:00', NULL, 27, '04:00:00', NULL, '00:00:00', '03:20:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1012491, 125, '2020-02-13', NULL, NULL, NULL, NULL, NULL, '00:00:00', '03:20:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '03:20:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1012492, 125, '2020-02-14', NULL, NULL, NULL, NULL, NULL, '00:00:00', '03:20:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '03:20:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1012493, 125, '2020-02-15', NULL, NULL, NULL, NULL, NULL, '00:00:00', '03:20:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '03:20:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1012494, 125, '2020-02-16', NULL, NULL, NULL, NULL, NULL, '00:00:00', '03:20:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1012495, 125, '2020-02-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '03:20:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1012496, 125, '2020-02-18', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '03:20:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086043, 103, '2020-06-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086044, 103, '2020-06-18', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085170, 141, '2020-05-15', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085171, 141, '2020-05-16', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085172, 141, '2020-05-17', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085173, 141, '2020-05-18', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085174, 141, '2020-05-19', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085175, 141, '2020-05-20', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085176, 141, '2020-05-21', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085177, 141, '2020-05-22', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085178, 141, '2020-05-23', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085179, 141, '2020-05-24', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085180, 141, '2020-05-25', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085181, 141, '2020-05-26', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085182, 141, '2020-05-27', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085183, 141, '2020-05-28', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086045, 103, '2020-06-19', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086046, 103, '2020-06-20', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086047, 103, '2020-06-21', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086048, 103, '2020-06-22', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085200, 141, '2020-06-14', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085201, 122, '2020-04-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085202, 122, '2020-04-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085203, 122, '2020-04-22', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085204, 122, '2020-04-23', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085205, 122, '2020-04-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085206, 122, '2020-04-25', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085207, 122, '2020-04-26', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085208, 122, '2020-04-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085209, 122, '2020-04-28', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085210, 122, '2020-04-29', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085211, 122, '2020-04-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085212, 122, '2020-05-01', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085213, 122, '2020-05-02', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085214, 122, '2020-05-03', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086050, 103, '2020-06-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086051, 103, '2020-06-25', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086052, 103, '2020-06-26', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085229, 122, '2020-05-18', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085230, 122, '2020-05-19', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085231, 122, '2020-05-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085232, 122, '2020-05-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085233, 122, '2020-05-22', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085234, 122, '2020-05-23', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085235, 122, '2020-05-24', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085236, 122, '2020-05-25', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085237, 122, '2020-05-26', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085238, 122, '2020-05-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085239, 122, '2020-05-28', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085240, 122, '2020-05-29', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085241, 122, '2020-05-30', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085242, 122, '2020-05-31', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086054, 103, '2020-06-28', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086055, 103, '2020-06-29', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086056, 103, '2020-06-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086071, 103, '2020-07-15', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085258, 106, '2020-04-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '04:10:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '04:10:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085259, 106, '2020-04-22', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '04:10:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '04:10:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085260, 106, '2020-04-23', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '04:10:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '04:10:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085261, 106, '2020-04-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '04:10:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085262, 106, '2020-04-25', NULL, NULL, NULL, NULL, NULL, '00:00:00', '04:10:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085263, 106, '2020-04-26', NULL, NULL, NULL, NULL, NULL, '00:00:00', '04:10:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085264, 106, '2020-04-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '04:10:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '04:10:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085265, 106, '2020-04-28', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '04:10:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '04:10:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085266, 106, '2020-04-29', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '04:10:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '04:10:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085267, 106, '2020-04-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '04:10:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '04:10:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085268, 106, '2020-05-01', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '04:10:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085269, 106, '2020-05-02', NULL, NULL, NULL, NULL, NULL, '00:00:00', '04:10:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085270, 106, '2020-05-03', NULL, NULL, NULL, NULL, NULL, '00:00:00', '04:10:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085271, 106, '2020-05-04', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '04:10:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '04:10:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086073, 103, '2020-07-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086074, 103, '2020-07-18', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086075, 103, '2020-07-19', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086076, 103, '2020-07-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086286, 119, '2020-07-15', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086305, 119, '2020-08-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086314, 113, '2020-06-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085287, 106, '2020-05-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '04:10:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '04:10:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085288, 106, '2020-05-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '04:10:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '04:10:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085289, 106, '2020-05-22', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '04:10:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085290, 106, '2020-05-23', NULL, NULL, NULL, NULL, NULL, '00:00:00', '04:10:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085291, 106, '2020-05-24', NULL, NULL, NULL, NULL, NULL, '00:00:00', '04:10:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085292, 106, '2020-05-25', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '04:10:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '04:10:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085293, 106, '2020-05-26', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '04:10:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '04:10:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085294, 106, '2020-05-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '04:10:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '04:10:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085295, 106, '2020-05-28', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '04:10:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '04:10:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085296, 106, '2020-05-29', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '04:10:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085297, 106, '2020-05-30', NULL, NULL, NULL, NULL, NULL, '00:00:00', '04:10:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085298, 106, '2020-05-31', NULL, NULL, NULL, NULL, NULL, '00:00:00', '04:10:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085299, 106, '2020-06-01', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '04:10:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '04:10:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085300, 106, '2020-06-02', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '04:10:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '04:10:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086077, 103, '2020-07-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086078, 103, '2020-07-22', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086079, 103, '2020-07-23', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086080, 103, '2020-07-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085316, 110, '2020-04-23', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085317, 110, '2020-04-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085318, 110, '2020-04-25', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085319, 110, '2020-04-26', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085320, 110, '2020-04-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085321, 110, '2020-04-28', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085322, 110, '2020-04-29', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085323, 110, '2020-04-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085324, 110, '2020-05-01', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085325, 110, '2020-05-02', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085326, 110, '2020-05-03', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085327, 110, '2020-05-04', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085328, 110, '2020-05-05', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085329, 110, '2020-05-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086083, 103, '2020-07-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086084, 103, '2020-07-28', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086085, 103, '2020-07-29', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086100, 121, '2020-06-18', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085345, 110, '2020-05-22', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085346, 110, '2020-05-23', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085347, 110, '2020-05-24', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085348, 110, '2020-05-25', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085349, 110, '2020-05-26', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085350, 110, '2020-05-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085351, 110, '2020-05-28', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085352, 110, '2020-05-29', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085353, 110, '2020-05-30', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085354, 110, '2020-05-31', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085355, 110, '2020-06-01', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085356, 110, '2020-06-02', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085357, 110, '2020-06-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085358, 110, '2020-06-04', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086101, 121, '2020-06-19', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086102, 121, '2020-06-20', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086103, 121, '2020-06-21', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086104, 121, '2020-06-22', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085375, 145, '2020-04-26', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085376, 145, '2020-04-27', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085377, 145, '2020-04-28', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085378, 145, '2020-04-29', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085379, 145, '2020-04-30', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085380, 145, '2020-05-01', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085381, 145, '2020-05-02', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085382, 145, '2020-05-03', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085383, 145, '2020-05-04', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085384, 145, '2020-05-05', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085385, 145, '2020-05-06', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085386, 145, '2020-05-07', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085387, 145, '2020-05-08', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085388, 145, '2020-05-09', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085389, 145, '2020-05-10', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086106, 121, '2020-06-24', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086107, 121, '2020-06-25', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086108, 121, '2020-06-26', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085404, 145, '2020-05-25', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085405, 145, '2020-05-26', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085406, 145, '2020-05-27', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085407, 145, '2020-05-28', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085408, 145, '2020-05-29', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085409, 145, '2020-05-30', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085410, 145, '2020-05-31', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085411, 145, '2020-06-01', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085412, 145, '2020-06-02', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085413, 145, '2020-06-03', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085414, 145, '2020-06-04', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085415, 145, '2020-06-05', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085416, 145, '2020-06-06', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085417, 145, '2020-06-07', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086110, 121, '2020-06-28', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086111, 121, '2020-06-29', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086112, 121, '2020-06-30', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086113, 121, '2020-07-01', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085433, 148, '2020-04-28', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085434, 148, '2020-04-29', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085435, 148, '2020-04-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085436, 148, '2020-05-01', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085437, 148, '2020-05-02', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085438, 148, '2020-05-03', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085439, 148, '2020-05-04', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085440, 148, '2020-05-05', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085441, 148, '2020-05-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085442, 148, '2020-05-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085443, 148, '2020-05-08', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085444, 148, '2020-05-09', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085445, 148, '2020-05-10', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085446, 148, '2020-05-11', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086129, 121, '2020-07-17', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086130, 121, '2020-07-18', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086131, 121, '2020-07-19', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086132, 121, '2020-07-20', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086333, 113, '2020-07-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086342, 113, '2020-07-15', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085462, 148, '2020-05-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085463, 148, '2020-05-28', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085464, 148, '2020-05-29', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085465, 148, '2020-05-30', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085466, 148, '2020-05-31', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085467, 148, '2020-06-01', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085468, 148, '2020-06-02', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085469, 148, '2020-06-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085470, 148, '2020-06-04', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085471, 148, '2020-06-05', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085472, 148, '2020-06-06', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085473, 148, '2020-06-07', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085474, 148, '2020-06-08', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085475, 148, '2020-06-09', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086133, 121, '2020-07-21', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086134, 121, '2020-07-22', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086135, 121, '2020-07-23', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086136, 121, '2020-07-24', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085491, 130, '2020-04-30', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085492, 130, '2020-05-01', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085493, 130, '2020-05-02', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085494, 130, '2020-05-03', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085495, 130, '2020-05-04', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085496, 130, '2020-05-05', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085497, 130, '2020-05-06', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085498, 130, '2020-05-07', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085499, 130, '2020-05-08', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085500, 130, '2020-05-09', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085501, 130, '2020-05-10', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085502, 130, '2020-05-11', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085503, 130, '2020-05-12', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085504, 130, '2020-05-13', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086138, 121, '2020-07-26', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086139, 121, '2020-07-27', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086140, 121, '2020-07-28', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086141, 121, '2020-07-29', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085520, 130, '2020-05-29', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085521, 130, '2020-05-30', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085522, 130, '2020-05-31', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085523, 130, '2020-06-01', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085524, 130, '2020-06-02', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085525, 130, '2020-06-03', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085526, 130, '2020-06-04', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085527, 130, '2020-06-05', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085528, 130, '2020-06-06', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085529, 130, '2020-06-07', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085530, 130, '2020-06-08', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085531, 130, '2020-06-09', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085532, 130, '2020-06-10', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085533, 130, '2020-06-11', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086143, 121, '2020-07-31', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086158, 117, '2020-06-29', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086159, 117, '2020-06-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086160, 117, '2020-07-01', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085550, 129, '2020-05-03', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085551, 129, '2020-05-04', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085552, 129, '2020-05-05', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085553, 129, '2020-05-06', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085554, 129, '2020-05-07', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085555, 129, '2020-05-08', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085556, 129, '2020-05-09', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085557, 129, '2020-05-10', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085558, 129, '2020-05-11', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085559, 129, '2020-05-12', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085560, 129, '2020-05-13', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085561, 129, '2020-05-14', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085562, 129, '2020-05-15', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085563, 129, '2020-05-16', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085564, 129, '2020-05-17', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086161, 117, '2020-07-02', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086162, 117, '2020-07-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086163, 117, '2020-07-04', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085579, 129, '2020-06-01', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085580, 129, '2020-06-02', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085581, 129, '2020-06-03', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085582, 129, '2020-06-04', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085583, 129, '2020-06-05', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085584, 129, '2020-06-06', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085585, 129, '2020-06-07', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085586, 129, '2020-06-08', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085587, 129, '2020-06-09', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085588, 129, '2020-06-10', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085589, 129, '2020-06-11', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085590, 129, '2020-06-12', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085591, 129, '2020-06-13', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085592, 129, '2020-06-14', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086166, 117, '2020-07-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086167, 117, '2020-07-08', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086168, 117, '2020-07-09', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086169, 117, '2020-07-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085608, 143, '2020-05-05', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085609, 143, '2020-05-06', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085610, 143, '2020-05-07', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085611, 143, '2020-05-08', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085612, 143, '2020-05-09', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085613, 143, '2020-05-10', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085614, 143, '2020-05-11', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085615, 143, '2020-05-12', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085616, 143, '2020-05-13', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085617, 143, '2020-05-14', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085618, 143, '2020-05-15', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085619, 143, '2020-05-16', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085620, 143, '2020-05-17', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085621, 143, '2020-05-18', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086170, 117, '2020-07-11', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086171, 117, '2020-07-12', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086172, 117, '2020-07-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086187, 117, '2020-07-28', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085637, 143, '2020-06-03', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085638, 143, '2020-06-04', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085639, 143, '2020-06-05', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085640, 143, '2020-06-06', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085641, 143, '2020-06-07', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085642, 143, '2020-06-08', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085643, 143, '2020-06-09', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085644, 143, '2020-06-10', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085645, 143, '2020-06-11', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085646, 143, '2020-06-12', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085647, 143, '2020-06-13', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085648, 143, '2020-06-14', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085649, 146, '2020-06-15', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085650, 146, '2020-06-16', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086189, 117, '2020-07-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086190, 117, '2020-07-31', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086191, 117, '2020-08-01', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086192, 117, '2020-08-02', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085666, 146, '2020-07-02', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085667, 146, '2020-07-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085668, 146, '2020-07-04', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085669, 146, '2020-07-05', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085670, 146, '2020-07-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085671, 146, '2020-07-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085672, 146, '2020-07-08', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085673, 146, '2020-07-09', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085674, 146, '2020-07-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085675, 146, '2020-07-11', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085676, 146, '2020-07-12', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085677, 146, '2020-07-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085678, 146, '2020-07-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085679, 146, '2020-07-15', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086194, 117, '2020-08-04', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086195, 117, '2020-08-05', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086196, 117, '2020-08-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086197, 117, '2020-08-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085695, 146, '2020-07-31', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085696, 146, '2020-08-01', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085697, 146, '2020-08-02', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085698, 146, '2020-08-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085699, 146, '2020-08-04', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085700, 146, '2020-08-05', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085701, 146, '2020-08-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085702, 146, '2020-08-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085703, 146, '2020-08-08', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085704, 146, '2020-08-09', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085705, 115, '2020-06-15', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085706, 115, '2020-06-16', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085707, 115, '2020-06-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085708, 115, '2020-06-18', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086199, 117, '2020-08-09', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086200, 125, '2020-06-15', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '03:20:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086201, 125, '2020-06-16', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '03:20:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086216, 125, '2020-07-01', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '03:20:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086347, 113, '2020-07-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085725, 115, '2020-07-05', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085726, 115, '2020-07-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085727, 115, '2020-07-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085728, 115, '2020-07-08', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085729, 115, '2020-07-09', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085730, 115, '2020-07-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085731, 115, '2020-07-11', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085732, 115, '2020-07-12', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085733, 115, '2020-07-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085734, 115, '2020-07-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085735, 115, '2020-07-15', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085736, 115, '2020-07-16', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085737, 115, '2020-07-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085738, 115, '2020-07-18', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085739, 115, '2020-07-19', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086217, 125, '2020-07-02', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '03:20:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086218, 125, '2020-07-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '03:20:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086219, 125, '2020-07-04', NULL, NULL, NULL, NULL, NULL, '00:00:00', '03:20:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', '03:20:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086220, 125, '2020-07-05', NULL, NULL, NULL, NULL, NULL, '00:00:00', '03:20:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085754, 115, '2020-08-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085755, 115, '2020-08-04', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085756, 115, '2020-08-05', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085757, 115, '2020-08-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085758, 115, '2020-08-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085759, 115, '2020-08-08', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085760, 115, '2020-08-09', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085761, 114, '2020-06-15', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085762, 114, '2020-06-16', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085763, 114, '2020-06-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085764, 114, '2020-06-18', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085765, 114, '2020-06-19', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085766, 114, '2020-06-20', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085767, 114, '2020-06-21', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086221, 125, '2020-07-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '03:20:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086222, 125, '2020-07-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '03:20:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086223, 125, '2020-07-08', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '03:20:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086224, 125, '2020-07-09', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '03:20:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086366, 113, '2020-08-08', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085783, 114, '2020-07-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085784, 114, '2020-07-08', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085785, 114, '2020-07-09', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085786, 114, '2020-07-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085787, 114, '2020-07-11', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085788, 114, '2020-07-12', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085789, 114, '2020-07-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085790, 114, '2020-07-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085791, 114, '2020-07-15', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085792, 114, '2020-07-16', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085793, 114, '2020-07-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085794, 114, '2020-07-18', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085795, 114, '2020-07-19', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085796, 114, '2020-07-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086225, 125, '2020-07-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '03:20:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086226, 125, '2020-07-11', NULL, NULL, NULL, NULL, NULL, '00:00:00', '03:20:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', '03:20:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086227, 125, '2020-07-12', NULL, NULL, NULL, NULL, NULL, '00:00:00', '03:20:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086228, 125, '2020-07-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '03:20:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085812, 114, '2020-08-05', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085813, 114, '2020-08-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085814, 114, '2020-08-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085815, 114, '2020-08-08', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085816, 114, '2020-08-09', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085817, 108, '2020-06-15', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085818, 108, '2020-06-16', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085819, 108, '2020-06-17', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085820, 108, '2020-06-18', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085821, 108, '2020-06-19', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085822, 108, '2020-06-20', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085823, 108, '2020-06-21', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085824, 108, '2020-06-22', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085825, 108, '2020-06-23', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086230, 125, '2020-07-15', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '03:20:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086245, 125, '2020-07-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '03:20:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086246, 125, '2020-07-31', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '03:20:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086247, 125, '2020-08-01', NULL, NULL, NULL, NULL, NULL, '00:00:00', '03:20:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', '03:20:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085841, 108, '2020-07-09', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085842, 108, '2020-07-10', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085843, 108, '2020-07-11', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085844, 108, '2020-07-12', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085845, 108, '2020-07-13', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085846, 108, '2020-07-14', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085847, 108, '2020-07-15', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085848, 108, '2020-07-16', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085849, 108, '2020-07-17', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085850, 108, '2020-07-18', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085851, 108, '2020-07-19', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085852, 108, '2020-07-20', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085853, 108, '2020-07-21', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085854, 108, '2020-07-22', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086249, 125, '2020-08-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '03:20:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086250, 125, '2020-08-04', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '03:20:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086251, 125, '2020-08-05', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '03:20:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086252, 125, '2020-08-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '03:20:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1014600, 119, '2020-01-01', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1014601, 119, '2020-01-02', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1014602, 119, '2020-01-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1014603, 119, '2020-01-04', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1014604, 119, '2020-01-05', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1014605, 119, '2020-01-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1014606, 119, '2020-01-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1014607, 119, '2020-01-08', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1014608, 119, '2020-01-09', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1014609, 119, '2020-01-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1014610, 119, '2020-01-11', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1014611, 119, '2020-01-12', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085870, 108, '2020-08-07', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085871, 108, '2020-08-08', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085872, 108, '2020-08-09', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085873, 135, '2020-06-15', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085874, 135, '2020-06-16', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086253, 125, '2020-08-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '03:20:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086371, 147, '2020-06-18', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085882, 135, '2020-06-24', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085883, 135, '2020-06-25', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085884, 135, '2020-06-26', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085885, 135, '2020-06-27', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085886, 135, '2020-06-28', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085887, 135, '2020-06-29', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085888, 135, '2020-06-30', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085889, 135, '2020-07-01', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085890, 135, '2020-07-02', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085891, 135, '2020-07-03', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085892, 135, '2020-07-04', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085893, 135, '2020-07-05', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085894, 135, '2020-07-06', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085895, 135, '2020-07-07', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086254, 125, '2020-08-08', NULL, NULL, NULL, NULL, NULL, '00:00:00', '03:20:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', '03:20:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086255, 125, '2020-08-09', NULL, NULL, NULL, NULL, NULL, '00:00:00', '03:20:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086256, 119, '2020-06-15', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086257, 119, '2020-06-16', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085911, 135, '2020-07-23', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085912, 135, '2020-07-24', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085913, 135, '2020-07-25', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085914, 135, '2020-07-26', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085915, 135, '2020-07-27', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085916, 135, '2020-07-28', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085917, 135, '2020-07-29', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085918, 135, '2020-07-30', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085919, 135, '2020-07-31', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085920, 135, '2020-08-01', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085921, 135, '2020-08-02', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085922, 135, '2020-08-03', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085923, 135, '2020-08-04', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085924, 135, '2020-08-05', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086259, 119, '2020-06-18', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086274, 119, '2020-07-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086275, 119, '2020-07-04', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086276, 119, '2020-07-05', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085940, 127, '2020-06-26', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085941, 127, '2020-06-27', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085942, 127, '2020-06-28', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085943, 127, '2020-06-29', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085944, 127, '2020-06-30', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085945, 127, '2020-07-01', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085946, 127, '2020-07-02', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085947, 127, '2020-07-03', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085948, 127, '2020-07-04', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085949, 127, '2020-07-05', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085950, 127, '2020-07-06', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085951, 127, '2020-07-07', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085952, 127, '2020-07-08', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085953, 127, '2020-07-09', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086278, 119, '2020-07-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086279, 119, '2020-07-08', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086280, 119, '2020-07-09', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086281, 119, '2020-07-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085969, 127, '2020-07-25', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085970, 127, '2020-07-26', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085971, 127, '2020-07-27', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085972, 127, '2020-07-28', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085973, 127, '2020-07-29', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085974, 127, '2020-07-30', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085975, 127, '2020-07-31', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085976, 127, '2020-08-01', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085977, 127, '2020-08-02', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085978, 127, '2020-08-03', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085979, 127, '2020-08-04', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085980, 127, '2020-08-05', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085981, 127, '2020-08-06', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085982, 127, '2020-08-07', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086282, 119, '2020-07-11', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086283, 119, '2020-07-12', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086284, 119, '2020-07-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086285, 119, '2020-07-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085999, 149, '2020-06-29', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086000, 149, '2020-06-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086001, 149, '2020-07-01', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086002, 149, '2020-07-02', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086003, 149, '2020-07-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086004, 149, '2020-07-04', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086005, 149, '2020-07-05', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086006, 149, '2020-07-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086007, 149, '2020-07-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086008, 149, '2020-07-08', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086009, 149, '2020-07-09', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086010, 149, '2020-07-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086011, 149, '2020-07-11', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086012, 149, '2020-07-12', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086287, 119, '2020-07-16', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086288, 119, '2020-07-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086303, 119, '2020-08-01', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086304, 119, '2020-08-02', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086028, 149, '2020-07-28', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086029, 149, '2020-07-29', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086030, 149, '2020-07-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086031, 149, '2020-07-31', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086032, 149, '2020-08-01', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086033, 149, '2020-08-02', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086034, 149, '2020-08-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086035, 149, '2020-08-04', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086036, 149, '2020-08-05', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086037, 149, '2020-08-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086038, 149, '2020-08-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086039, 149, '2020-08-08', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086040, 149, '2020-08-09', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086041, 103, '2020-06-15', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086306, 119, '2020-08-04', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086307, 119, '2020-08-05', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086308, 119, '2020-08-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086309, 119, '2020-08-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086394, 147, '2020-07-11', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086057, 103, '2020-07-01', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086058, 103, '2020-07-02', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086059, 103, '2020-07-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086060, 103, '2020-07-04', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086061, 103, '2020-07-05', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086062, 103, '2020-07-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086063, 103, '2020-07-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086064, 103, '2020-07-08', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086065, 103, '2020-07-09', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086066, 103, '2020-07-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086067, 103, '2020-07-11', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086068, 103, '2020-07-12', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086069, 103, '2020-07-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086070, 103, '2020-07-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086310, 119, '2020-08-08', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086311, 119, '2020-08-09', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086312, 113, '2020-06-15', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086313, 113, '2020-06-16', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086086, 103, '2020-07-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086087, 103, '2020-07-31', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086088, 103, '2020-08-01', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086089, 103, '2020-08-02', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086090, 103, '2020-08-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086091, 103, '2020-08-04', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086092, 103, '2020-08-05', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086093, 103, '2020-08-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086094, 103, '2020-08-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086095, 103, '2020-08-08', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086096, 103, '2020-08-09', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086097, 121, '2020-06-15', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086098, 121, '2020-06-16', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086099, 121, '2020-06-17', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086315, 113, '2020-06-18', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086316, 113, '2020-06-19', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086317, 113, '2020-06-20', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086318, 113, '2020-06-21', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086115, 121, '2020-07-03', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086116, 121, '2020-07-04', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086117, 121, '2020-07-05', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086118, 121, '2020-07-06', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086119, 121, '2020-07-07', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086120, 121, '2020-07-08', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086121, 121, '2020-07-09', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086122, 121, '2020-07-10', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086123, 121, '2020-07-11', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086124, 121, '2020-07-12', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086125, 121, '2020-07-13', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086126, 121, '2020-07-14', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086127, 121, '2020-07-15', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086128, 121, '2020-07-16', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086334, 113, '2020-07-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086335, 113, '2020-07-08', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086336, 113, '2020-07-09', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086337, 113, '2020-07-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086144, 117, '2020-06-15', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086145, 117, '2020-06-16', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086146, 117, '2020-06-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086147, 117, '2020-06-18', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086148, 117, '2020-06-19', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086149, 117, '2020-06-20', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086150, 117, '2020-06-21', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086151, 117, '2020-06-22', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086152, 117, '2020-06-23', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086153, 117, '2020-06-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086154, 117, '2020-06-25', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086155, 117, '2020-06-26', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086156, 117, '2020-06-27', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086157, 117, '2020-06-28', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086338, 113, '2020-07-11', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086339, 113, '2020-07-12', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086340, 113, '2020-07-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086341, 113, '2020-07-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086173, 117, '2020-07-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086174, 117, '2020-07-15', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086175, 117, '2020-07-16', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086176, 117, '2020-07-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086177, 117, '2020-07-18', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086178, 117, '2020-07-19', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086179, 117, '2020-07-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086180, 117, '2020-07-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086181, 117, '2020-07-22', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086182, 117, '2020-07-23', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086183, 117, '2020-07-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086184, 117, '2020-07-25', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086185, 117, '2020-07-26', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086186, 117, '2020-07-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086343, 113, '2020-07-16', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086344, 113, '2020-07-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086345, 113, '2020-07-18', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086346, 113, '2020-07-19', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086202, 125, '2020-06-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '03:20:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086203, 125, '2020-06-18', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '03:20:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086204, 125, '2020-06-19', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '03:20:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086205, 125, '2020-06-20', NULL, NULL, NULL, NULL, NULL, '00:00:00', '03:20:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', '03:20:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086206, 125, '2020-06-21', NULL, NULL, NULL, NULL, NULL, '00:00:00', '03:20:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086207, 125, '2020-06-22', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '03:20:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086208, 125, '2020-06-23', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '03:20:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086209, 125, '2020-06-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '03:20:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086210, 125, '2020-06-25', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '03:20:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086211, 125, '2020-06-26', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '03:20:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086212, 125, '2020-06-27', NULL, NULL, NULL, NULL, NULL, '00:00:00', '03:20:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', '03:20:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086213, 125, '2020-06-28', NULL, NULL, NULL, NULL, NULL, '00:00:00', '03:20:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086214, 125, '2020-06-29', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '03:20:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086215, 125, '2020-06-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '03:20:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086362, 113, '2020-08-04', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086363, 113, '2020-08-05', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086364, 113, '2020-08-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086365, 113, '2020-08-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086231, 125, '2020-07-16', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '03:20:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086232, 125, '2020-07-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '03:20:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086233, 125, '2020-07-18', NULL, NULL, NULL, NULL, NULL, '00:00:00', '03:20:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', '03:20:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086234, 125, '2020-07-19', NULL, NULL, NULL, NULL, NULL, '00:00:00', '03:20:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086235, 125, '2020-07-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '03:20:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086236, 125, '2020-07-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '03:20:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086237, 125, '2020-07-22', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '03:20:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086238, 125, '2020-07-23', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '03:20:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086239, 125, '2020-07-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '03:20:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086240, 125, '2020-07-25', NULL, NULL, NULL, NULL, NULL, '00:00:00', '03:20:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', '03:20:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086241, 125, '2020-07-26', NULL, NULL, NULL, NULL, NULL, '00:00:00', '03:20:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086242, 125, '2020-07-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '03:20:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086243, 125, '2020-07-28', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '03:20:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086244, 125, '2020-07-29', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '03:20:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086367, 113, '2020-08-09', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086368, 147, '2020-06-15', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086369, 147, '2020-06-16', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086370, 147, '2020-06-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086260, 119, '2020-06-19', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086261, 119, '2020-06-20', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086262, 119, '2020-06-21', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086263, 119, '2020-06-22', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086264, 119, '2020-06-23', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086265, 119, '2020-06-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086266, 119, '2020-06-25', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086267, 119, '2020-06-26', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086268, 119, '2020-06-27', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086269, 119, '2020-06-28', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086270, 119, '2020-06-29', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086271, 119, '2020-06-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086272, 119, '2020-07-01', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086273, 119, '2020-07-02', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086372, 147, '2020-06-19', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086373, 147, '2020-06-20', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086374, 147, '2020-06-21', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086375, 147, '2020-06-22', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086399, 147, '2020-07-16', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086289, 119, '2020-07-18', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086290, 119, '2020-07-19', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086291, 119, '2020-07-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086292, 119, '2020-07-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086293, 119, '2020-07-22', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086294, 119, '2020-07-23', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086295, 119, '2020-07-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086296, 119, '2020-07-25', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086297, 119, '2020-07-26', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086298, 119, '2020-07-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086299, 119, '2020-07-28', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086300, 119, '2020-07-29', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086301, 119, '2020-07-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086302, 119, '2020-07-31', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086376, 147, '2020-06-23', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086391, 147, '2020-07-08', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086392, 147, '2020-07-09', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086393, 147, '2020-07-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086319, 113, '2020-06-22', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086320, 113, '2020-06-23', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086321, 113, '2020-06-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086322, 113, '2020-06-25', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086323, 113, '2020-06-26', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086324, 113, '2020-06-27', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086325, 113, '2020-06-28', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086326, 113, '2020-06-29', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086327, 113, '2020-06-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086328, 113, '2020-07-01', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086329, 113, '2020-07-02', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086330, 113, '2020-07-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086331, 113, '2020-07-04', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086332, 113, '2020-07-05', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086395, 147, '2020-07-12', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086396, 147, '2020-07-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086397, 147, '2020-07-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086398, 147, '2020-07-15', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086348, 113, '2020-07-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086349, 113, '2020-07-22', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086350, 113, '2020-07-23', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086351, 113, '2020-07-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086352, 113, '2020-07-25', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086353, 113, '2020-07-26', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086354, 113, '2020-07-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086355, 113, '2020-07-28', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086356, 113, '2020-07-29', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086357, 113, '2020-07-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086358, 113, '2020-07-31', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086359, 113, '2020-08-01', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086360, 113, '2020-08-02', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086361, 113, '2020-08-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086400, 147, '2020-07-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086401, 147, '2020-07-18', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086402, 147, '2020-07-19', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086403, 147, '2020-07-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086377, 147, '2020-06-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086378, 147, '2020-06-25', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086379, 147, '2020-06-26', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086380, 147, '2020-06-27', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086381, 147, '2020-06-28', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086382, 147, '2020-06-29', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086383, 147, '2020-06-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086384, 147, '2020-07-01', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086385, 147, '2020-07-02', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086386, 147, '2020-07-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086387, 147, '2020-07-04', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086388, 147, '2020-07-05', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086389, 147, '2020-07-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086390, 147, '2020-07-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086404, 147, '2020-07-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086405, 147, '2020-07-22', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086420, 147, '2020-08-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086421, 147, '2020-08-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086406, 147, '2020-07-23', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086407, 147, '2020-07-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086408, 147, '2020-07-25', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086409, 147, '2020-07-26', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086410, 147, '2020-07-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086411, 147, '2020-07-28', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086412, 147, '2020-07-29', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086413, 147, '2020-07-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086414, 147, '2020-07-31', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086415, 147, '2020-08-01', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086416, 147, '2020-08-02', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086417, 147, '2020-08-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086418, 147, '2020-08-04', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086419, 147, '2020-08-05', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086422, 147, '2020-08-08', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086423, 147, '2020-08-09', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086424, 131, '2020-06-15', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '04:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '04:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086425, 131, '2020-06-16', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '04:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '04:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086426, 131, '2020-06-17', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '04:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '04:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086427, 131, '2020-06-18', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '04:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '04:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086428, 131, '2020-06-19', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '04:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '04:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086429, 131, '2020-06-20', NULL, NULL, NULL, NULL, NULL, '00:00:00', '04:00:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086430, 131, '2020-06-21', NULL, NULL, NULL, NULL, NULL, '00:00:00', '04:00:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086431, 131, '2020-06-22', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '04:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '04:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086432, 131, '2020-06-23', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '04:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '04:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086433, 131, '2020-06-24', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '04:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '04:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086434, 131, '2020-06-25', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '04:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '04:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086435, 131, '2020-06-26', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '04:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '04:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086436, 131, '2020-06-27', NULL, NULL, NULL, NULL, NULL, '00:00:00', '04:00:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086437, 131, '2020-06-28', NULL, NULL, NULL, NULL, NULL, '00:00:00', '04:00:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086438, 131, '2020-06-29', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '04:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '04:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086439, 131, '2020-06-30', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '04:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '04:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086440, 131, '2020-07-01', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '04:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '04:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086441, 131, '2020-07-02', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '04:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '04:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086442, 131, '2020-07-03', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '04:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '04:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086443, 131, '2020-07-04', NULL, NULL, NULL, NULL, NULL, '00:00:00', '04:00:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086444, 131, '2020-07-05', NULL, NULL, NULL, NULL, NULL, '00:00:00', '04:00:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086445, 131, '2020-07-06', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '04:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '04:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1016806, 113, '2019-12-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1016807, 113, '2019-12-31', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086446, 131, '2020-07-07', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '04:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '04:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086447, 131, '2020-07-08', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '04:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '04:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086448, 131, '2020-07-09', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '04:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '04:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086449, 131, '2020-07-10', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '04:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '04:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086450, 131, '2020-07-11', NULL, NULL, NULL, NULL, NULL, '00:00:00', '04:00:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086451, 131, '2020-07-12', NULL, NULL, NULL, NULL, NULL, '00:00:00', '04:00:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086452, 131, '2020-07-13', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '04:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '04:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086453, 131, '2020-07-14', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '04:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '04:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086454, 131, '2020-07-15', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '04:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '04:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086455, 131, '2020-07-16', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '04:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '04:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086456, 131, '2020-07-17', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '04:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '04:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086457, 131, '2020-07-18', NULL, NULL, NULL, NULL, NULL, '00:00:00', '04:00:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086458, 131, '2020-07-19', NULL, NULL, NULL, NULL, NULL, '00:00:00', '04:00:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086459, 131, '2020-07-20', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '04:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '04:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086460, 131, '2020-07-21', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '04:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '04:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086461, 131, '2020-07-22', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '04:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '04:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086462, 131, '2020-07-23', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '04:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '04:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086463, 131, '2020-07-24', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '04:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '04:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086464, 131, '2020-07-25', NULL, NULL, NULL, NULL, NULL, '00:00:00', '04:00:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086465, 131, '2020-07-26', NULL, NULL, NULL, NULL, NULL, '00:00:00', '04:00:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086466, 131, '2020-07-27', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '04:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '04:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086467, 131, '2020-07-28', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '04:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '04:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086468, 131, '2020-07-29', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '04:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '04:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086469, 131, '2020-07-30', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '04:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '04:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086470, 131, '2020-07-31', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '04:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '04:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086471, 131, '2020-08-01', NULL, NULL, NULL, NULL, NULL, '00:00:00', '04:00:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086472, 131, '2020-08-02', NULL, NULL, NULL, NULL, NULL, '00:00:00', '04:00:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086473, 131, '2020-08-03', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '04:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '04:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086474, 131, '2020-08-04', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '04:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '04:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086475, 131, '2020-08-05', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '04:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '04:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086476, 131, '2020-08-06', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '04:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '04:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086477, 131, '2020-08-07', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '04:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '04:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086478, 131, '2020-08-08', NULL, NULL, NULL, NULL, NULL, '00:00:00', '04:00:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086479, 131, '2020-08-09', NULL, NULL, NULL, NULL, NULL, '00:00:00', '04:00:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086480, 104, '2020-06-15', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086481, 104, '2020-06-16', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086482, 104, '2020-06-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086483, 104, '2020-06-18', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086484, 104, '2020-06-19', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086485, 104, '2020-06-20', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:00:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086486, 104, '2020-06-21', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:00:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086487, 104, '2020-06-22', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086488, 104, '2020-06-23', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086489, 104, '2020-06-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086490, 104, '2020-06-25', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086491, 104, '2020-06-26', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086492, 104, '2020-06-27', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:00:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086493, 104, '2020-06-28', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:00:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086494, 104, '2020-06-29', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086495, 104, '2020-06-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086496, 104, '2020-07-01', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086497, 104, '2020-07-02', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086498, 104, '2020-07-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086499, 104, '2020-07-04', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:00:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086500, 104, '2020-07-05', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:00:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086501, 104, '2020-07-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086502, 104, '2020-07-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086503, 104, '2020-07-08', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086504, 104, '2020-07-09', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086505, 104, '2020-07-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086506, 104, '2020-07-11', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:00:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086507, 104, '2020-07-12', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:00:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086508, 104, '2020-07-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086509, 104, '2020-07-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086510, 104, '2020-07-15', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086511, 104, '2020-07-16', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086512, 104, '2020-07-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086513, 104, '2020-07-18', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:00:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086514, 104, '2020-07-19', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:00:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086515, 104, '2020-07-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086516, 104, '2020-07-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086517, 104, '2020-07-22', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1016752, 113, '2020-01-01', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1016753, 113, '2020-01-02', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1016754, 113, '2020-01-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1016755, 113, '2020-01-04', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1016756, 113, '2020-01-05', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1016757, 113, '2020-01-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1016758, 113, '2020-01-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1016759, 113, '2020-01-08', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1016760, 113, '2020-01-09', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1016761, 113, '2020-01-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1016762, 113, '2020-01-11', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1016763, 113, '2020-01-12', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1016764, 113, '2020-01-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1016765, 113, '2020-01-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1016766, 113, '2020-01-15', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1016767, 113, '2020-01-16', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1016768, 113, '2020-01-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1016769, 113, '2020-01-18', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086518, 104, '2020-07-23', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1016783, 113, '2020-02-01', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1016784, 113, '2020-02-02', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1016785, 113, '2020-02-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1016786, 113, '2020-02-04', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1016787, 113, '2020-02-05', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1016788, 113, '2020-02-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1016789, 113, '2020-02-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1016790, 113, '2020-02-08', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1016791, 113, '2020-02-09', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1016792, 113, '2020-02-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1016793, 113, '2020-02-11', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1016794, 113, '2020-02-12', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1016795, 113, '2020-02-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1016796, 113, '2020-02-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1016797, 113, '2020-02-15', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1016798, 113, '2020-02-16', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1016799, 113, '2020-02-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1016800, 113, '2020-02-18', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086519, 104, '2020-07-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086520, 104, '2020-07-25', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:00:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086521, 104, '2020-07-26', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:00:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086522, 104, '2020-07-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086523, 104, '2020-07-28', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086524, 104, '2020-07-29', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086525, 104, '2020-07-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086526, 104, '2020-07-31', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086527, 104, '2020-08-01', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:00:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086528, 104, '2020-08-02', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:00:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086529, 104, '2020-08-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086530, 104, '2020-08-04', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086531, 104, '2020-08-05', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086532, 104, '2020-08-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086533, 104, '2020-08-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086534, 104, '2020-08-08', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:00:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086535, 104, '2020-08-09', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:00:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086536, 151, '2020-06-15', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086537, 151, '2020-06-16', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086538, 151, '2020-06-17', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086539, 151, '2020-06-18', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086540, 151, '2020-06-19', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086541, 151, '2020-06-20', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086542, 151, '2020-06-21', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086543, 151, '2020-06-22', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086544, 151, '2020-06-23', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086545, 151, '2020-06-24', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086546, 151, '2020-06-25', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086547, 151, '2020-06-26', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086548, 151, '2020-06-27', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086549, 151, '2020-06-28', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086550, 151, '2020-06-29', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086551, 151, '2020-06-30', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086552, 151, '2020-07-01', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086553, 151, '2020-07-02', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086554, 151, '2020-07-03', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086555, 151, '2020-07-04', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086556, 151, '2020-07-05', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086557, 151, '2020-07-06', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086558, 151, '2020-07-07', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086559, 151, '2020-07-08', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086560, 151, '2020-07-09', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086561, 151, '2020-07-10', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086562, 151, '2020-07-11', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086563, 151, '2020-07-12', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086564, 151, '2020-07-13', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086565, 151, '2020-07-14', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086566, 151, '2020-07-15', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086567, 151, '2020-07-16', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086568, 151, '2020-07-17', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086569, 151, '2020-07-18', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086570, 151, '2020-07-19', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086571, 151, '2020-07-20', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086572, 151, '2020-07-21', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086573, 151, '2020-07-22', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086574, 151, '2020-07-23', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086575, 151, '2020-07-24', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086576, 151, '2020-07-25', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086577, 151, '2020-07-26', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086578, 151, '2020-07-27', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086579, 151, '2020-07-28', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086580, 151, '2020-07-29', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086581, 151, '2020-07-30', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086582, 151, '2020-07-31', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086583, 151, '2020-08-01', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086584, 151, '2020-08-02', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086585, 151, '2020-08-03', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086586, 151, '2020-08-04', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086587, 151, '2020-08-05', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086588, 151, '2020-08-06', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086589, 151, '2020-08-07', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086590, 151, '2020-08-08', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086591, 151, '2020-08-09', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086592, 138, '2020-06-15', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086593, 138, '2020-06-16', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086594, 138, '2020-06-17', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086595, 138, '2020-06-18', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086596, 138, '2020-06-19', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086597, 138, '2020-06-20', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086598, 138, '2020-06-21', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086599, 138, '2020-06-22', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086600, 138, '2020-06-23', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086601, 138, '2020-06-24', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086602, 138, '2020-06-25', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086603, 138, '2020-06-26', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086604, 138, '2020-06-27', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086605, 138, '2020-06-28', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086606, 138, '2020-06-29', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086607, 138, '2020-06-30', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086608, 105, '2020-06-15', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086609, 105, '2020-06-16', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086610, 105, '2020-06-17', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086611, 105, '2020-06-18', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086612, 105, '2020-06-19', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086613, 105, '2020-06-20', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086614, 105, '2020-06-21', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086615, 105, '2020-06-22', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086616, 105, '2020-06-23', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086617, 105, '2020-06-24', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086618, 105, '2020-06-25', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086619, 105, '2020-06-26', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086620, 105, '2020-06-27', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086621, 105, '2020-06-28', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086622, 105, '2020-06-29', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086623, 105, '2020-06-30', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086624, 105, '2020-07-01', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086625, 105, '2020-07-02', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086626, 105, '2020-07-03', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086627, 105, '2020-07-04', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086628, 105, '2020-07-05', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086629, 105, '2020-07-06', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086630, 105, '2020-07-07', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086631, 105, '2020-07-08', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086632, 105, '2020-07-09', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086633, 105, '2020-07-10', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086634, 105, '2020-07-11', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086635, 105, '2020-07-12', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086636, 105, '2020-07-13', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086637, 105, '2020-07-14', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086638, 105, '2020-07-15', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086639, 105, '2020-07-16', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086640, 105, '2020-07-17', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086641, 105, '2020-07-18', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086642, 105, '2020-07-19', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086643, 105, '2020-07-20', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086644, 105, '2020-07-21', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086645, 105, '2020-07-22', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086646, 105, '2020-07-23', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086647, 105, '2020-07-24', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086648, 105, '2020-07-25', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086649, 105, '2020-07-26', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086650, 105, '2020-07-27', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086651, 105, '2020-07-28', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086652, 105, '2020-07-29', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086653, 105, '2020-07-30', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086654, 105, '2020-07-31', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086655, 105, '2020-08-01', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086656, 105, '2020-08-02', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086657, 105, '2020-08-03', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086658, 105, '2020-08-04', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086659, 105, '2020-08-05', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086660, 105, '2020-08-06', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086661, 105, '2020-08-07', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086662, 105, '2020-08-08', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086663, 105, '2020-08-09', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086664, 134, '2020-06-15', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086665, 134, '2020-06-16', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086666, 134, '2020-06-17', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086667, 134, '2020-06-18', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086668, 134, '2020-06-19', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086669, 134, '2020-06-20', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086670, 134, '2020-06-21', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086671, 134, '2020-06-22', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086672, 134, '2020-06-23', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086673, 134, '2020-06-24', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086674, 134, '2020-06-25', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086675, 134, '2020-06-26', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086676, 134, '2020-06-27', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086677, 134, '2020-06-28', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086678, 134, '2020-06-29', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086679, 134, '2020-06-30', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086680, 134, '2020-07-01', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086681, 134, '2020-07-02', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086682, 134, '2020-07-03', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086683, 134, '2020-07-04', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086684, 134, '2020-07-05', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086685, 134, '2020-07-06', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086686, 134, '2020-07-07', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086687, 134, '2020-07-08', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086688, 134, '2020-07-09', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086689, 134, '2020-07-10', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086690, 134, '2020-07-11', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086691, 134, '2020-07-12', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086692, 134, '2020-07-13', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086693, 134, '2020-07-14', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086694, 134, '2020-07-15', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086695, 134, '2020-07-16', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086696, 134, '2020-07-17', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086697, 134, '2020-07-18', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086698, 134, '2020-07-19', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086699, 134, '2020-07-20', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086700, 134, '2020-07-21', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086701, 134, '2020-07-22', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086702, 134, '2020-07-23', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086703, 134, '2020-07-24', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086704, 134, '2020-07-25', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086705, 134, '2020-07-26', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086706, 134, '2020-07-27', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086707, 134, '2020-07-28', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086708, 134, '2020-07-29', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086709, 134, '2020-07-30', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086710, 134, '2020-07-31', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086711, 134, '2020-08-01', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086712, 134, '2020-08-02', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086713, 134, '2020-08-03', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086714, 134, '2020-08-04', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086715, 134, '2020-08-05', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086716, 134, '2020-08-06', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086717, 134, '2020-08-07', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086718, 134, '2020-08-08', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086719, 134, '2020-08-09', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086720, 102, '2020-06-15', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086721, 102, '2020-06-16', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086722, 102, '2020-06-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086723, 102, '2020-06-18', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086724, 102, '2020-06-19', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086725, 102, '2020-06-20', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086726, 102, '2020-06-21', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086727, 102, '2020-06-22', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086728, 102, '2020-06-23', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086729, 102, '2020-06-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086730, 102, '2020-06-25', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086731, 102, '2020-06-26', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086732, 102, '2020-06-27', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086733, 102, '2020-06-28', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086734, 102, '2020-06-29', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086735, 102, '2020-06-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086736, 102, '2020-07-01', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086737, 102, '2020-07-02', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086738, 102, '2020-07-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086739, 102, '2020-07-04', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086740, 102, '2020-07-05', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086741, 102, '2020-07-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086742, 102, '2020-07-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086743, 102, '2020-07-08', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086744, 102, '2020-07-09', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086745, 102, '2020-07-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086746, 102, '2020-07-11', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086747, 102, '2020-07-12', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086748, 102, '2020-07-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086749, 102, '2020-07-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086750, 102, '2020-07-15', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086751, 102, '2020-07-16', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086752, 102, '2020-07-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086753, 102, '2020-07-18', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086754, 102, '2020-07-19', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086755, 102, '2020-07-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086756, 102, '2020-07-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086757, 102, '2020-07-22', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086758, 102, '2020-07-23', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086759, 102, '2020-07-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086760, 102, '2020-07-25', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086761, 102, '2020-07-26', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086762, 102, '2020-07-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086763, 102, '2020-07-28', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086764, 102, '2020-07-29', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086765, 102, '2020-07-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086766, 102, '2020-07-31', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086767, 102, '2020-08-01', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086768, 102, '2020-08-02', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086769, 102, '2020-08-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086770, 102, '2020-08-04', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086771, 102, '2020-08-05', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086772, 102, '2020-08-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086773, 102, '2020-08-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086774, 102, '2020-08-08', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086775, 102, '2020-08-09', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086776, 109, '2020-06-15', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086777, 109, '2020-06-16', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086778, 109, '2020-06-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086779, 109, '2020-06-18', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086780, 109, '2020-06-19', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086781, 109, '2020-06-20', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086782, 109, '2020-06-21', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086783, 109, '2020-06-22', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086784, 109, '2020-06-23', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086785, 109, '2020-06-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086786, 109, '2020-06-25', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086787, 109, '2020-06-26', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086788, 109, '2020-06-27', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086789, 109, '2020-06-28', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086790, 109, '2020-06-29', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086791, 109, '2020-06-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086792, 109, '2020-07-01', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086793, 109, '2020-07-02', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086794, 109, '2020-07-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086795, 109, '2020-07-04', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086796, 109, '2020-07-05', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086797, 109, '2020-07-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086798, 109, '2020-07-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086799, 109, '2020-07-08', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086800, 109, '2020-07-09', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086801, 109, '2020-07-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086802, 109, '2020-07-11', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086803, 109, '2020-07-12', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086804, 109, '2020-07-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086805, 109, '2020-07-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086806, 109, '2020-07-15', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086807, 109, '2020-07-16', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086808, 109, '2020-07-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086809, 109, '2020-07-18', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086810, 109, '2020-07-19', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086811, 109, '2020-07-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086812, 109, '2020-07-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086813, 109, '2020-07-22', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086814, 109, '2020-07-23', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086815, 109, '2020-07-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086816, 109, '2020-07-25', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086817, 109, '2020-07-26', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086818, 109, '2020-07-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086819, 109, '2020-07-28', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086820, 109, '2020-07-29', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086821, 109, '2020-07-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086822, 109, '2020-07-31', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086823, 109, '2020-08-01', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086824, 109, '2020-08-02', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086825, 109, '2020-08-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086826, 109, '2020-08-04', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086827, 109, '2020-08-05', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086828, 109, '2020-08-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086829, 109, '2020-08-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086830, 109, '2020-08-08', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086831, 109, '2020-08-09', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086832, 118, '2020-06-15', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086833, 118, '2020-06-16', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086834, 118, '2020-06-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086835, 118, '2020-06-18', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086836, 118, '2020-06-19', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086837, 118, '2020-06-20', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086838, 118, '2020-06-21', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086839, 118, '2020-06-22', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086840, 118, '2020-06-23', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086841, 118, '2020-06-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086842, 118, '2020-06-25', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086843, 118, '2020-06-26', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086844, 118, '2020-06-27', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086845, 118, '2020-06-28', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086846, 118, '2020-06-29', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086847, 118, '2020-06-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086848, 118, '2020-07-01', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086849, 118, '2020-07-02', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086850, 118, '2020-07-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086851, 118, '2020-07-04', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086852, 118, '2020-07-05', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086853, 118, '2020-07-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086854, 118, '2020-07-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086855, 118, '2020-07-08', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086856, 118, '2020-07-09', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086857, 118, '2020-07-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086858, 118, '2020-07-11', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086859, 118, '2020-07-12', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086860, 118, '2020-07-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086861, 118, '2020-07-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086862, 118, '2020-07-15', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086863, 118, '2020-07-16', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086864, 118, '2020-07-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086865, 118, '2020-07-18', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086866, 118, '2020-07-19', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086867, 118, '2020-07-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086868, 118, '2020-07-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086869, 118, '2020-07-22', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086870, 118, '2020-07-23', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086871, 118, '2020-07-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086872, 118, '2020-07-25', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086873, 118, '2020-07-26', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086874, 118, '2020-07-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086875, 118, '2020-07-28', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086876, 118, '2020-07-29', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086877, 118, '2020-07-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086878, 118, '2020-07-31', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086879, 118, '2020-08-01', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086880, 118, '2020-08-02', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086881, 118, '2020-08-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086882, 118, '2020-08-04', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086883, 118, '2020-08-05', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086884, 118, '2020-08-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086885, 118, '2020-08-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086886, 118, '2020-08-08', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086887, 118, '2020-08-09', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086888, 133, '2020-06-15', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086889, 133, '2020-06-16', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086890, 133, '2020-06-17', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086891, 133, '2020-06-18', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086892, 133, '2020-06-19', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086893, 133, '2020-06-20', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086894, 133, '2020-06-21', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086895, 133, '2020-06-22', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086896, 133, '2020-06-23', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086897, 133, '2020-06-24', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086898, 133, '2020-06-25', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086899, 133, '2020-06-26', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086900, 133, '2020-06-27', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086901, 133, '2020-06-28', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086902, 133, '2020-06-29', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086903, 133, '2020-06-30', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086904, 133, '2020-07-01', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086905, 133, '2020-07-02', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086906, 133, '2020-07-03', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086907, 133, '2020-07-04', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086908, 133, '2020-07-05', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086909, 133, '2020-07-06', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086910, 133, '2020-07-07', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086911, 133, '2020-07-08', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086912, 133, '2020-07-09', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086913, 133, '2020-07-10', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086914, 133, '2020-07-11', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086915, 133, '2020-07-12', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086916, 133, '2020-07-13', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086917, 133, '2020-07-14', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086918, 133, '2020-07-15', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086919, 133, '2020-07-16', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086920, 133, '2020-07-17', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086921, 133, '2020-07-18', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086922, 133, '2020-07-19', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086923, 133, '2020-07-20', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086924, 133, '2020-07-21', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086925, 133, '2020-07-22', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086926, 133, '2020-07-23', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086927, 133, '2020-07-24', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086928, 133, '2020-07-25', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086929, 133, '2020-07-26', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086930, 133, '2020-07-27', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086931, 133, '2020-07-28', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086932, 133, '2020-07-29', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086933, 133, '2020-07-30', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086934, 133, '2020-07-31', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086935, 133, '2020-08-01', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086936, 133, '2020-08-02', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086937, 133, '2020-08-03', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086938, 133, '2020-08-04', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086939, 133, '2020-08-05', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086940, 133, '2020-08-06', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086941, 133, '2020-08-07', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086942, 133, '2020-08-08', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086943, 133, '2020-08-09', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086944, 111, '2020-06-15', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086945, 111, '2020-06-16', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086946, 111, '2020-06-17', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086947, 111, '2020-06-18', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086948, 111, '2020-06-19', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086949, 111, '2020-06-20', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086950, 111, '2020-06-21', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086951, 111, '2020-06-22', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086952, 111, '2020-06-23', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086953, 111, '2020-06-24', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086954, 111, '2020-06-25', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086955, 111, '2020-06-26', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086956, 111, '2020-06-27', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086957, 111, '2020-06-28', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086958, 111, '2020-06-29', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086959, 111, '2020-06-30', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086960, 111, '2020-07-01', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086961, 111, '2020-07-02', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086962, 111, '2020-07-03', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1018904, 147, '2020-01-01', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1018905, 147, '2020-01-02', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1018906, 147, '2020-01-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1018907, 147, '2020-01-04', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1018908, 147, '2020-01-05', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1018909, 147, '2020-01-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1018910, 147, '2020-01-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1018911, 147, '2020-01-08', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1018912, 147, '2020-01-09', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1018913, 147, '2020-01-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1018914, 147, '2020-01-11', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1018915, 147, '2020-01-12', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1018916, 147, '2020-01-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086963, 111, '2020-07-04', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086964, 111, '2020-07-05', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086965, 111, '2020-07-06', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086966, 111, '2020-07-07', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086967, 111, '2020-07-08', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086968, 111, '2020-07-09', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1018955, 147, '2020-02-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1018956, 147, '2020-02-22', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1018957, 147, '2020-02-23', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086969, 111, '2020-07-10', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086970, 111, '2020-07-11', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086971, 111, '2020-07-12', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086972, 111, '2020-07-13', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086973, 111, '2020-07-14', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086974, 111, '2020-07-15', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086975, 111, '2020-07-16', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086976, 111, '2020-07-17', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086977, 111, '2020-07-18', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086978, 111, '2020-07-19', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086979, 111, '2020-07-20', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086980, 111, '2020-07-21', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086981, 111, '2020-07-22', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086982, 111, '2020-07-23', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086983, 111, '2020-07-24', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086984, 111, '2020-07-25', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086985, 111, '2020-07-26', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086986, 111, '2020-07-27', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086987, 111, '2020-07-28', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086988, 111, '2020-07-29', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086989, 111, '2020-07-30', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086990, 111, '2020-07-31', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086991, 111, '2020-08-01', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086992, 111, '2020-08-02', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086993, 111, '2020-08-03', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086994, 111, '2020-08-04', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086995, 111, '2020-08-05', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086996, 111, '2020-08-06', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086997, 111, '2020-08-07', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086998, 111, '2020-08-08', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086999, 111, '2020-08-09', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087000, 128, '2020-06-15', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087001, 128, '2020-06-16', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087002, 128, '2020-06-17', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087003, 128, '2020-06-18', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087004, 128, '2020-06-19', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087005, 128, '2020-06-20', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087006, 128, '2020-06-21', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087007, 128, '2020-06-22', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087008, 128, '2020-06-23', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087009, 128, '2020-06-24', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087010, 128, '2020-06-25', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087011, 128, '2020-06-26', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087012, 128, '2020-06-27', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087013, 128, '2020-06-28', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087014, 128, '2020-06-29', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087015, 128, '2020-06-30', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087016, 128, '2020-07-01', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087017, 128, '2020-07-02', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087018, 128, '2020-07-03', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087019, 128, '2020-07-04', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087020, 128, '2020-07-05', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087021, 128, '2020-07-06', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087022, 128, '2020-07-07', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087023, 128, '2020-07-08', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087024, 128, '2020-07-09', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087025, 128, '2020-07-10', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087026, 128, '2020-07-11', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087027, 128, '2020-07-12', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087028, 128, '2020-07-13', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087029, 128, '2020-07-14', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087030, 128, '2020-07-15', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087031, 128, '2020-07-16', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087032, 128, '2020-07-17', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087033, 128, '2020-07-18', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087034, 128, '2020-07-19', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087035, 128, '2020-07-20', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087036, 128, '2020-07-21', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087037, 128, '2020-07-22', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087038, 128, '2020-07-23', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087039, 128, '2020-07-24', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087040, 128, '2020-07-25', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087041, 128, '2020-07-26', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087042, 128, '2020-07-27', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087043, 128, '2020-07-28', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087044, 128, '2020-07-29', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087045, 128, '2020-07-30', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087046, 128, '2020-07-31', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087047, 128, '2020-08-01', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087048, 128, '2020-08-02', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087049, 128, '2020-08-03', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087050, 128, '2020-08-04', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087051, 128, '2020-08-05', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087052, 128, '2020-08-06', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087053, 128, '2020-08-07', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087054, 128, '2020-08-08', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087055, 128, '2020-08-09', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087056, 142, '2020-06-15', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087057, 142, '2020-06-16', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087058, 142, '2020-06-17', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087059, 142, '2020-06-18', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087060, 142, '2020-06-19', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087061, 142, '2020-06-20', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087062, 142, '2020-06-21', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087063, 142, '2020-06-22', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087064, 142, '2020-06-23', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087065, 142, '2020-06-24', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087066, 142, '2020-06-25', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087067, 142, '2020-06-26', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087068, 142, '2020-06-27', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087069, 142, '2020-06-28', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087070, 142, '2020-06-29', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087071, 142, '2020-06-30', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087072, 142, '2020-07-01', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087073, 142, '2020-07-02', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087074, 142, '2020-07-03', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087075, 142, '2020-07-04', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087076, 142, '2020-07-05', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087077, 142, '2020-07-06', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087078, 142, '2020-07-07', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087079, 142, '2020-07-08', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087080, 142, '2020-07-09', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087081, 142, '2020-07-10', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087082, 142, '2020-07-11', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087083, 142, '2020-07-12', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087084, 142, '2020-07-13', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087085, 142, '2020-07-14', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087086, 142, '2020-07-15', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087087, 142, '2020-07-16', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087088, 142, '2020-07-17', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087089, 142, '2020-07-18', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087090, 142, '2020-07-19', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087091, 142, '2020-07-20', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087092, 142, '2020-07-21', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087093, 142, '2020-07-22', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087094, 142, '2020-07-23', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087095, 142, '2020-07-24', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087096, 142, '2020-07-25', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087097, 142, '2020-07-26', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087098, 142, '2020-07-27', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087099, 142, '2020-07-28', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087100, 142, '2020-07-29', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087101, 142, '2020-07-30', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087102, 142, '2020-07-31', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087103, 142, '2020-08-01', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087104, 142, '2020-08-02', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087105, 142, '2020-08-03', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087106, 142, '2020-08-04', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087107, 142, '2020-08-05', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087108, 142, '2020-08-06', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087109, 142, '2020-08-07', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087110, 142, '2020-08-08', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087111, 142, '2020-08-09', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087112, 136, '2020-06-15', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087113, 136, '2020-06-16', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087114, 136, '2020-06-17', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087115, 136, '2020-06-18', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087116, 136, '2020-06-19', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087117, 136, '2020-06-20', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087118, 136, '2020-06-21', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087119, 136, '2020-06-22', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087120, 136, '2020-06-23', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087121, 136, '2020-06-24', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087122, 136, '2020-06-25', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087123, 136, '2020-06-26', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087124, 136, '2020-06-27', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087125, 136, '2020-06-28', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087126, 136, '2020-06-29', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087127, 136, '2020-06-30', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087128, 136, '2020-07-01', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087129, 136, '2020-07-02', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087130, 136, '2020-07-03', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087131, 136, '2020-07-04', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087132, 136, '2020-07-05', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087133, 136, '2020-07-06', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087134, 136, '2020-07-07', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087135, 136, '2020-07-08', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087136, 136, '2020-07-09', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087137, 136, '2020-07-10', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087138, 136, '2020-07-11', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087139, 136, '2020-07-12', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087140, 136, '2020-07-13', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087141, 136, '2020-07-14', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087142, 136, '2020-07-15', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087143, 136, '2020-07-16', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087144, 136, '2020-07-17', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087145, 136, '2020-07-18', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087146, 136, '2020-07-19', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087147, 136, '2020-07-20', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087148, 136, '2020-07-21', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087149, 136, '2020-07-22', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087150, 136, '2020-07-23', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087151, 136, '2020-07-24', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087152, 136, '2020-07-25', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087153, 136, '2020-07-26', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087154, 136, '2020-07-27', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087155, 136, '2020-07-28', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087156, 136, '2020-07-29', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087157, 136, '2020-07-30', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087158, 136, '2020-07-31', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087159, 136, '2020-08-01', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087160, 136, '2020-08-02', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087161, 136, '2020-08-03', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087162, 136, '2020-08-04', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087163, 136, '2020-08-05', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087164, 136, '2020-08-06', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087165, 136, '2020-08-07', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087166, 136, '2020-08-08', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087167, 136, '2020-08-09', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087168, 139, '2020-06-15', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087169, 139, '2020-06-16', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087170, 139, '2020-06-17', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087171, 139, '2020-06-18', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087172, 139, '2020-06-19', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087173, 139, '2020-06-20', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087174, 139, '2020-06-21', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087175, 139, '2020-06-22', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087176, 139, '2020-06-23', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087177, 139, '2020-06-24', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087178, 139, '2020-06-25', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087179, 139, '2020-06-26', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087180, 139, '2020-06-27', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087181, 139, '2020-06-28', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087182, 139, '2020-06-29', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087183, 139, '2020-06-30', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087184, 139, '2020-07-01', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087185, 139, '2020-07-02', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087186, 139, '2020-07-03', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087187, 139, '2020-07-04', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087188, 139, '2020-07-05', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087189, 139, '2020-07-06', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087190, 139, '2020-07-07', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087191, 139, '2020-07-08', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087192, 139, '2020-07-09', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087193, 139, '2020-07-10', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087194, 139, '2020-07-11', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087195, 139, '2020-07-12', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087196, 139, '2020-07-13', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087197, 139, '2020-07-14', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087198, 139, '2020-07-15', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087199, 139, '2020-07-16', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087200, 139, '2020-07-17', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087201, 139, '2020-07-18', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087202, 139, '2020-07-19', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087203, 139, '2020-07-20', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087204, 139, '2020-07-21', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087205, 139, '2020-07-22', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087206, 139, '2020-07-23', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087207, 139, '2020-07-24', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087208, 139, '2020-07-25', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087209, 139, '2020-07-26', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087210, 139, '2020-07-27', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087211, 139, '2020-07-28', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087212, 139, '2020-07-29', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087213, 139, '2020-07-30', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087214, 139, '2020-07-31', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087215, 139, '2020-08-01', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087216, 139, '2020-08-02', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087217, 139, '2020-08-03', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087218, 139, '2020-08-04', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087219, 139, '2020-08-05', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087220, 139, '2020-08-06', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087221, 139, '2020-08-07', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087222, 139, '2020-08-08', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087223, 139, '2020-08-09', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087224, 141, '2020-06-15', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087225, 141, '2020-06-16', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087226, 141, '2020-06-17', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087227, 141, '2020-06-18', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087228, 141, '2020-06-19', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087229, 141, '2020-06-20', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087230, 141, '2020-06-21', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087231, 141, '2020-06-22', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087232, 141, '2020-06-23', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087233, 141, '2020-06-24', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087234, 141, '2020-06-25', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087235, 141, '2020-06-26', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087236, 141, '2020-06-27', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087237, 141, '2020-06-28', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087238, 141, '2020-06-29', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087239, 141, '2020-06-30', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087240, 141, '2020-07-01', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087241, 141, '2020-07-02', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087242, 141, '2020-07-03', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087243, 141, '2020-07-04', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087244, 141, '2020-07-05', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087245, 141, '2020-07-06', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087246, 141, '2020-07-07', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087247, 141, '2020-07-08', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087248, 141, '2020-07-09', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087249, 141, '2020-07-10', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087250, 141, '2020-07-11', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087251, 141, '2020-07-12', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087252, 141, '2020-07-13', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087253, 141, '2020-07-14', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087254, 141, '2020-07-15', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087255, 141, '2020-07-16', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087256, 141, '2020-07-17', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087257, 141, '2020-07-18', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087258, 141, '2020-07-19', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087259, 141, '2020-07-20', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087260, 141, '2020-07-21', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087261, 141, '2020-07-22', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087262, 141, '2020-07-23', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087263, 141, '2020-07-24', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087264, 141, '2020-07-25', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087265, 141, '2020-07-26', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087266, 141, '2020-07-27', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087267, 141, '2020-07-28', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087268, 141, '2020-07-29', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087269, 141, '2020-07-30', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087270, 141, '2020-07-31', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087271, 141, '2020-08-01', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087272, 141, '2020-08-02', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087273, 141, '2020-08-03', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087274, 141, '2020-08-04', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087275, 141, '2020-08-05', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087276, 141, '2020-08-06', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087277, 141, '2020-08-07', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087278, 141, '2020-08-08', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087279, 141, '2020-08-09', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087280, 122, '2020-06-15', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087281, 122, '2020-06-16', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087282, 122, '2020-06-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087283, 122, '2020-06-18', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087284, 122, '2020-06-19', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087285, 122, '2020-06-20', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087286, 122, '2020-06-21', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087287, 122, '2020-06-22', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087288, 122, '2020-06-23', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087289, 122, '2020-06-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087290, 122, '2020-06-25', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087291, 122, '2020-06-26', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087292, 122, '2020-06-27', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087293, 122, '2020-06-28', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087294, 122, '2020-06-29', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087295, 122, '2020-06-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087296, 122, '2020-07-01', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087297, 122, '2020-07-02', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087298, 122, '2020-07-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087299, 122, '2020-07-04', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087300, 122, '2020-07-05', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087301, 122, '2020-07-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087302, 122, '2020-07-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087303, 122, '2020-07-08', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087304, 122, '2020-07-09', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087305, 122, '2020-07-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087306, 122, '2020-07-11', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087307, 122, '2020-07-12', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087308, 122, '2020-07-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087309, 122, '2020-07-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087310, 122, '2020-07-15', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087311, 122, '2020-07-16', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087312, 122, '2020-07-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087313, 122, '2020-07-18', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087314, 122, '2020-07-19', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087315, 122, '2020-07-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087316, 122, '2020-07-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087317, 122, '2020-07-22', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087318, 122, '2020-07-23', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087319, 122, '2020-07-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087320, 122, '2020-07-25', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087321, 122, '2020-07-26', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087322, 122, '2020-07-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087323, 122, '2020-07-28', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087324, 122, '2020-07-29', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087325, 122, '2020-07-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087326, 122, '2020-07-31', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087327, 122, '2020-08-01', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087328, 122, '2020-08-02', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087329, 122, '2020-08-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087330, 122, '2020-08-04', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087331, 122, '2020-08-05', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087332, 122, '2020-08-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087333, 122, '2020-08-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087334, 122, '2020-08-08', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087335, 122, '2020-08-09', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087336, 106, '2020-06-15', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '04:10:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '04:10:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087337, 106, '2020-06-16', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '04:10:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '04:10:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1021110, 131, '2019-12-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '04:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '04:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1021111, 131, '2019-12-31', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '04:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '04:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087338, 106, '2020-06-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '04:10:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '04:10:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087339, 106, '2020-06-18', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '04:10:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '04:10:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087340, 106, '2020-06-19', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '04:10:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087341, 106, '2020-06-20', NULL, NULL, NULL, NULL, NULL, '00:00:00', '04:10:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087342, 106, '2020-06-21', NULL, NULL, NULL, NULL, NULL, '00:00:00', '04:10:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087343, 106, '2020-06-22', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '04:10:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '04:10:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087344, 106, '2020-06-23', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '04:10:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '04:10:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087345, 106, '2020-06-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '04:10:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '04:10:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087346, 106, '2020-06-25', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '04:10:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '04:10:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087347, 106, '2020-06-26', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '04:10:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087348, 106, '2020-06-27', NULL, NULL, NULL, NULL, NULL, '00:00:00', '04:10:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087349, 106, '2020-06-28', NULL, NULL, NULL, NULL, NULL, '00:00:00', '04:10:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087350, 106, '2020-06-29', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '04:10:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '04:10:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087351, 106, '2020-06-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '04:10:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '04:10:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087352, 106, '2020-07-01', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '04:10:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '04:10:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087353, 106, '2020-07-02', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '04:10:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '04:10:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087354, 106, '2020-07-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '04:10:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087355, 106, '2020-07-04', NULL, NULL, NULL, NULL, NULL, '00:00:00', '04:10:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087356, 106, '2020-07-05', NULL, NULL, NULL, NULL, NULL, '00:00:00', '04:10:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087357, 106, '2020-07-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '04:10:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '04:10:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087358, 106, '2020-07-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '04:10:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '04:10:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087359, 106, '2020-07-08', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '04:10:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '04:10:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087360, 106, '2020-07-09', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '04:10:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '04:10:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087361, 106, '2020-07-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '04:10:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087362, 106, '2020-07-11', NULL, NULL, NULL, NULL, NULL, '00:00:00', '04:10:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087363, 106, '2020-07-12', NULL, NULL, NULL, NULL, NULL, '00:00:00', '04:10:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087364, 106, '2020-07-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '04:10:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '04:10:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087365, 106, '2020-07-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '04:10:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '04:10:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087366, 106, '2020-07-15', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '04:10:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '04:10:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087367, 106, '2020-07-16', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '04:10:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '04:10:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087368, 106, '2020-07-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '04:10:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087369, 106, '2020-07-18', NULL, NULL, NULL, NULL, NULL, '00:00:00', '04:10:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087370, 106, '2020-07-19', NULL, NULL, NULL, NULL, NULL, '00:00:00', '04:10:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087371, 106, '2020-07-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '04:10:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '04:10:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087372, 106, '2020-07-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '04:10:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '04:10:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087373, 106, '2020-07-22', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '04:10:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '04:10:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087374, 106, '2020-07-23', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '04:10:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '04:10:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087375, 106, '2020-07-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '04:10:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087376, 106, '2020-07-25', NULL, NULL, NULL, NULL, NULL, '00:00:00', '04:10:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087377, 106, '2020-07-26', NULL, NULL, NULL, NULL, NULL, '00:00:00', '04:10:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087378, 106, '2020-07-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '04:10:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '04:10:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087379, 106, '2020-07-28', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '04:10:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '04:10:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087380, 106, '2020-07-29', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '04:10:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '04:10:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087381, 106, '2020-07-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '04:10:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '04:10:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087382, 106, '2020-07-31', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '04:10:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087383, 106, '2020-08-01', NULL, NULL, NULL, NULL, NULL, '00:00:00', '04:10:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087384, 106, '2020-08-02', NULL, NULL, NULL, NULL, NULL, '00:00:00', '04:10:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087385, 106, '2020-08-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '04:10:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '04:10:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087386, 106, '2020-08-04', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '04:10:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '04:10:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087387, 106, '2020-08-05', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '04:10:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '04:10:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087388, 106, '2020-08-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '04:10:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '04:10:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087389, 106, '2020-08-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '04:10:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087390, 106, '2020-08-08', NULL, NULL, NULL, NULL, NULL, '00:00:00', '04:10:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087391, 106, '2020-08-09', NULL, NULL, NULL, NULL, NULL, '00:00:00', '04:10:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087547, 148, '2020-07-28', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087548, 148, '2020-07-29', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087549, 148, '2020-07-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087550, 148, '2020-07-31', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087551, 148, '2020-08-01', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087552, 148, '2020-08-02', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087553, 148, '2020-08-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087392, 110, '2020-06-15', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087393, 110, '2020-06-16', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087394, 110, '2020-06-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087395, 110, '2020-06-18', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087396, 110, '2020-06-19', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087397, 110, '2020-06-20', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087398, 110, '2020-06-21', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087399, 110, '2020-06-22', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087400, 110, '2020-06-23', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087401, 110, '2020-06-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087402, 110, '2020-06-25', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087403, 110, '2020-06-26', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087404, 110, '2020-06-27', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087405, 110, '2020-06-28', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087554, 148, '2020-08-04', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087555, 148, '2020-08-05', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087556, 148, '2020-08-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087571, 130, '2020-06-26', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087572, 130, '2020-06-27', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087573, 130, '2020-06-28', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087574, 130, '2020-06-29', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1021056, 131, '2020-01-01', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '04:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '04:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1021057, 131, '2020-01-02', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '04:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '04:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1021058, 131, '2020-01-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '04:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '04:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1021059, 131, '2020-01-04', NULL, NULL, NULL, NULL, NULL, '00:00:00', '04:00:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1021060, 131, '2020-01-05', NULL, NULL, NULL, NULL, NULL, '00:00:00', '04:00:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1021061, 131, '2020-01-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '04:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '04:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1021062, 131, '2020-01-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '04:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '04:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1021063, 131, '2020-01-08', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '04:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '04:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1021064, 131, '2020-01-09', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '04:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '04:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1021065, 131, '2020-01-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '04:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '04:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1021066, 131, '2020-01-11', NULL, NULL, NULL, NULL, NULL, '00:00:00', '04:00:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1021067, 131, '2020-01-12', NULL, NULL, NULL, NULL, NULL, '00:00:00', '04:00:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1021068, 131, '2020-01-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '04:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '04:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1021069, 131, '2020-01-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '04:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '04:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1021070, 131, '2020-01-15', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '04:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '04:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1021071, 131, '2020-01-16', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '04:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '04:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1021072, 131, '2020-01-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '04:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '04:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1021073, 131, '2020-01-18', NULL, NULL, NULL, NULL, NULL, '00:00:00', '04:00:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087575, 130, '2020-06-30', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1021084, 131, '2020-01-29', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '04:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '04:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1021085, 131, '2020-01-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '04:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '04:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1021086, 131, '2020-01-31', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '04:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '04:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1021087, 131, '2020-02-01', NULL, NULL, NULL, NULL, NULL, '00:00:00', '04:00:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1021088, 131, '2020-02-02', NULL, NULL, NULL, NULL, NULL, '00:00:00', '04:00:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1021089, 131, '2020-02-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '04:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '04:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1021090, 131, '2020-02-04', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '04:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '04:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1021091, 131, '2020-02-05', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '04:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '04:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1021092, 131, '2020-02-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '04:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '04:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1021093, 131, '2020-02-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '04:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '04:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1021094, 131, '2020-02-08', NULL, NULL, NULL, NULL, NULL, '00:00:00', '04:00:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1021095, 131, '2020-02-09', NULL, NULL, NULL, NULL, NULL, '00:00:00', '04:00:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1021096, 131, '2020-02-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '04:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '04:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1021097, 131, '2020-02-11', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '04:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '04:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1021098, 131, '2020-02-12', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '04:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '04:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1021099, 131, '2020-02-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '04:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '04:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1021100, 131, '2020-02-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '04:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '04:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087576, 130, '2020-07-01', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087406, 110, '2020-06-29', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087407, 110, '2020-06-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087408, 110, '2020-07-01', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087409, 110, '2020-07-02', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087410, 110, '2020-07-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087411, 110, '2020-07-04', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087412, 110, '2020-07-05', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087413, 110, '2020-07-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087414, 110, '2020-07-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087415, 110, '2020-07-08', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087416, 110, '2020-07-09', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087417, 110, '2020-07-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087418, 110, '2020-07-11', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087419, 110, '2020-07-12', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087577, 130, '2020-07-02', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087578, 130, '2020-07-03', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087579, 130, '2020-07-04', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087580, 130, '2020-07-05', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087581, 130, '2020-07-06', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087582, 130, '2020-07-07', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087583, 130, '2020-07-08', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087420, 110, '2020-07-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087421, 110, '2020-07-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087422, 110, '2020-07-15', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087423, 110, '2020-07-16', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087424, 110, '2020-07-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087425, 110, '2020-07-18', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087426, 110, '2020-07-19', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087427, 110, '2020-07-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087428, 110, '2020-07-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087429, 110, '2020-07-22', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087430, 110, '2020-07-23', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087431, 110, '2020-07-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087432, 110, '2020-07-25', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087433, 110, '2020-07-26', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087584, 130, '2020-07-09', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087599, 130, '2020-07-24', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087600, 130, '2020-07-25', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087601, 130, '2020-07-26', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087602, 130, '2020-07-27', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087603, 130, '2020-07-28', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087604, 130, '2020-07-29', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087434, 110, '2020-07-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087435, 110, '2020-07-28', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087436, 110, '2020-07-29', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087437, 110, '2020-07-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087438, 110, '2020-07-31', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087439, 110, '2020-08-01', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087440, 110, '2020-08-02', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087441, 110, '2020-08-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087442, 110, '2020-08-04', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087443, 110, '2020-08-05', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087444, 110, '2020-08-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087445, 110, '2020-08-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087446, 110, '2020-08-08', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087447, 110, '2020-08-09', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087605, 130, '2020-07-30', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087606, 130, '2020-07-31', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087607, 130, '2020-08-01', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087608, 130, '2020-08-02', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087609, 130, '2020-08-03', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087610, 130, '2020-08-04', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087611, 130, '2020-08-05', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087448, 145, '2020-06-15', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087449, 145, '2020-06-16', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087450, 145, '2020-06-17', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087451, 145, '2020-06-18', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087452, 145, '2020-06-19', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087453, 145, '2020-06-20', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087454, 145, '2020-06-21', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087455, 145, '2020-06-22', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087456, 145, '2020-06-23', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087457, 145, '2020-06-24', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087458, 145, '2020-06-25', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087459, 145, '2020-06-26', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087460, 145, '2020-06-27', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087461, 145, '2020-06-28', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087612, 130, '2020-08-06', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087627, 129, '2020-06-26', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087628, 129, '2020-06-27', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087629, 129, '2020-06-28', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087630, 129, '2020-06-29', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087631, 129, '2020-06-30', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087632, 129, '2020-07-01', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087462, 145, '2020-06-29', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087463, 145, '2020-06-30', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087464, 145, '2020-07-01', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087465, 145, '2020-07-02', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087466, 145, '2020-07-03', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087467, 145, '2020-07-04', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087468, 145, '2020-07-05', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087469, 145, '2020-07-06', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087470, 145, '2020-07-07', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087471, 145, '2020-07-08', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087472, 145, '2020-07-09', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087473, 145, '2020-07-10', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087474, 145, '2020-07-11', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087475, 145, '2020-07-12', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087633, 129, '2020-07-02', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087634, 129, '2020-07-03', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087635, 129, '2020-07-04', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087636, 129, '2020-07-05', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087637, 129, '2020-07-06', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087638, 129, '2020-07-07', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087639, 129, '2020-07-08', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087476, 145, '2020-07-13', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087477, 145, '2020-07-14', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087478, 145, '2020-07-15', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087479, 145, '2020-07-16', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087480, 145, '2020-07-17', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087481, 145, '2020-07-18', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087482, 145, '2020-07-19', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087483, 145, '2020-07-20', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087484, 145, '2020-07-21', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087485, 145, '2020-07-22', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087486, 145, '2020-07-23', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087487, 145, '2020-07-24', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087488, 145, '2020-07-25', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087489, 145, '2020-07-26', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087640, 129, '2020-07-09', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087655, 129, '2020-07-24', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087656, 129, '2020-07-25', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087657, 129, '2020-07-26', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087658, 129, '2020-07-27', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087659, 129, '2020-07-28', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087660, 129, '2020-07-29', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087490, 145, '2020-07-27', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087491, 145, '2020-07-28', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087492, 145, '2020-07-29', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087493, 145, '2020-07-30', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087494, 145, '2020-07-31', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087495, 145, '2020-08-01', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087496, 145, '2020-08-02', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087497, 145, '2020-08-03', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087498, 145, '2020-08-04', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087499, 145, '2020-08-05', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087500, 145, '2020-08-06', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087501, 145, '2020-08-07', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087502, 145, '2020-08-08', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087503, 145, '2020-08-09', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087661, 129, '2020-07-30', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087662, 129, '2020-07-31', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087663, 129, '2020-08-01', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087664, 129, '2020-08-02', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087665, 129, '2020-08-03', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087666, 129, '2020-08-04', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087667, 129, '2020-08-05', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087504, 148, '2020-06-15', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087505, 148, '2020-06-16', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087506, 148, '2020-06-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087507, 148, '2020-06-18', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087508, 148, '2020-06-19', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087509, 148, '2020-06-20', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087510, 148, '2020-06-21', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087511, 148, '2020-06-22', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087512, 148, '2020-06-23', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087513, 148, '2020-06-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087514, 148, '2020-06-25', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087515, 148, '2020-06-26', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087516, 148, '2020-06-27', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087517, 148, '2020-06-28', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087668, 129, '2020-08-06', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087683, 143, '2020-06-26', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087684, 143, '2020-06-27', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087685, 143, '2020-06-28', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087686, 143, '2020-06-29', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087687, 143, '2020-06-30', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087688, 143, '2020-07-01', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087518, 148, '2020-06-29', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087519, 148, '2020-06-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087520, 148, '2020-07-01', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087521, 148, '2020-07-02', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087522, 148, '2020-07-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087523, 148, '2020-07-04', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087524, 148, '2020-07-05', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087525, 148, '2020-07-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087526, 148, '2020-07-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087527, 148, '2020-07-08', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087528, 148, '2020-07-09', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087529, 148, '2020-07-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087530, 148, '2020-07-11', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087531, 148, '2020-07-12', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087689, 143, '2020-07-02', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087690, 143, '2020-07-03', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087691, 143, '2020-07-04', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087692, 143, '2020-07-05', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087693, 143, '2020-07-06', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087694, 143, '2020-07-07', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087695, 143, '2020-07-08', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087532, 148, '2020-07-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087533, 148, '2020-07-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087534, 148, '2020-07-15', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087535, 148, '2020-07-16', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087536, 148, '2020-07-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087537, 148, '2020-07-18', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087538, 148, '2020-07-19', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087539, 148, '2020-07-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087540, 148, '2020-07-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087541, 148, '2020-07-22', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087542, 148, '2020-07-23', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087543, 148, '2020-07-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087544, 148, '2020-07-25', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087545, 148, '2020-07-26', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087546, 148, '2020-07-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087557, 148, '2020-08-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087558, 148, '2020-08-08', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087559, 148, '2020-08-09', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087560, 130, '2020-06-15', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087561, 130, '2020-06-16', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087562, 130, '2020-06-17', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087563, 130, '2020-06-18', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087564, 130, '2020-06-19', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087565, 130, '2020-06-20', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087566, 130, '2020-06-21', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087567, 130, '2020-06-22', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087568, 130, '2020-06-23', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087569, 130, '2020-06-24', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087570, 130, '2020-06-25', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087585, 130, '2020-07-10', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087586, 130, '2020-07-11', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087587, 130, '2020-07-12', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087588, 130, '2020-07-13', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087589, 130, '2020-07-14', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087590, 130, '2020-07-15', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087591, 130, '2020-07-16', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087592, 130, '2020-07-17', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087593, 130, '2020-07-18', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087594, 130, '2020-07-19', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087595, 130, '2020-07-20', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087596, 130, '2020-07-21', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087597, 130, '2020-07-22', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087598, 130, '2020-07-23', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087613, 130, '2020-08-07', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087614, 130, '2020-08-08', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087615, 130, '2020-08-09', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087616, 129, '2020-06-15', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087617, 129, '2020-06-16', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087618, 129, '2020-06-17', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087619, 129, '2020-06-18', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087620, 129, '2020-06-19', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087621, 129, '2020-06-20', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087622, 129, '2020-06-21', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087623, 129, '2020-06-22', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087624, 129, '2020-06-23', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087625, 129, '2020-06-24', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087626, 129, '2020-06-25', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087641, 129, '2020-07-10', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087642, 129, '2020-07-11', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087643, 129, '2020-07-12', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087644, 129, '2020-07-13', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087645, 129, '2020-07-14', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087646, 129, '2020-07-15', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087647, 129, '2020-07-16', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087648, 129, '2020-07-17', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087649, 129, '2020-07-18', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087650, 129, '2020-07-19', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087651, 129, '2020-07-20', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087652, 129, '2020-07-21', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087653, 129, '2020-07-22', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087654, 129, '2020-07-23', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087669, 129, '2020-08-07', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087670, 129, '2020-08-08', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087671, 129, '2020-08-09', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087672, 143, '2020-06-15', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087673, 143, '2020-06-16', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087674, 143, '2020-06-17', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087675, 143, '2020-06-18', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087676, 143, '2020-06-19', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087677, 143, '2020-06-20', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087678, 143, '2020-06-21', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087679, 143, '2020-06-22', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087680, 143, '2020-06-23', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087681, 143, '2020-06-24', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087682, 143, '2020-06-25', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087696, 143, '2020-07-09', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087697, 143, '2020-07-10', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087698, 143, '2020-07-11', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087699, 143, '2020-07-12', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087700, 143, '2020-07-13', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087701, 143, '2020-07-14', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087702, 143, '2020-07-15', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087703, 143, '2020-07-16', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087704, 143, '2020-07-17', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087705, 143, '2020-07-18', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087706, 143, '2020-07-19', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087707, 143, '2020-07-20', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087708, 143, '2020-07-21', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087709, 143, '2020-07-22', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087710, 143, '2020-07-23', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087711, 143, '2020-07-24', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087712, 143, '2020-07-25', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087713, 143, '2020-07-26', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087714, 143, '2020-07-27', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087715, 143, '2020-07-28', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087716, 143, '2020-07-29', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087717, 143, '2020-07-30', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087718, 143, '2020-07-31', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087719, 143, '2020-08-01', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087720, 143, '2020-08-02', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087721, 143, '2020-08-03', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087722, 143, '2020-08-04', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087723, 143, '2020-08-05', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087724, 143, '2020-08-06', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087725, 143, '2020-08-07', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087726, 143, '2020-08-08', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087727, 143, '2020-08-09', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1023262, 104, '2019-12-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1023263, 104, '2019-12-31', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1023208, 104, '2020-01-01', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1023209, 104, '2020-01-02', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1023210, 104, '2020-01-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1023211, 104, '2020-01-04', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:00:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1023212, 104, '2020-01-05', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:00:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1023213, 104, '2020-01-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1023214, 104, '2020-01-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1023215, 104, '2020-01-08', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1023216, 104, '2020-01-09', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1023217, 104, '2020-01-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1023218, 104, '2020-01-11', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:00:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1023219, 104, '2020-01-12', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:00:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1023220, 104, '2020-01-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1023221, 104, '2020-01-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1023222, 104, '2020-01-15', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1023253, 104, '2020-02-15', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:00:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1023254, 104, '2020-02-16', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:00:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1023255, 104, '2020-02-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1023256, 104, '2020-02-18', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1023257, 104, '2020-02-19', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1023258, 104, '2020-02-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1023259, 104, '2020-02-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1023260, 104, '2020-02-22', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:00:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1023261, 104, '2020-02-23', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:00:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1025391, 151, '2020-02-01', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1025392, 151, '2020-02-02', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1025393, 151, '2020-02-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1025394, 151, '2020-02-04', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1025395, 151, '2020-02-05', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1025396, 151, '2020-02-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1025397, 151, '2020-02-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1025398, 151, '2020-02-08', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1025399, 151, '2020-02-09', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1025400, 151, '2020-02-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1025401, 151, '2020-02-11', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1025402, 151, '2020-02-12', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1025403, 151, '2020-02-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1025404, 151, '2020-02-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1025405, 151, '2020-02-15', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1025406, 151, '2020-02-16', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1025407, 151, '2020-02-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1025408, 151, '2020-02-18', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1027512, 138, '2020-01-01', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1027513, 138, '2020-01-02', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1027514, 138, '2020-01-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1027515, 138, '2020-01-04', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1027516, 138, '2020-01-05', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1027517, 138, '2020-01-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1027518, 138, '2020-01-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1027519, 138, '2020-01-08', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1027520, 138, '2020-01-09', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1027521, 138, '2020-01-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1027522, 138, '2020-01-11', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1027523, 138, '2020-01-12', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1027524, 138, '2020-01-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1027525, 138, '2020-01-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1027526, 138, '2020-01-15', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1027527, 138, '2020-01-16', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1027528, 138, '2020-01-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1027529, 138, '2020-01-18', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1027552, 138, '2020-02-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1027553, 138, '2020-02-11', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1027554, 138, '2020-02-12', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1027555, 138, '2020-02-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1027556, 138, '2020-02-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1027558, 138, '2020-02-16', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1027559, 138, '2020-02-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1027560, 138, '2020-02-18', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1027561, 138, '2020-02-19', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1027562, 138, '2020-02-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1027563, 138, '2020-02-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1027564, 138, '2020-02-22', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1027565, 138, '2020-02-23', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1029718, 105, '2019-12-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1029719, 105, '2019-12-31', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1029664, 105, '2020-01-01', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1029665, 105, '2020-01-02', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1029666, 105, '2020-01-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1029667, 105, '2020-01-04', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1029668, 105, '2020-01-05', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1029669, 105, '2020-01-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1029670, 105, '2020-01-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1029671, 105, '2020-01-08', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1029672, 105, '2020-01-09', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1029673, 105, '2020-01-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1029674, 105, '2020-01-11', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1029675, 105, '2020-01-12', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1029676, 105, '2020-01-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1029677, 105, '2020-01-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1029678, 105, '2020-01-15', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1029679, 105, '2020-01-16', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1029680, 105, '2020-01-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1029681, 105, '2020-01-18', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1029682, 105, '2020-01-19', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1029683, 105, '2020-01-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1029684, 105, '2020-01-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1029685, 105, '2020-01-22', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1029686, 105, '2020-01-23', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1029687, 105, '2020-01-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1029688, 105, '2020-01-25', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1029689, 105, '2020-01-26', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1029690, 105, '2020-01-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1029691, 105, '2020-01-28', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1029692, 105, '2020-01-29', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1029693, 105, '2020-01-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1029694, 105, '2020-01-31', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1029695, 105, '2020-02-01', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1029696, 105, '2020-02-02', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1029697, 105, '2020-02-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1029698, 105, '2020-02-04', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1031816, 134, '2020-01-01', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1031817, 134, '2020-01-02', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1031818, 134, '2020-01-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1031819, 134, '2020-01-04', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1031820, 134, '2020-01-05', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1031821, 134, '2020-01-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1031822, 134, '2020-01-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1031823, 134, '2020-01-08', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1031824, 134, '2020-01-09', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1031825, 134, '2020-01-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1031826, 134, '2020-01-11', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1031827, 134, '2020-01-12', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1031828, 134, '2020-01-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1031829, 134, '2020-01-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1031830, 134, '2020-01-15', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1031831, 134, '2020-01-16', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1031832, 134, '2020-01-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1031833, 134, '2020-01-18', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1031850, 134, '2020-02-04', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1031851, 134, '2020-02-05', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1031852, 134, '2020-02-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1031853, 134, '2020-02-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1031854, 134, '2020-02-08', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1031855, 134, '2020-02-09', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1031856, 134, '2020-02-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1031857, 134, '2020-02-11', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1031858, 134, '2020-02-12', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1031859, 134, '2020-02-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1031860, 134, '2020-02-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1031861, 134, '2020-02-15', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1031862, 134, '2020-02-16', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1031863, 134, '2020-02-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1031864, 134, '2020-02-18', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1031865, 134, '2020-02-19', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1031866, 134, '2020-02-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1031867, 134, '2020-02-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1033968, 144, '2020-01-01', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1033969, 144, '2020-01-02', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1033970, 144, '2020-01-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1033971, 144, '2020-01-04', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1033972, 144, '2020-01-05', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1033973, 144, '2020-01-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1033974, 144, '2020-01-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1033975, 144, '2020-01-08', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1033976, 144, '2020-01-09', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1033977, 144, '2020-01-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1033978, 144, '2020-01-11', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1033979, 144, '2020-01-12', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1033980, 144, '2020-01-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1033981, 144, '2020-01-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1033982, 144, '2020-01-15', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1033983, 144, '2020-01-16', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1033984, 144, '2020-01-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1033985, 144, '2020-01-18', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1033986, 144, '2020-01-19', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1033987, 144, '2020-01-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1033988, 144, '2020-01-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1033989, 144, '2020-01-22', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1033990, 144, '2020-01-23', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1033991, 144, '2020-01-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1033992, 144, '2020-01-25', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1033993, 144, '2020-01-26', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1033994, 144, '2020-01-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1036120, 102, '2020-01-01', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1036121, 102, '2020-01-02', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1036122, 102, '2020-01-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1036123, 102, '2020-01-04', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1036124, 102, '2020-01-05', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1036125, 102, '2020-01-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1036126, 102, '2020-01-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1036127, 102, '2020-01-08', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1036128, 102, '2020-01-09', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1036129, 102, '2020-01-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1036130, 102, '2020-01-11', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1036131, 102, '2020-01-12', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1036132, 102, '2020-01-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1036133, 102, '2020-01-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1036134, 102, '2020-01-15', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1036135, 102, '2020-01-16', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1036136, 102, '2020-01-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1036137, 102, '2020-01-18', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1036151, 102, '2020-02-01', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1036152, 102, '2020-02-02', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1036153, 102, '2020-02-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1036154, 102, '2020-02-04', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1036155, 102, '2020-02-05', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1036156, 102, '2020-02-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1036157, 102, '2020-02-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1036158, 102, '2020-02-08', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1036159, 102, '2020-02-09', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1036160, 102, '2020-02-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1036161, 102, '2020-02-11', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1036162, 102, '2020-02-12', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1036163, 102, '2020-02-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1036164, 102, '2020-02-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1036165, 102, '2020-02-15', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1036166, 102, '2020-02-16', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1036167, 102, '2020-02-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1036168, 102, '2020-02-18', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1038326, 109, '2019-12-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1038327, 109, '2019-12-31', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1038272, 109, '2020-01-01', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1038273, 109, '2020-01-02', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1038274, 109, '2020-01-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1038275, 109, '2020-01-04', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1038276, 109, '2020-01-05', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1038277, 109, '2020-01-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1038278, 109, '2020-01-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1038279, 109, '2020-01-08', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1038280, 109, '2020-01-09', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1038281, 109, '2020-01-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1038282, 109, '2020-01-11', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1038283, 109, '2020-01-12', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1038284, 109, '2020-01-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1038285, 109, '2020-01-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1038286, 109, '2020-01-15', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1038287, 109, '2020-01-16', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1040478, 118, '2019-12-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1040479, 118, '2019-12-31', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1040424, 118, '2020-01-01', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1040425, 118, '2020-01-02', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1040426, 118, '2020-01-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1040427, 118, '2020-01-04', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1040428, 118, '2020-01-05', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1040429, 118, '2020-01-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1040430, 118, '2020-01-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1040431, 118, '2020-01-08', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1040432, 118, '2020-01-09', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1040433, 118, '2020-01-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1040434, 118, '2020-01-11', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1040435, 118, '2020-01-12', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1040436, 118, '2020-01-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1040437, 118, '2020-01-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1040438, 118, '2020-01-15', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1040439, 118, '2020-01-16', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1040440, 118, '2020-01-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1040441, 118, '2020-01-18', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1040455, 118, '2020-02-01', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1040456, 118, '2020-02-02', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1040457, 118, '2020-02-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1040458, 118, '2020-02-04', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1040459, 118, '2020-02-05', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1040460, 118, '2020-02-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1040461, 118, '2020-02-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1040462, 118, '2020-02-08', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1040463, 118, '2020-02-09', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1040464, 118, '2020-02-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1040465, 118, '2020-02-11', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1040466, 118, '2020-02-12', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1040467, 118, '2020-02-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1040468, 118, '2020-02-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1040469, 118, '2020-02-15', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1040470, 118, '2020-02-16', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1040471, 118, '2020-02-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1040472, 118, '2020-02-18', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1042630, 133, '2019-12-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1042631, 133, '2019-12-31', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1042576, 133, '2020-01-01', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1042577, 133, '2020-01-02', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1042578, 133, '2020-01-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1042579, 133, '2020-01-04', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1042580, 133, '2020-01-05', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1042581, 133, '2020-01-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1042582, 133, '2020-01-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1042583, 133, '2020-01-08', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1042584, 133, '2020-01-09', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1042585, 133, '2020-01-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1042586, 133, '2020-01-11', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1042587, 133, '2020-01-12', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1044728, 111, '2020-01-01', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1044729, 111, '2020-01-02', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1044730, 111, '2020-01-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1044731, 111, '2020-01-04', '08:00:00', '10:40:00', NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '02:40:00', '00:00:00', NULL, 27, '02:40:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1044732, 111, '2020-01-05', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1044733, 111, '2020-01-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1044734, 111, '2020-01-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1044735, 111, '2020-01-08', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1044736, 111, '2020-01-09', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1044737, 111, '2020-01-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1044738, 111, '2020-01-11', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1044739, 111, '2020-01-12', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1044740, 111, '2020-01-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1044741, 111, '2020-01-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1044742, 111, '2020-01-15', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1044743, 111, '2020-01-16', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1044744, 111, '2020-01-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1044745, 111, '2020-01-18', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1044759, 111, '2020-02-01', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1044760, 111, '2020-02-02', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1044761, 111, '2020-02-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1044762, 111, '2020-02-04', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1044763, 111, '2020-02-05', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1044764, 111, '2020-02-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1044765, 111, '2020-02-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1044766, 111, '2020-02-08', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1044767, 111, '2020-02-09', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1044768, 111, '2020-02-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1044769, 111, '2020-02-11', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1044770, 111, '2020-02-12', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1044771, 111, '2020-02-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1044772, 111, '2020-02-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1044773, 111, '2020-02-15', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1044774, 111, '2020-02-16', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1044775, 111, '2020-02-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1044776, 111, '2020-02-18', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1046880, 128, '2020-01-01', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1046881, 128, '2020-01-02', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1046882, 128, '2020-01-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1046883, 128, '2020-01-04', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1046884, 128, '2020-01-05', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1046885, 128, '2020-01-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1046886, 128, '2020-01-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1046887, 128, '2020-01-08', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1046888, 128, '2020-01-09', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1046889, 128, '2020-01-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1046890, 128, '2020-01-11', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1046891, 128, '2020-01-12', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1046892, 128, '2020-01-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1046931, 128, '2020-02-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1046932, 128, '2020-02-22', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1046933, 128, '2020-02-23', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1049086, 142, '2019-12-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1049087, 142, '2019-12-31', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1049032, 142, '2020-01-01', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1049033, 142, '2020-01-02', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1049034, 142, '2020-01-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1049035, 142, '2020-01-04', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1049036, 142, '2020-01-05', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1049037, 142, '2020-01-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1049038, 142, '2020-01-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1049039, 142, '2020-01-08', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1049040, 142, '2020-01-09', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1049041, 142, '2020-01-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1049042, 142, '2020-01-11', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1049043, 142, '2020-01-12', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1049044, 142, '2020-01-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1049045, 142, '2020-01-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1049046, 142, '2020-01-15', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1049047, 142, '2020-01-16', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1049048, 142, '2020-01-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1049049, 142, '2020-01-18', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1049060, 142, '2020-01-29', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1049061, 142, '2020-01-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1049062, 142, '2020-01-31', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1049063, 142, '2020-02-01', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1049064, 142, '2020-02-02', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1049065, 142, '2020-02-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1049066, 142, '2020-02-04', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1049067, 142, '2020-02-05', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1049068, 142, '2020-02-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1049069, 142, '2020-02-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1049070, 142, '2020-02-08', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1049071, 142, '2020-02-09', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1049072, 142, '2020-02-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1049073, 142, '2020-02-11', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1049074, 142, '2020-02-12', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1049075, 142, '2020-02-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1049076, 142, '2020-02-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1051238, 136, '2019-12-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1051239, 136, '2019-12-31', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1051184, 136, '2020-01-01', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1051185, 136, '2020-01-02', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1051186, 136, '2020-01-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1051187, 136, '2020-01-04', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1051188, 136, '2020-01-05', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1051189, 136, '2020-01-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1051190, 136, '2020-01-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1051191, 136, '2020-01-08', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1051192, 136, '2020-01-09', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1051193, 136, '2020-01-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1051194, 136, '2020-01-11', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1051195, 136, '2020-01-12', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1051196, 136, '2020-01-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1051197, 136, '2020-01-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1051198, 136, '2020-01-15', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1051229, 136, '2020-02-15', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1051230, 136, '2020-02-16', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1051231, 136, '2020-02-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1051232, 136, '2020-02-18', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1051233, 136, '2020-02-19', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1051234, 136, '2020-02-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1051235, 136, '2020-02-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1051236, 136, '2020-02-22', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1051237, 136, '2020-02-23', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1053336, 140, '2020-01-01', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1053337, 140, '2020-01-02', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1053338, 140, '2020-01-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1053339, 140, '2020-01-04', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1053340, 140, '2020-01-05', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1053341, 140, '2020-01-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1053342, 140, '2020-01-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1053343, 140, '2020-01-08', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1053344, 140, '2020-01-09', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1053345, 140, '2020-01-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1053346, 140, '2020-01-11', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1053347, 140, '2020-01-12', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1053348, 140, '2020-01-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1053349, 140, '2020-01-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1053350, 140, '2020-01-15', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1053351, 140, '2020-01-16', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1053352, 140, '2020-01-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1053353, 140, '2020-01-18', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1053358, 140, '2020-01-23', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1053359, 140, '2020-01-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1053360, 140, '2020-01-25', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1053361, 140, '2020-01-26', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1053362, 140, '2020-01-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1053363, 140, '2020-01-28', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1053364, 140, '2020-01-29', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1053365, 140, '2020-01-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1053366, 140, '2020-01-31', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1055488, 139, '2020-01-01', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1055489, 139, '2020-01-02', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1055490, 139, '2020-01-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1055491, 139, '2020-01-04', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1055492, 139, '2020-01-05', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1055493, 139, '2020-01-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1055494, 139, '2020-01-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1055495, 139, '2020-01-08', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1055496, 139, '2020-01-09', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1055497, 139, '2020-01-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1055498, 139, '2020-01-11', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1055499, 139, '2020-01-12', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1055500, 139, '2020-01-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1055501, 139, '2020-01-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1055502, 139, '2020-01-15', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1055503, 139, '2020-01-16', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1055504, 139, '2020-01-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1055505, 139, '2020-01-18', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1055528, 139, '2020-02-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1055529, 139, '2020-02-11', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1055530, 139, '2020-02-12', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1055531, 139, '2020-02-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1055532, 139, '2020-02-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1055534, 139, '2020-02-16', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1055535, 139, '2020-02-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1055536, 139, '2020-02-18', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1055537, 139, '2020-02-19', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1055538, 139, '2020-02-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1055539, 139, '2020-02-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1055540, 139, '2020-02-22', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1055541, 139, '2020-02-23', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1057640, 141, '2020-01-01', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1057641, 141, '2020-01-02', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1057642, 141, '2020-01-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1057643, 141, '2020-01-04', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1057644, 141, '2020-01-05', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1057645, 141, '2020-01-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1057646, 141, '2020-01-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1057647, 141, '2020-01-08', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1057648, 141, '2020-01-09', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1057649, 141, '2020-01-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1057650, 141, '2020-01-11', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1057651, 141, '2020-01-12', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1057652, 141, '2020-01-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1057653, 141, '2020-01-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1057654, 141, '2020-01-15', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1057655, 141, '2020-01-16', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1057656, 141, '2020-01-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1057657, 141, '2020-01-18', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1057658, 141, '2020-01-19', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1057659, 141, '2020-01-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1057660, 141, '2020-01-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1057661, 141, '2020-01-22', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1057662, 141, '2020-01-23', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1057663, 141, '2020-01-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1057664, 141, '2020-01-25', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1057665, 141, '2020-01-26', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1057666, 141, '2020-01-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1057667, 141, '2020-01-28', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1057668, 141, '2020-01-29', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1057669, 141, '2020-01-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1057670, 141, '2020-01-31', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1057671, 141, '2020-02-01', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1057672, 141, '2020-02-02', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1057673, 141, '2020-02-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1057674, 141, '2020-02-04', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1059846, 122, '2019-12-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1059847, 122, '2019-12-31', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1059792, 122, '2020-01-01', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1059793, 122, '2020-01-02', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1059794, 122, '2020-01-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1059795, 122, '2020-01-04', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1059796, 122, '2020-01-05', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1059797, 122, '2020-01-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1059798, 122, '2020-01-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1059799, 122, '2020-01-08', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1059800, 122, '2020-01-09', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1059801, 122, '2020-01-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1059802, 122, '2020-01-11', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1059803, 122, '2020-01-12', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1059804, 122, '2020-01-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1059805, 122, '2020-01-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1059806, 122, '2020-01-15', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1059807, 122, '2020-01-16', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1059808, 122, '2020-01-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1059809, 122, '2020-01-18', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1059826, 122, '2020-02-04', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1059827, 122, '2020-02-05', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1059828, 122, '2020-02-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1059829, 122, '2020-02-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1059830, 122, '2020-02-08', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1059831, 122, '2020-02-09', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1059832, 122, '2020-02-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1059833, 122, '2020-02-11', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1059834, 122, '2020-02-12', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1059835, 122, '2020-02-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1059836, 122, '2020-02-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1059837, 122, '2020-02-15', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1059838, 122, '2020-02-16', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1059839, 122, '2020-02-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1059840, 122, '2020-02-18', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1059841, 122, '2020-02-19', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1059842, 122, '2020-02-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1059843, 122, '2020-02-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1061998, 106, '2019-12-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '04:10:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '04:10:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1061999, 106, '2019-12-31', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '04:10:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '04:10:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1061944, 106, '2020-01-01', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '04:10:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '04:10:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1061945, 106, '2020-01-02', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '04:10:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '04:10:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1061946, 106, '2020-01-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '04:10:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1061947, 106, '2020-01-04', NULL, NULL, NULL, NULL, NULL, '00:00:00', '04:10:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1061948, 106, '2020-01-05', NULL, NULL, NULL, NULL, NULL, '00:00:00', '04:10:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1061949, 106, '2020-01-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '04:10:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '04:10:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1061950, 106, '2020-01-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '04:10:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '04:10:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1061951, 106, '2020-01-08', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '04:10:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '04:10:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1061952, 106, '2020-01-09', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '04:10:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '04:10:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1061953, 106, '2020-01-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '04:10:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1061954, 106, '2020-01-11', NULL, NULL, NULL, NULL, NULL, '00:00:00', '04:10:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1061955, 106, '2020-01-12', NULL, NULL, NULL, NULL, NULL, '00:00:00', '04:10:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1061956, 106, '2020-01-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '04:10:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '04:10:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1061957, 106, '2020-01-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '04:10:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '04:10:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1061958, 106, '2020-01-15', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '04:10:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '04:10:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1061959, 106, '2020-01-16', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '04:10:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '04:10:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1061960, 106, '2020-01-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '04:10:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1061961, 106, '2020-01-18', NULL, NULL, NULL, NULL, NULL, '00:00:00', '04:10:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1061962, 106, '2020-01-19', NULL, NULL, NULL, NULL, NULL, '00:00:00', '04:10:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1061963, 106, '2020-01-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '04:10:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '04:10:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1061964, 106, '2020-01-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '04:10:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '04:10:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1061965, 106, '2020-01-22', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '04:10:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '04:10:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1061966, 106, '2020-01-23', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '04:10:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '04:10:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1061967, 106, '2020-01-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '04:10:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1061968, 106, '2020-01-25', NULL, NULL, NULL, NULL, NULL, '00:00:00', '04:10:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1061969, 106, '2020-01-26', NULL, NULL, NULL, NULL, NULL, '00:00:00', '04:10:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1061970, 106, '2020-01-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '04:10:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '04:10:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1064096, 110, '2020-01-01', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1064097, 110, '2020-01-02', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1064098, 110, '2020-01-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1064099, 110, '2020-01-04', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1064100, 110, '2020-01-05', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1064101, 110, '2020-01-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1064102, 110, '2020-01-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1064103, 110, '2020-01-08', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1064104, 110, '2020-01-09', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1064105, 110, '2020-01-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1064106, 110, '2020-01-11', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1064107, 110, '2020-01-12', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1064108, 110, '2020-01-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1064109, 110, '2020-01-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1064110, 110, '2020-01-15', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1064111, 110, '2020-01-16', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1064112, 110, '2020-01-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1064113, 110, '2020-01-18', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1064127, 110, '2020-02-01', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1064128, 110, '2020-02-02', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1064129, 110, '2020-02-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1064130, 110, '2020-02-04', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1064131, 110, '2020-02-05', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1064132, 110, '2020-02-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1064133, 110, '2020-02-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1064134, 110, '2020-02-08', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1064135, 110, '2020-02-09', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1064136, 110, '2020-02-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1064137, 110, '2020-02-11', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1064138, 110, '2020-02-12', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1064139, 110, '2020-02-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1064140, 110, '2020-02-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1064141, 110, '2020-02-15', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1064142, 110, '2020-02-16', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1064143, 110, '2020-02-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1064144, 110, '2020-02-18', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1066248, 145, '2020-01-01', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1066249, 145, '2020-01-02', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1066250, 145, '2020-01-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1066251, 145, '2020-01-04', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1066252, 145, '2020-01-05', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1066253, 145, '2020-01-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1066254, 145, '2020-01-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1066255, 145, '2020-01-08', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1066256, 145, '2020-01-09', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1066257, 145, '2020-01-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1066258, 145, '2020-01-11', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1066259, 145, '2020-01-12', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1066260, 145, '2020-01-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1066261, 145, '2020-01-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1066262, 145, '2020-01-15', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1066263, 145, '2020-01-16', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1068400, 148, '2020-01-01', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1068401, 148, '2020-01-02', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1068402, 148, '2020-01-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1068403, 148, '2020-01-04', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1068404, 148, '2020-01-05', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1068405, 148, '2020-01-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1068406, 148, '2020-01-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1068407, 148, '2020-01-08', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1068408, 148, '2020-01-09', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1068409, 148, '2020-01-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1068410, 148, '2020-01-11', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1068411, 148, '2020-01-12', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1068412, 148, '2020-01-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1068413, 148, '2020-01-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1068414, 148, '2020-01-15', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1068415, 148, '2020-01-16', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1068416, 148, '2020-01-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1068417, 148, '2020-01-18', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1068431, 148, '2020-02-01', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1068432, 148, '2020-02-02', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1068433, 148, '2020-02-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1068434, 148, '2020-02-04', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1068435, 148, '2020-02-05', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1068436, 148, '2020-02-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1068437, 148, '2020-02-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1068438, 148, '2020-02-08', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1068439, 148, '2020-02-09', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1068440, 148, '2020-02-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1068441, 148, '2020-02-11', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1068442, 148, '2020-02-12', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1068443, 148, '2020-02-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1068444, 148, '2020-02-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1068445, 148, '2020-02-15', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1068446, 148, '2020-02-16', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1068447, 148, '2020-02-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1068448, 148, '2020-02-18', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1070606, 130, '2019-12-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1070607, 130, '2019-12-31', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1070552, 130, '2020-01-01', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1070553, 130, '2020-01-02', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1070554, 130, '2020-01-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1070555, 130, '2020-01-04', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1070556, 130, '2020-01-05', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1070557, 130, '2020-01-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1070558, 130, '2020-01-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1070559, 130, '2020-01-08', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1070560, 130, '2020-01-09', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1070561, 130, '2020-01-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1070562, 130, '2020-01-11', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1070563, 130, '2020-01-12', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (914518, 129, '2019-12-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (914519, 129, '2019-12-31', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (914464, 129, '2020-01-01', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (914465, 129, '2020-01-02', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (914466, 129, '2020-01-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (914467, 129, '2020-01-04', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (914468, 129, '2020-01-05', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (914469, 129, '2020-01-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (914470, 129, '2020-01-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (914471, 129, '2020-01-08', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (914472, 129, '2020-01-09', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (914473, 129, '2020-01-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (914474, 129, '2020-01-11', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (914475, 129, '2020-01-12', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (914476, 129, '2020-01-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (914477, 129, '2020-01-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (914478, 129, '2020-01-15', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (914481, 129, '2020-01-18', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (914479, 129, '2020-01-16', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (914480, 129, '2020-01-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (914482, 129, '2020-01-19', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (914483, 129, '2020-01-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (914484, 129, '2020-01-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (914485, 129, '2020-01-22', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (914486, 129, '2020-01-23', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (914487, 129, '2020-01-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (914488, 129, '2020-01-25', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (914489, 129, '2020-01-26', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (914517, 129, '2020-02-23', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1074856, 143, '2020-01-01', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1074857, 143, '2020-01-02', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1074858, 143, '2020-01-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1074859, 143, '2020-01-04', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1074860, 143, '2020-01-05', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1074861, 143, '2020-01-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1074862, 143, '2020-01-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1074863, 143, '2020-01-08', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1074864, 143, '2020-01-09', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1074865, 143, '2020-01-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1074866, 143, '2020-01-11', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1074867, 143, '2020-01-12', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1074868, 143, '2020-01-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1074869, 143, '2020-01-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1074870, 143, '2020-01-15', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1074871, 143, '2020-01-16', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1074872, 143, '2020-01-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1074873, 143, '2020-01-18', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1074887, 143, '2020-02-01', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1074888, 143, '2020-02-02', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1074889, 143, '2020-02-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1074890, 143, '2020-02-04', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1074891, 143, '2020-02-05', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1074892, 143, '2020-02-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1074893, 143, '2020-02-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1074894, 143, '2020-02-08', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1074895, 143, '2020-02-09', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1074896, 143, '2020-02-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1074897, 143, '2020-02-11', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1074898, 143, '2020-02-12', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1074899, 143, '2020-02-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1074900, 143, '2020-02-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1074901, 143, '2020-02-15', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1074902, 143, '2020-02-16', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1074903, 143, '2020-02-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1074904, 143, '2020-02-18', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); -- -- Data for Name: staffreportperiodweeks; Type: TABLE DATA; Schema: portanova; Owner: - -- -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5512, 146, 27, 2020, 1, '33:20:00', '24:00:00', '00:00:00', '00:00:00', '00:00:00', '-09:20:00', '2019-12-30', NULL, '24:00:00', 5, 5, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5513, 146, 27, 2020, 2, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-06', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5514, 146, 27, 2020, 3, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-13', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5515, 146, 27, 2020, 4, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-20', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5516, 146, 27, 2020, 5, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-27', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5517, 146, 27, 2020, 6, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-03', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5518, 146, 27, 2020, 7, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-10', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5519, 146, 27, 2020, 8, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-17', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5520, 132, 27, 2020, 1, '33:20:00', '24:00:00', '00:00:00', '00:00:00', '00:00:00', '-09:20:00', '2019-12-30', NULL, '24:00:00', 5, 5, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5521, 132, 27, 2020, 2, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-06', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5522, 132, 27, 2020, 3, '20:00:00', '24:00:00', '00:00:00', '00:00:00', '00:00:00', '04:00:00', '2020-01-13', NULL, '24:00:00', 3, 3, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6142, 146, 29, 2020, 9, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-24', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6143, 146, 29, 2020, 10, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-02', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6144, 146, 29, 2020, 11, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-09', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6145, 146, 29, 2020, 12, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-16', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6146, 146, 29, 2020, 13, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-23', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6147, 146, 29, 2020, 14, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-30', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6148, 146, 29, 2020, 15, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-04-06', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6149, 146, 29, 2020, 16, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-04-13', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5523, 115, 27, 2020, 1, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2019-12-30', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5524, 115, 27, 2020, 2, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-06', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5525, 115, 27, 2020, 3, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-13', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5526, 115, 27, 2020, 4, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-20', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5527, 115, 27, 2020, 5, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-27', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5528, 115, 27, 2020, 6, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-03', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5529, 115, 27, 2020, 7, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-10', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5530, 115, 27, 2020, 8, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-17', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6150, 115, 29, 2020, 9, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-24', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6151, 115, 29, 2020, 10, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-02', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5531, 114, 27, 2020, 1, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2019-12-30', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5532, 114, 27, 2020, 2, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-06', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5533, 114, 27, 2020, 3, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-13', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5534, 114, 27, 2020, 4, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-20', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6152, 115, 29, 2020, 11, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-09', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6153, 115, 29, 2020, 12, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-16', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6154, 115, 29, 2020, 13, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-23', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6155, 115, 29, 2020, 14, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-30', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6156, 115, 29, 2020, 15, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-04-06', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6157, 115, 29, 2020, 16, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-04-13', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5535, 114, 27, 2020, 5, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-27', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5536, 114, 27, 2020, 6, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-03', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5537, 114, 27, 2020, 7, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-10', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5538, 114, 27, 2020, 8, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-17', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5539, 112, 27, 2020, 1, '33:20:00', '24:00:00', '00:00:00', '00:00:00', '00:00:00', '-09:20:00', '2019-12-30', NULL, '24:00:00', 5, 5, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5540, 112, 27, 2020, 2, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-06', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5541, 112, 27, 2020, 3, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-13', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5542, 112, 27, 2020, 4, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-20', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5543, 112, 27, 2020, 5, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-27', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5544, 112, 27, 2020, 6, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-03', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5545, 112, 27, 2020, 7, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-10', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5546, 112, 27, 2020, 8, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-17', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6158, 114, 29, 2020, 9, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-24', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6159, 114, 29, 2020, 10, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-02', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6160, 114, 29, 2020, 11, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-09', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6161, 114, 29, 2020, 12, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-16', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6162, 114, 29, 2020, 13, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-23', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6163, 114, 29, 2020, 14, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-30', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6164, 114, 29, 2020, 15, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-04-06', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6165, 114, 29, 2020, 16, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-04-13', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5547, 108, 27, 2020, 2, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-06', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5548, 108, 27, 2020, 3, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-13', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5549, 108, 27, 2020, 4, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-20', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5550, 108, 27, 2020, 5, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-27', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5551, 108, 27, 2020, 6, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-03', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5552, 108, 27, 2020, 7, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-10', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5553, 108, 27, 2020, 8, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-17', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6166, 112, 29, 2020, 9, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-24', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6167, 112, 29, 2020, 10, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-02', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6168, 112, 29, 2020, 11, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-09', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6169, 112, 29, 2020, 12, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-16', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6170, 112, 29, 2020, 13, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-23', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6171, 112, 29, 2020, 14, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-30', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6172, 112, 29, 2020, 15, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-04-06', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6173, 112, 29, 2020, 16, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-04-13', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5554, 135, 27, 2020, 1, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2019-12-30', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5555, 135, 27, 2020, 2, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-06', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5556, 135, 27, 2020, 3, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-13', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5557, 135, 27, 2020, 4, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-20', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5558, 135, 27, 2020, 5, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-27', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5559, 135, 27, 2020, 6, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-03', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5560, 135, 27, 2020, 7, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-10', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5561, 135, 27, 2020, 8, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-17', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6174, 108, 29, 2020, 9, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-24', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6175, 108, 29, 2020, 10, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-02', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5562, 127, 27, 2020, 1, '33:20:00', '24:00:00', '00:00:00', '00:00:00', '00:00:00', '-09:20:00', '2019-12-30', NULL, '24:00:00', 5, 5, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5563, 127, 27, 2020, 2, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-06', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5564, 127, 27, 2020, 3, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-13', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5565, 127, 27, 2020, 4, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-20', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5566, 127, 27, 2020, 5, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-27', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5567, 127, 27, 2020, 6, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-03', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6176, 108, 29, 2020, 11, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-09', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6177, 108, 29, 2020, 12, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-16', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6178, 108, 29, 2020, 13, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-23', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6179, 108, 29, 2020, 14, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-30', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6180, 108, 29, 2020, 15, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-04-06', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6181, 108, 29, 2020, 16, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-04-13', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5568, 127, 27, 2020, 7, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-10', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5569, 127, 27, 2020, 8, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-17', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5570, 149, 27, 2020, 1, '33:20:00', '24:00:00', '00:00:00', '00:00:00', '00:00:00', '-09:20:00', '2019-12-30', NULL, '24:00:00', 5, 5, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5571, 149, 27, 2020, 2, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-06', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5572, 149, 27, 2020, 3, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-13', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5573, 149, 27, 2020, 4, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-20', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5574, 149, 27, 2020, 5, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-27', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5575, 149, 27, 2020, 6, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-03', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5576, 149, 27, 2020, 7, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-10', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5577, 149, 27, 2020, 8, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-17', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6182, 135, 29, 2020, 9, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-24', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6183, 135, 29, 2020, 10, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-02', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6184, 135, 29, 2020, 11, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-09', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6185, 135, 29, 2020, 12, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-16', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6186, 135, 29, 2020, 13, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-23', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6187, 135, 29, 2020, 14, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-30', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5578, 103, 27, 2020, 1, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2019-12-30', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5579, 103, 27, 2020, 2, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-06', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5580, 103, 27, 2020, 3, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-13', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6188, 135, 29, 2020, 15, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-04-06', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5581, 103, 27, 2020, 4, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-20', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5582, 103, 27, 2020, 5, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-27', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5583, 103, 27, 2020, 6, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-03', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5584, 103, 27, 2020, 7, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-10', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5585, 103, 27, 2020, 8, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-17', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6189, 135, 29, 2020, 16, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-04-13', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5586, 121, 27, 2020, 1, '33:20:00', '24:00:00', '00:00:00', '00:00:00', '00:00:00', '-09:20:00', '2019-12-30', NULL, '24:00:00', 5, 5, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5587, 121, 27, 2020, 2, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-06', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6190, 127, 29, 2020, 9, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-24', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6191, 127, 29, 2020, 10, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-02', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6192, 127, 29, 2020, 11, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-09', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6193, 127, 29, 2020, 12, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-16', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6194, 127, 29, 2020, 13, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-23', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6195, 127, 29, 2020, 14, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-30', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6196, 127, 29, 2020, 15, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-04-06', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6197, 127, 29, 2020, 16, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-04-13', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5588, 121, 27, 2020, 3, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-13', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5589, 121, 27, 2020, 4, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-20', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5590, 121, 27, 2020, 5, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-27', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5591, 121, 27, 2020, 6, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-03', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5592, 121, 27, 2020, 7, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-10', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5593, 121, 27, 2020, 8, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-17', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5594, 125, 27, 2020, 1, '20:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '20:00:00', '2019-12-30', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5595, 125, 27, 2020, 2, '20:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '20:00:00', '2020-01-06', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5596, 125, 27, 2020, 3, '20:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '20:00:00', '2020-01-13', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5597, 125, 27, 2020, 4, '20:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '20:00:00', '2020-01-20', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5598, 125, 27, 2020, 5, '20:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '20:00:00', '2020-01-27', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5599, 125, 27, 2020, 6, '20:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '20:00:00', '2020-02-03', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6198, 149, 29, 2020, 9, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-24', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6199, 149, 29, 2020, 10, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-02', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6200, 149, 29, 2020, 11, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-09', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6201, 149, 29, 2020, 12, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-16', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6202, 149, 29, 2020, 13, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-23', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5600, 125, 27, 2020, 7, '20:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '20:00:00', '2020-02-10', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6203, 149, 29, 2020, 14, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-30', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6204, 149, 29, 2020, 15, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-04-06', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6205, 149, 29, 2020, 16, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-04-13', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5601, 125, 27, 2020, 8, '20:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '20:00:00', '2020-02-17', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5602, 119, 27, 2020, 1, '33:20:00', '24:00:00', '00:00:00', '00:00:00', '00:00:00', '-09:20:00', '2019-12-30', NULL, '24:00:00', 5, 5, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5603, 119, 27, 2020, 2, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-06', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5604, 119, 27, 2020, 3, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-13', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5605, 119, 27, 2020, 4, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-20', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5606, 119, 27, 2020, 5, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-27', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5607, 119, 27, 2020, 6, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-03', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5608, 119, 27, 2020, 7, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-10', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5609, 119, 27, 2020, 8, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-17', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6206, 103, 29, 2020, 9, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-24', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6207, 103, 29, 2020, 10, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-02', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6208, 103, 29, 2020, 11, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-09', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6209, 103, 29, 2020, 12, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-16', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6210, 103, 29, 2020, 13, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-23', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6211, 103, 29, 2020, 14, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-30', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6212, 103, 29, 2020, 15, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-04-06', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6213, 103, 29, 2020, 16, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-04-13', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5610, 113, 27, 2020, 1, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2019-12-30', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5611, 113, 27, 2020, 2, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-06', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5612, 113, 27, 2020, 3, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-13', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5613, 113, 27, 2020, 4, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-20', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5614, 113, 27, 2020, 5, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-27', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5615, 113, 27, 2020, 6, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-03', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5616, 113, 27, 2020, 7, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-10', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5617, 113, 27, 2020, 8, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-17', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5618, 147, 27, 2020, 1, '33:20:00', '24:00:00', '00:00:00', '00:00:00', '00:00:00', '-09:20:00', '2019-12-30', NULL, '24:00:00', 5, 5, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5619, 147, 27, 2020, 2, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-06', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6214, 121, 29, 2020, 9, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-24', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6215, 121, 29, 2020, 10, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-02', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6216, 121, 29, 2020, 11, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-09', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6217, 121, 29, 2020, 12, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-16', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6218, 121, 29, 2020, 13, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-23', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6219, 121, 29, 2020, 14, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-30', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6220, 121, 29, 2020, 15, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-04-06', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6221, 121, 29, 2020, 16, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-04-13', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5620, 147, 27, 2020, 3, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-13', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5621, 147, 27, 2020, 4, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-20', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5622, 147, 27, 2020, 5, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-27', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5623, 147, 27, 2020, 6, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-03', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5624, 147, 27, 2020, 7, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-10', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5625, 147, 27, 2020, 8, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-17', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5626, 131, 27, 2020, 1, '20:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '20:00:00', '2019-12-30', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5627, 131, 27, 2020, 2, '20:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '20:00:00', '2020-01-06', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5628, 131, 27, 2020, 3, '20:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '20:00:00', '2020-01-13', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5629, 131, 27, 2020, 4, '20:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '20:00:00', '2020-01-20', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5630, 131, 27, 2020, 5, '20:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '20:00:00', '2020-01-27', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5631, 131, 27, 2020, 6, '20:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '20:00:00', '2020-02-03', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5632, 131, 27, 2020, 7, '20:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '20:00:00', '2020-02-10', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6222, 125, 29, 2020, 9, '20:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '20:00:00', '2020-02-24', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6223, 125, 29, 2020, 10, '20:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '20:00:00', '2020-03-02', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6224, 125, 29, 2020, 11, '20:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '20:00:00', '2020-03-09', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6225, 125, 29, 2020, 12, '20:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '20:00:00', '2020-03-16', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6226, 125, 29, 2020, 13, '20:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '20:00:00', '2020-03-23', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6227, 125, 29, 2020, 14, '20:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '20:00:00', '2020-03-30', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6228, 125, 29, 2020, 15, '20:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '20:00:00', '2020-04-06', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6229, 125, 29, 2020, 16, '20:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '20:00:00', '2020-04-13', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5633, 131, 27, 2020, 8, '20:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '20:00:00', '2020-02-17', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5634, 104, 27, 2020, 1, '30:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '10:00:00', '2019-12-30', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5635, 104, 27, 2020, 2, '30:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '10:00:00', '2020-01-06', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5636, 104, 27, 2020, 3, '30:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '10:00:00', '2020-01-13', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5637, 104, 27, 2020, 4, '30:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '10:00:00', '2020-01-20', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5638, 104, 27, 2020, 5, '30:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '10:00:00', '2020-01-27', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5639, 104, 27, 2020, 6, '30:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '10:00:00', '2020-02-03', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5640, 104, 27, 2020, 7, '30:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '10:00:00', '2020-02-10', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5641, 104, 27, 2020, 8, '30:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '10:00:00', '2020-02-17', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5642, 151, 27, 2020, 5, '13:20:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '-13:20:00', '2020-01-27', NULL, '00:00:00', 2, 2, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6230, 119, 29, 2020, 9, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-24', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6231, 119, 29, 2020, 10, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-02', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6232, 119, 29, 2020, 11, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-09', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6233, 119, 29, 2020, 12, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-16', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6234, 119, 29, 2020, 13, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-23', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6235, 119, 29, 2020, 14, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-30', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6236, 119, 29, 2020, 15, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-04-06', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6237, 119, 29, 2020, 16, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-04-13', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6238, 113, 29, 2020, 9, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-24', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6239, 113, 29, 2020, 10, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-02', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5643, 151, 27, 2020, 6, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-03', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5644, 151, 27, 2020, 7, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-10', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5645, 151, 27, 2020, 8, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-17', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5646, 138, 27, 2020, 1, '33:20:00', '24:00:00', '00:00:00', '00:00:00', '00:00:00', '-09:20:00', '2019-12-30', NULL, '24:00:00', 5, 5, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5647, 138, 27, 2020, 2, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-06', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5648, 138, 27, 2020, 3, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-13', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5649, 138, 27, 2020, 4, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-20', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5650, 138, 27, 2020, 5, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-27', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5651, 138, 27, 2020, 6, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-03', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5652, 138, 27, 2020, 7, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-10', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5653, 138, 27, 2020, 8, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-17', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6240, 113, 29, 2020, 11, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-09', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6241, 113, 29, 2020, 12, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-16', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6242, 113, 29, 2020, 13, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-23', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6243, 113, 29, 2020, 14, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-30', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6244, 113, 29, 2020, 15, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-04-06', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6245, 113, 29, 2020, 16, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-04-13', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5654, 105, 27, 2020, 1, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2019-12-30', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5655, 105, 27, 2020, 2, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-06', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5656, 105, 27, 2020, 3, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-13', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5657, 105, 27, 2020, 4, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-20', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5658, 105, 27, 2020, 5, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-27', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5659, 105, 27, 2020, 6, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-03', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5660, 105, 27, 2020, 7, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-10', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5661, 105, 27, 2020, 8, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-17', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6246, 147, 29, 2020, 9, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-24', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6247, 147, 29, 2020, 10, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-02', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6248, 147, 29, 2020, 11, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-09', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6249, 147, 29, 2020, 12, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-16', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6250, 147, 29, 2020, 13, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-23', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6251, 147, 29, 2020, 14, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-30', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6252, 147, 29, 2020, 15, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-04-06', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6253, 147, 29, 2020, 16, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-04-13', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6254, 131, 29, 2020, 9, '20:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '20:00:00', '2020-02-24', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6255, 131, 29, 2020, 10, '20:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '20:00:00', '2020-03-02', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5662, 134, 27, 2020, 1, '33:20:00', '24:00:00', '00:00:00', '00:00:00', '00:00:00', '-09:20:00', '2019-12-30', NULL, '24:00:00', 5, 5, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5663, 134, 27, 2020, 2, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-06', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5664, 134, 27, 2020, 3, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-13', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5665, 134, 27, 2020, 4, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-20', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5666, 134, 27, 2020, 5, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-27', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5667, 134, 27, 2020, 6, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-03', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5668, 134, 27, 2020, 7, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-10', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5669, 134, 27, 2020, 8, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-17', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6256, 131, 29, 2020, 11, '20:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '20:00:00', '2020-03-09', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5670, 144, 27, 2020, 1, '33:20:00', '24:00:00', '00:00:00', '00:00:00', '00:00:00', '-09:20:00', '2019-12-30', NULL, '24:00:00', 5, 5, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5671, 144, 27, 2020, 2, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-06', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5672, 144, 27, 2020, 3, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-13', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5673, 144, 27, 2020, 4, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-20', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5674, 144, 27, 2020, 5, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-27', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5675, 144, 27, 2020, 6, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-03', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5676, 144, 27, 2020, 7, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-10', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5677, 144, 27, 2020, 8, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-17', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5678, 102, 27, 2020, 1, '33:20:00', '24:00:00', '00:00:00', '00:00:00', '00:00:00', '-09:20:00', '2019-12-30', NULL, '24:00:00', 5, 5, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5679, 102, 27, 2020, 2, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-06', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5680, 102, 27, 2020, 3, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-13', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5681, 102, 27, 2020, 4, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-20', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5682, 102, 27, 2020, 5, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-27', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5683, 102, 27, 2020, 6, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-03', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5684, 102, 27, 2020, 7, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-10', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5685, 102, 27, 2020, 8, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-17', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5686, 109, 27, 2020, 1, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2019-12-30', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5687, 109, 27, 2020, 2, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-06', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5688, 109, 27, 2020, 3, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-13', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5689, 109, 27, 2020, 4, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-20', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5690, 109, 27, 2020, 5, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-27', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5691, 109, 27, 2020, 6, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-03', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5692, 109, 27, 2020, 7, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-10', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5693, 109, 27, 2020, 8, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-17', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5694, 118, 27, 2020, 1, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2019-12-30', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6257, 131, 29, 2020, 12, '20:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '20:00:00', '2020-03-16', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6258, 131, 29, 2020, 13, '20:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '20:00:00', '2020-03-23', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6259, 131, 29, 2020, 14, '20:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '20:00:00', '2020-03-30', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6260, 131, 29, 2020, 15, '20:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '20:00:00', '2020-04-06', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6261, 131, 29, 2020, 16, '20:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '20:00:00', '2020-04-13', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5695, 118, 27, 2020, 2, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-06', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5696, 118, 27, 2020, 3, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-13', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5697, 118, 27, 2020, 4, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-20', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5698, 118, 27, 2020, 5, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-27', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5699, 118, 27, 2020, 6, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-03', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5700, 118, 27, 2020, 7, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-10', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5701, 118, 27, 2020, 8, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-17', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5702, 133, 27, 2020, 1, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2019-12-30', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5703, 133, 27, 2020, 2, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-06', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5704, 133, 27, 2020, 3, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-13', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5705, 133, 27, 2020, 4, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-20', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5706, 133, 27, 2020, 5, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-27', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5707, 133, 27, 2020, 6, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-03', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5708, 133, 27, 2020, 7, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-10', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5709, 133, 27, 2020, 8, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-17', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5710, 111, 27, 2020, 1, '33:20:00', '24:00:00', '00:00:00', '00:00:00', '00:00:00', '-09:20:00', '2019-12-30', NULL, '24:00:00', 5, 5, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5711, 111, 27, 2020, 2, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-06', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5712, 111, 27, 2020, 3, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-13', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5713, 111, 27, 2020, 4, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-20', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5714, 111, 27, 2020, 5, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-27', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5715, 111, 27, 2020, 6, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-03', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5716, 111, 27, 2020, 7, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-10', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5717, 111, 27, 2020, 8, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-17', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6262, 104, 29, 2020, 9, '30:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '10:00:00', '2020-02-24', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6263, 104, 29, 2020, 10, '30:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '10:00:00', '2020-03-02', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6264, 104, 29, 2020, 11, '30:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '10:00:00', '2020-03-09', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6265, 104, 29, 2020, 12, '30:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '10:00:00', '2020-03-16', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6266, 104, 29, 2020, 13, '30:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '10:00:00', '2020-03-23', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5718, 128, 27, 2020, 1, '33:20:00', '24:00:00', '00:00:00', '00:00:00', '00:00:00', '-09:20:00', '2019-12-30', NULL, '24:00:00', 5, 5, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5719, 128, 27, 2020, 2, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-06', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5720, 128, 27, 2020, 3, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-13', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5721, 128, 27, 2020, 4, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-20', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5722, 128, 27, 2020, 5, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-27', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5723, 128, 27, 2020, 6, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-03', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5724, 128, 27, 2020, 7, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-10', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5725, 128, 27, 2020, 8, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-17', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5726, 142, 27, 2020, 1, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2019-12-30', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5727, 142, 27, 2020, 2, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-06', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5728, 142, 27, 2020, 3, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-13', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5729, 142, 27, 2020, 4, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-20', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5730, 142, 27, 2020, 5, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-27', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5731, 142, 27, 2020, 6, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-03', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5732, 142, 27, 2020, 7, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-10', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5733, 142, 27, 2020, 8, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-17', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5734, 136, 27, 2020, 1, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2019-12-30', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5735, 136, 27, 2020, 2, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-06', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5736, 136, 27, 2020, 3, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-13', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5737, 136, 27, 2020, 4, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-20', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5738, 136, 27, 2020, 5, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-27', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5739, 136, 27, 2020, 6, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-03', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5740, 136, 27, 2020, 7, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-10', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6267, 104, 29, 2020, 14, '30:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '10:00:00', '2020-03-30', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6268, 104, 29, 2020, 15, '30:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '10:00:00', '2020-04-06', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6269, 104, 29, 2020, 16, '30:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '10:00:00', '2020-04-13', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5741, 136, 27, 2020, 8, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-17', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5742, 140, 27, 2020, 1, '33:20:00', '24:00:00', '00:00:00', '00:00:00', '00:00:00', '-09:20:00', '2019-12-30', NULL, '24:00:00', 5, 5, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5743, 140, 27, 2020, 2, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-06', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5744, 140, 27, 2020, 3, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-13', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5745, 140, 27, 2020, 4, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-20', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5746, 140, 27, 2020, 5, '33:20:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '06:40:00', '2020-01-27', NULL, '40:00:00', 5, 5, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5747, 139, 27, 2020, 1, '33:20:00', '24:00:00', '00:00:00', '00:00:00', '00:00:00', '-09:20:00', '2019-12-30', NULL, '24:00:00', 5, 5, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5748, 139, 27, 2020, 2, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-06', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5749, 139, 27, 2020, 3, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-13', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5750, 139, 27, 2020, 4, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-20', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5751, 139, 27, 2020, 5, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-27', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5752, 139, 27, 2020, 6, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-03', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5753, 139, 27, 2020, 7, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-10', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5754, 139, 27, 2020, 8, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-17', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5755, 141, 27, 2020, 1, '33:20:00', '24:00:00', '00:00:00', '00:00:00', '00:00:00', '-09:20:00', '2019-12-30', NULL, '24:00:00', 5, 5, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5756, 141, 27, 2020, 2, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-06', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5757, 141, 27, 2020, 3, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-13', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5758, 141, 27, 2020, 4, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-20', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5759, 141, 27, 2020, 5, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-27', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5760, 141, 27, 2020, 6, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-03', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5761, 141, 27, 2020, 7, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-10', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5762, 141, 27, 2020, 8, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-17', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6270, 151, 29, 2020, 9, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-24', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6271, 151, 29, 2020, 10, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-02', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6272, 151, 29, 2020, 11, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-09', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6273, 151, 29, 2020, 12, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-16', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6274, 151, 29, 2020, 13, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-23', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6275, 151, 29, 2020, 14, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-30', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6276, 151, 29, 2020, 15, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-04-06', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6277, 151, 29, 2020, 16, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-04-13', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5763, 122, 27, 2020, 1, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2019-12-30', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5764, 122, 27, 2020, 2, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-06', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5765, 122, 27, 2020, 3, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-13', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5766, 122, 27, 2020, 4, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-20', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5767, 122, 27, 2020, 5, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-27', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5768, 122, 27, 2020, 6, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-03', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5769, 122, 27, 2020, 7, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-10', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5770, 122, 27, 2020, 8, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-17', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5771, 106, 27, 2020, 1, '12:30:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '27:30:00', '2019-12-30', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5772, 106, 27, 2020, 2, '12:30:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '27:30:00', '2020-01-06', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5773, 106, 27, 2020, 3, '12:30:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '27:30:00', '2020-01-13', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5774, 106, 27, 2020, 4, '12:30:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '27:30:00', '2020-01-20', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5775, 106, 27, 2020, 5, '12:30:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '27:30:00', '2020-01-27', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5776, 106, 27, 2020, 6, '12:30:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '27:30:00', '2020-02-03', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5777, 106, 27, 2020, 7, '12:30:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '27:30:00', '2020-02-10', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5778, 106, 27, 2020, 8, '12:30:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '27:30:00', '2020-02-17', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5779, 110, 27, 2020, 1, '33:20:00', '24:00:00', '00:00:00', '00:00:00', '00:00:00', '-09:20:00', '2019-12-30', NULL, '24:00:00', 5, 5, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5780, 110, 27, 2020, 2, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-06', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5781, 110, 27, 2020, 3, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-13', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6278, 138, 29, 2020, 9, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-24', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6279, 138, 29, 2020, 10, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-02', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6280, 138, 29, 2020, 11, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-09', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5782, 110, 27, 2020, 4, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-20', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5783, 110, 27, 2020, 5, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-27', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5784, 110, 27, 2020, 6, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-03', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5785, 110, 27, 2020, 7, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-10', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5786, 110, 27, 2020, 8, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-17', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5787, 145, 27, 2020, 1, '33:20:00', '24:00:00', '00:00:00', '00:00:00', '00:00:00', '-09:20:00', '2019-12-30', NULL, '24:00:00', 5, 5, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5788, 145, 27, 2020, 2, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-06', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5789, 145, 27, 2020, 3, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-13', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5790, 145, 27, 2020, 4, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-20', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5791, 145, 27, 2020, 5, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-27', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5792, 145, 27, 2020, 6, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-03', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5793, 145, 27, 2020, 7, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-10', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5794, 145, 27, 2020, 8, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-17', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5795, 148, 27, 2020, 1, '33:20:00', '24:00:00', '00:00:00', '00:00:00', '00:00:00', '-09:20:00', '2019-12-30', NULL, '24:00:00', 5, 5, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5796, 148, 27, 2020, 2, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-06', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5797, 148, 27, 2020, 3, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-13', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5798, 148, 27, 2020, 4, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-20', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5799, 148, 27, 2020, 5, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-27', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5800, 148, 27, 2020, 6, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-03', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5801, 148, 27, 2020, 7, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-10', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5802, 148, 27, 2020, 8, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-17', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6281, 138, 29, 2020, 12, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-16', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6282, 138, 29, 2020, 13, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-23', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6283, 138, 29, 2020, 14, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-30', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6284, 138, 29, 2020, 15, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-04-06', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6285, 138, 29, 2020, 16, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-04-13', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5803, 130, 27, 2020, 1, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2019-12-30', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5804, 130, 27, 2020, 2, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-06', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5805, 130, 27, 2020, 3, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-13', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5806, 130, 27, 2020, 4, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-20', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5807, 130, 27, 2020, 5, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-27', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5808, 130, 27, 2020, 6, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-03', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5809, 130, 27, 2020, 7, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-10', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5810, 130, 27, 2020, 8, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-17', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5256, 129, 27, 2020, 1, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2019-12-30', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5257, 129, 27, 2020, 2, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-06', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5258, 129, 27, 2020, 3, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-13', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5259, 129, 27, 2020, 4, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-20', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5260, 129, 27, 2020, 5, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-27', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5261, 129, 27, 2020, 6, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-03', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5262, 129, 27, 2020, 7, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-10', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5263, 129, 27, 2020, 8, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-17', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5819, 143, 27, 2020, 1, '33:20:00', '24:00:00', '00:00:00', '00:00:00', '00:00:00', '-09:20:00', '2019-12-30', NULL, '24:00:00', 5, 5, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5820, 143, 27, 2020, 2, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-06', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5821, 143, 27, 2020, 3, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-13', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5822, 143, 27, 2020, 4, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-20', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5823, 143, 27, 2020, 5, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-27', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5824, 143, 27, 2020, 6, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-03', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5825, 143, 27, 2020, 7, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-10', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5826, 143, 27, 2020, 8, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-17', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6286, 105, 29, 2020, 9, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-24', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6287, 105, 29, 2020, 10, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-02', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6288, 105, 29, 2020, 11, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-09', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6289, 105, 29, 2020, 12, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-16', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6290, 105, 29, 2020, 13, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-23', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6291, 105, 29, 2020, 14, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-30', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6292, 105, 29, 2020, 15, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-04-06', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6293, 105, 29, 2020, 16, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-04-13', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6294, 134, 29, 2020, 9, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-24', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6295, 134, 29, 2020, 10, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-02', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6296, 134, 29, 2020, 11, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-09', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6297, 134, 29, 2020, 12, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-16', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6298, 134, 29, 2020, 13, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-23', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6299, 134, 29, 2020, 14, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-30', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6300, 134, 29, 2020, 15, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-04-06', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6301, 134, 29, 2020, 16, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-04-13', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6302, 144, 29, 2020, 9, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-24', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6303, 144, 29, 2020, 10, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-02', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6304, 144, 29, 2020, 11, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-09', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6305, 144, 29, 2020, 12, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-16', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6306, 144, 29, 2020, 13, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-23', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6307, 144, 29, 2020, 14, '13:20:00', '16:00:00', '00:00:00', '00:00:00', '00:00:00', '02:40:00', '2020-03-30', NULL, '16:00:00', 2, 2, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6308, 102, 29, 2020, 9, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-24', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6309, 102, 29, 2020, 10, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-02', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6310, 102, 29, 2020, 11, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-09', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6311, 102, 29, 2020, 12, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-16', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6312, 102, 29, 2020, 13, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-23', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6313, 102, 29, 2020, 14, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-30', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6314, 102, 29, 2020, 15, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-04-06', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6315, 102, 29, 2020, 16, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-04-13', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6316, 109, 29, 2020, 9, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-24', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6317, 109, 29, 2020, 10, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-02', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6318, 109, 29, 2020, 11, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-09', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6319, 109, 29, 2020, 12, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-16', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6320, 109, 29, 2020, 13, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-23', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6321, 109, 29, 2020, 14, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-30', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6322, 109, 29, 2020, 15, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-04-06', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6323, 109, 29, 2020, 16, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-04-13', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6324, 118, 29, 2020, 9, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-24', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6325, 118, 29, 2020, 10, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-02', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6326, 118, 29, 2020, 11, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-09', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6327, 118, 29, 2020, 12, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-16', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6328, 118, 29, 2020, 13, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-23', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6329, 118, 29, 2020, 14, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-30', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6330, 118, 29, 2020, 15, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-04-06', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6331, 118, 29, 2020, 16, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-04-13', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6332, 133, 29, 2020, 9, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-24', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6333, 133, 29, 2020, 10, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-02', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6334, 133, 29, 2020, 11, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-09', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6335, 133, 29, 2020, 12, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-16', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6336, 133, 29, 2020, 13, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-23', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6337, 133, 29, 2020, 14, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-30', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6338, 133, 29, 2020, 15, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-04-06', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6339, 133, 29, 2020, 16, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-04-13', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6340, 111, 29, 2020, 9, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-24', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6341, 111, 29, 2020, 10, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-02', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6342, 111, 29, 2020, 11, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-09', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6343, 111, 29, 2020, 12, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-16', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6344, 111, 29, 2020, 13, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-23', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6345, 111, 29, 2020, 14, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-30', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6346, 111, 29, 2020, 15, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-04-06', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6347, 111, 29, 2020, 16, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-04-13', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6348, 128, 29, 2020, 9, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-24', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6349, 128, 29, 2020, 10, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-02', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6350, 128, 29, 2020, 11, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-09', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6351, 128, 29, 2020, 12, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-16', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6352, 128, 29, 2020, 13, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-23', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6353, 128, 29, 2020, 14, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-30', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6354, 128, 29, 2020, 15, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-04-06', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6355, 128, 29, 2020, 16, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-04-13', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6356, 142, 29, 2020, 9, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-24', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6357, 142, 29, 2020, 10, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-02', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6358, 142, 29, 2020, 11, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-09', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6359, 142, 29, 2020, 12, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-16', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6360, 142, 29, 2020, 13, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-23', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6361, 142, 29, 2020, 14, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-30', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6362, 142, 29, 2020, 15, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-04-06', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6363, 142, 29, 2020, 16, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-04-13', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6364, 136, 29, 2020, 9, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-24', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6365, 136, 29, 2020, 10, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-02', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6366, 136, 29, 2020, 11, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-09', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6367, 136, 29, 2020, 12, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-16', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6368, 136, 29, 2020, 13, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-23', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6369, 136, 29, 2020, 14, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-30', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6370, 136, 29, 2020, 15, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-04-06', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6371, 136, 29, 2020, 16, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-04-13', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6372, 139, 29, 2020, 9, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-24', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6373, 139, 29, 2020, 10, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-02', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6374, 139, 29, 2020, 11, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-09', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6375, 139, 29, 2020, 12, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-16', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6376, 139, 29, 2020, 13, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-23', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6377, 139, 29, 2020, 14, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-30', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6378, 139, 29, 2020, 15, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-04-06', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6379, 139, 29, 2020, 16, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-04-13', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6380, 141, 29, 2020, 9, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-24', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6381, 141, 29, 2020, 10, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-02', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6382, 141, 29, 2020, 11, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-09', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6383, 141, 29, 2020, 12, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-16', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6384, 141, 29, 2020, 13, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-23', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6385, 141, 29, 2020, 14, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-30', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6386, 141, 29, 2020, 15, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-04-06', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6387, 141, 29, 2020, 16, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-04-13', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6388, 122, 29, 2020, 9, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-24', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6389, 122, 29, 2020, 10, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-02', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6390, 122, 29, 2020, 11, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-09', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6391, 122, 29, 2020, 12, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-16', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6392, 122, 29, 2020, 13, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-23', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6393, 122, 29, 2020, 14, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-30', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6394, 122, 29, 2020, 15, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-04-06', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6395, 122, 29, 2020, 16, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-04-13', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6396, 106, 29, 2020, 9, '12:30:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '27:30:00', '2020-02-24', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6397, 106, 29, 2020, 10, '12:30:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '27:30:00', '2020-03-02', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6398, 106, 29, 2020, 11, '12:30:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '27:30:00', '2020-03-09', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6399, 106, 29, 2020, 12, '12:30:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '27:30:00', '2020-03-16', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6400, 106, 29, 2020, 13, '12:30:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '27:30:00', '2020-03-23', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6401, 106, 29, 2020, 14, '12:30:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '27:30:00', '2020-03-30', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6402, 106, 29, 2020, 15, '12:30:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '27:30:00', '2020-04-06', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6403, 106, 29, 2020, 16, '12:30:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '27:30:00', '2020-04-13', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6404, 110, 29, 2020, 9, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-24', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6405, 110, 29, 2020, 10, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-02', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6406, 110, 29, 2020, 11, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-09', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6407, 110, 29, 2020, 12, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-16', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6408, 110, 29, 2020, 13, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-23', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6409, 110, 29, 2020, 14, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-30', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6410, 110, 29, 2020, 15, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-04-06', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6411, 110, 29, 2020, 16, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-04-13', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6412, 145, 29, 2020, 9, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-24', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6413, 145, 29, 2020, 10, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-02', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6414, 145, 29, 2020, 11, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-09', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6415, 145, 29, 2020, 12, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-16', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6416, 145, 29, 2020, 13, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-23', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6417, 145, 29, 2020, 14, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-30', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6418, 145, 29, 2020, 15, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-04-06', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6419, 145, 29, 2020, 16, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-04-13', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6420, 148, 29, 2020, 9, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-24', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6421, 148, 29, 2020, 10, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-02', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6422, 148, 29, 2020, 11, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-09', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6423, 148, 29, 2020, 12, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-16', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6424, 148, 29, 2020, 13, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-23', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6425, 148, 29, 2020, 14, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-30', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6426, 148, 29, 2020, 15, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-04-06', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6427, 148, 29, 2020, 16, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-04-13', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6428, 130, 29, 2020, 9, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-24', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6429, 130, 29, 2020, 10, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-02', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6430, 130, 29, 2020, 11, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-09', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6431, 130, 29, 2020, 12, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-16', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6432, 130, 29, 2020, 13, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-23', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6433, 130, 29, 2020, 14, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-30', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6434, 130, 29, 2020, 15, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-04-06', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6435, 130, 29, 2020, 16, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-04-13', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6436, 129, 29, 2020, 9, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-24', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6437, 129, 29, 2020, 10, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-02', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6438, 129, 29, 2020, 11, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-09', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6439, 129, 29, 2020, 12, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-16', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6440, 129, 29, 2020, 13, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-23', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6441, 129, 29, 2020, 14, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-30', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6442, 129, 29, 2020, 15, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-04-06', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6443, 129, 29, 2020, 16, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-04-13', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6444, 143, 29, 2020, 9, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-24', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6445, 143, 29, 2020, 10, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-02', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6446, 143, 29, 2020, 11, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-09', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6447, 143, 29, 2020, 12, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-16', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6448, 143, 29, 2020, 13, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-23', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6449, 143, 29, 2020, 14, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-30', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6450, 143, 29, 2020, 15, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-04-06', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6451, 143, 29, 2020, 16, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-04-13', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (11297, 116, 27, 2020, 1, '26:40:00', '24:00:00', '00:00:00', '00:00:00', '00:00:00', '-02:40:00', '2019-12-30', NULL, '24:00:00', 4, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (11298, 116, 27, 2020, 2, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-06', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (11299, 116, 27, 2020, 3, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-13', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (11300, 116, 27, 2020, 4, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-20', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (11301, 116, 27, 2020, 5, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-27', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (11302, 116, 27, 2020, 6, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-03', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (11303, 116, 27, 2020, 7, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-10', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (11304, 116, 27, 2020, 8, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-17', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5670, 144, 27, 2020, 1, '26:40:00', '24:00:00', '00:00:00', '00:00:00', '00:00:00', '-02:40:00', '2019-12-30', NULL, '24:00:00', 4, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5691, 109, 27, 2020, 6, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-03', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5692, 109, 27, 2020, 7, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-10', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5693, 109, 27, 2020, 8, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-17', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6762, 146, 30, 2020, 17, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-04-20', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6763, 146, 30, 2020, 18, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-04-27', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6764, 146, 30, 2020, 19, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-05-04', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6765, 146, 30, 2020, 20, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-05-11', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6824, 103, 30, 2020, 17, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-04-20', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6825, 103, 30, 2020, 18, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-04-27', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6826, 103, 30, 2020, 19, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-05-04', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5671, 144, 27, 2020, 2, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-06', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5672, 144, 27, 2020, 3, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-13', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5673, 144, 27, 2020, 4, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-20', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5674, 144, 27, 2020, 5, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-27', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5675, 144, 27, 2020, 6, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-03', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5676, 144, 27, 2020, 7, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-10', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5677, 144, 27, 2020, 8, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-17', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5686, 109, 27, 2020, 1, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2019-12-30', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5687, 109, 27, 2020, 2, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-06', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5688, 109, 27, 2020, 3, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-13', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5689, 109, 27, 2020, 4, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-20', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5690, 109, 27, 2020, 5, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-27', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5694, 118, 27, 2020, 1, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2019-12-30', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5695, 118, 27, 2020, 2, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-06', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5696, 118, 27, 2020, 3, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-13', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5697, 118, 27, 2020, 4, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-20', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5698, 118, 27, 2020, 5, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-27', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5699, 118, 27, 2020, 6, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-03', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (11620, 116, 29, 2020, 9, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-24', NULL, '40:00:00', 5, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6352, 128, 29, 2020, 13, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-23', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6353, 128, 29, 2020, 14, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-30', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6354, 128, 29, 2020, 15, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-04-06', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6834, 121, 30, 2020, 19, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-05-04', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6835, 121, 30, 2020, 20, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-05-11', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6836, 121, 30, 2020, 21, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-05-18', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6837, 121, 30, 2020, 22, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-05-25', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6838, 121, 30, 2020, 23, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-06-01', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5710, 111, 27, 2020, 1, '26:40:00', '26:40:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2019-12-30', NULL, '26:40:00', 4, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5711, 111, 27, 2020, 2, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-06', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5712, 111, 27, 2020, 3, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-13', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5713, 111, 27, 2020, 4, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-20', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5714, 111, 27, 2020, 5, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-27', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5715, 111, 27, 2020, 6, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-03', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5716, 111, 27, 2020, 7, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-10', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5717, 111, 27, 2020, 8, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-17', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5718, 128, 27, 2020, 1, '26:40:00', '24:00:00', '00:00:00', '00:00:00', '00:00:00', '-02:40:00', '2019-12-30', NULL, '24:00:00', 4, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6324, 118, 29, 2020, 9, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-24', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6392, 122, 29, 2020, 13, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-23', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6393, 122, 29, 2020, 14, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-30', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6394, 122, 29, 2020, 15, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-04-06', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6871, 147, 30, 2020, 17, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-04-20', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6872, 147, 30, 2020, 18, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-04-27', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5512, 146, 27, 2020, 1, '26:40:00', '24:00:00', '00:00:00', '00:00:00', '00:00:00', '-02:40:00', '2019-12-30', NULL, '24:00:00', 4, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5513, 146, 27, 2020, 2, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-06', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5514, 146, 27, 2020, 3, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-13', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5515, 146, 27, 2020, 4, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-20', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5516, 146, 27, 2020, 5, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-27', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5517, 146, 27, 2020, 6, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-03', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5726, 142, 27, 2020, 1, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2019-12-30', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5727, 142, 27, 2020, 2, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-06', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5728, 142, 27, 2020, 3, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-13', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5729, 142, 27, 2020, 4, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-20', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5730, 142, 27, 2020, 5, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-27', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5731, 142, 27, 2020, 6, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-03', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6873, 147, 30, 2020, 19, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-05-04', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6874, 147, 30, 2020, 20, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-05-11', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6875, 147, 30, 2020, 21, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-05-18', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6876, 147, 30, 2020, 22, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-05-25', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5518, 146, 27, 2020, 7, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-10', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5519, 146, 27, 2020, 8, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-17', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5520, 132, 27, 2020, 1, '26:40:00', '24:00:00', '00:00:00', '00:00:00', '00:00:00', '-02:40:00', '2019-12-30', NULL, '24:00:00', 4, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5521, 132, 27, 2020, 2, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-06', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5522, 132, 27, 2020, 3, '40:00:00', '24:00:00', '00:00:00', '00:00:00', '00:00:00', '-16:00:00', '2020-01-13', NULL, '24:00:00', 3, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5732, 142, 27, 2020, 7, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-10', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5733, 142, 27, 2020, 8, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-17', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5734, 136, 27, 2020, 1, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2019-12-30', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5735, 136, 27, 2020, 2, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-06', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6325, 118, 29, 2020, 10, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-02', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6326, 118, 29, 2020, 11, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-09', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6327, 118, 29, 2020, 12, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-16', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6895, 151, 30, 2020, 17, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-04-20', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6896, 151, 30, 2020, 18, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-04-27', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5523, 115, 27, 2020, 1, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2019-12-30', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5524, 115, 27, 2020, 2, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-06', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5525, 115, 27, 2020, 3, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-13', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5526, 115, 27, 2020, 4, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-20', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5527, 115, 27, 2020, 5, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-27', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5528, 115, 27, 2020, 6, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-03', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5529, 115, 27, 2020, 7, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-10', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5530, 115, 27, 2020, 8, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-17', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5736, 136, 27, 2020, 3, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-13', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5737, 136, 27, 2020, 4, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-20', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5738, 136, 27, 2020, 5, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-27', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5739, 136, 27, 2020, 6, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-03', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5740, 136, 27, 2020, 7, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-10', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5741, 136, 27, 2020, 8, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-17', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5535, 114, 27, 2020, 5, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-27', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5751, 139, 27, 2020, 5, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-27', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5752, 139, 27, 2020, 6, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-03', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5753, 139, 27, 2020, 7, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-10', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5754, 139, 27, 2020, 8, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-17', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5755, 141, 27, 2020, 1, '26:40:00', '24:00:00', '00:00:00', '00:00:00', '00:00:00', '-02:40:00', '2019-12-30', NULL, '24:00:00', 4, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5756, 141, 27, 2020, 2, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-06', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6328, 118, 29, 2020, 13, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-23', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6329, 118, 29, 2020, 14, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-30', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6335, 133, 29, 2020, 12, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-16', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6428, 130, 29, 2020, 9, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-24', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6429, 130, 29, 2020, 10, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-02', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6434, 130, 29, 2020, 15, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-04-06', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6435, 130, 29, 2020, 16, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-04-13', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5531, 114, 27, 2020, 1, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2019-12-30', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5532, 114, 27, 2020, 2, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-06', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5533, 114, 27, 2020, 3, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-13', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5534, 114, 27, 2020, 4, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-20', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5536, 114, 27, 2020, 6, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-03', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5537, 114, 27, 2020, 7, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-10', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5538, 114, 27, 2020, 8, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-17', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5757, 141, 27, 2020, 3, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-13', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5758, 141, 27, 2020, 4, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-20', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5759, 141, 27, 2020, 5, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-27', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5760, 141, 27, 2020, 6, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-03', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5761, 141, 27, 2020, 7, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-10', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5762, 141, 27, 2020, 8, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-17', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6336, 133, 29, 2020, 13, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-23', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5771, 106, 27, 2020, 1, '12:30:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '27:30:00', '2019-12-30', NULL, '40:00:00', 4, 3, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5772, 106, 27, 2020, 2, '12:30:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '27:30:00', '2020-01-06', NULL, '40:00:00', 4, 3, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5773, 106, 27, 2020, 3, '12:30:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '27:30:00', '2020-01-13', NULL, '40:00:00', 4, 3, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5774, 106, 27, 2020, 4, '12:30:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '27:30:00', '2020-01-20', NULL, '40:00:00', 4, 3, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5775, 106, 27, 2020, 5, '12:30:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '27:30:00', '2020-01-27', NULL, '40:00:00', 4, 3, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5776, 106, 27, 2020, 6, '12:30:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '27:30:00', '2020-02-03', NULL, '40:00:00', 4, 3, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5777, 106, 27, 2020, 7, '12:30:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '27:30:00', '2020-02-10', NULL, '40:00:00', 4, 3, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5778, 106, 27, 2020, 8, '12:30:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '27:30:00', '2020-02-17', NULL, '40:00:00', 4, 3, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6442, 129, 29, 2020, 15, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-04-06', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6443, 129, 29, 2020, 16, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-04-13', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6897, 151, 30, 2020, 19, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-05-04', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6898, 151, 30, 2020, 20, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-05-11', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6899, 151, 30, 2020, 21, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-05-18', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6900, 151, 30, 2020, 22, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-05-25', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6901, 151, 30, 2020, 23, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-06-01', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6902, 151, 30, 2020, 24, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-06-08', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6915, 105, 30, 2020, 21, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-05-18', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5539, 112, 27, 2020, 1, '26:40:00', '24:00:00', '00:00:00', '00:00:00', '00:00:00', '-02:40:00', '2019-12-30', NULL, '24:00:00', 4, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5540, 112, 27, 2020, 2, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-06', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5541, 112, 27, 2020, 3, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-13', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5542, 112, 27, 2020, 4, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-20', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5543, 112, 27, 2020, 5, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-27', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5779, 110, 27, 2020, 1, '26:40:00', '24:00:00', '00:00:00', '00:00:00', '00:00:00', '-02:40:00', '2019-12-30', NULL, '24:00:00', 4, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5780, 110, 27, 2020, 2, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-06', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5781, 110, 27, 2020, 3, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-13', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5782, 110, 27, 2020, 4, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-20', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5783, 110, 27, 2020, 5, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-27', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5784, 110, 27, 2020, 6, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-03', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5785, 110, 27, 2020, 7, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-10', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6348, 128, 29, 2020, 9, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-24', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6921, 134, 30, 2020, 19, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-05-04', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6922, 134, 30, 2020, 20, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-05-11', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6923, 134, 30, 2020, 21, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-05-18', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6924, 134, 30, 2020, 22, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-05-25', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5544, 112, 27, 2020, 6, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-03', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5545, 112, 27, 2020, 7, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-10', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5786, 110, 27, 2020, 8, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-17', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5795, 148, 27, 2020, 1, '26:40:00', '24:00:00', '00:00:00', '00:00:00', '00:00:00', '-02:40:00', '2019-12-30', NULL, '24:00:00', 4, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5796, 148, 27, 2020, 2, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-06', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5797, 148, 27, 2020, 3, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-13', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5798, 148, 27, 2020, 4, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-20', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5799, 148, 27, 2020, 5, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-27', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5800, 148, 27, 2020, 6, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-03', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6349, 128, 29, 2020, 10, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-02', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6350, 128, 29, 2020, 11, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-09', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6351, 128, 29, 2020, 12, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-16', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5546, 112, 27, 2020, 8, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-17', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5548, 108, 27, 2020, 3, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-13', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5801, 148, 27, 2020, 7, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-10', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5802, 148, 27, 2020, 8, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-17', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5803, 130, 27, 2020, 1, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2019-12-30', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5804, 130, 27, 2020, 2, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-06', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5805, 130, 27, 2020, 3, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-13', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5260, 129, 27, 2020, 5, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-27', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6355, 128, 29, 2020, 16, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-04-13', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6766, 146, 30, 2020, 21, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-05-18', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6767, 146, 30, 2020, 22, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-05-25', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6768, 146, 30, 2020, 23, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-06-01', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6769, 146, 30, 2020, 24, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-06-08', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5547, 108, 27, 2020, 2, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-06', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5549, 108, 27, 2020, 4, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-20', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5550, 108, 27, 2020, 5, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-27', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5551, 108, 27, 2020, 6, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-03', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5552, 108, 27, 2020, 7, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-10', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5553, 108, 27, 2020, 8, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-17', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5261, 129, 27, 2020, 6, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-03', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5262, 129, 27, 2020, 7, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-10', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5263, 129, 27, 2020, 8, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-17', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6776, 115, 30, 2020, 23, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-06-01', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6786, 112, 30, 2020, 17, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-04-20', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6787, 112, 30, 2020, 18, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-04-27', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6937, 109, 30, 2020, 19, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-05-04', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6938, 109, 30, 2020, 20, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-05-11', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6939, 109, 30, 2020, 21, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-05-18', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6940, 109, 30, 2020, 22, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-05-25', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6943, 118, 30, 2020, 17, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-04-20', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5819, 143, 27, 2020, 1, '26:40:00', '24:00:00', '00:00:00', '00:00:00', '00:00:00', '-02:40:00', '2019-12-30', NULL, '24:00:00', 4, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5820, 143, 27, 2020, 2, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-06', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5821, 143, 27, 2020, 3, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-13', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5822, 143, 27, 2020, 4, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-20', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5823, 143, 27, 2020, 5, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-27', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5824, 143, 27, 2020, 6, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-03', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5825, 143, 27, 2020, 7, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-10', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5826, 143, 27, 2020, 8, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-17', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6150, 115, 29, 2020, 9, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-24', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6367, 136, 29, 2020, 12, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-16', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6368, 136, 29, 2020, 13, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-23', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6796, 108, 30, 2020, 21, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-05-18', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6944, 118, 30, 2020, 18, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-04-27', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6959, 111, 30, 2020, 17, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-04-20', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6960, 111, 30, 2020, 18, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-04-27', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5554, 135, 27, 2020, 1, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2019-12-30', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5555, 135, 27, 2020, 2, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-06', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6151, 115, 29, 2020, 10, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-02', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6152, 115, 29, 2020, 11, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-09', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6153, 115, 29, 2020, 12, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-16', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6154, 115, 29, 2020, 13, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-23', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6155, 115, 29, 2020, 14, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-30', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6156, 115, 29, 2020, 15, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-04-06', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6157, 115, 29, 2020, 16, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-04-13', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6369, 136, 29, 2020, 14, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-30', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6370, 136, 29, 2020, 15, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-04-06', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6371, 136, 29, 2020, 16, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-04-13', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6961, 111, 30, 2020, 19, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-05-04', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6962, 111, 30, 2020, 20, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-05-11', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6963, 111, 30, 2020, 21, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-05-18', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6964, 111, 30, 2020, 22, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-05-25', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6965, 111, 30, 2020, 23, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-06-01', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5556, 135, 27, 2020, 3, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-13', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5557, 135, 27, 2020, 4, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-20', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5558, 135, 27, 2020, 5, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-27', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5559, 135, 27, 2020, 6, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-03', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5560, 135, 27, 2020, 7, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-10', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5561, 135, 27, 2020, 8, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-17', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6158, 114, 29, 2020, 9, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-24', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6159, 114, 29, 2020, 10, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-02', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6160, 114, 29, 2020, 11, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-09', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6161, 114, 29, 2020, 12, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-16', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6162, 114, 29, 2020, 13, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-23', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6163, 114, 29, 2020, 14, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-30', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6164, 114, 29, 2020, 15, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-04-06', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6165, 114, 29, 2020, 16, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-04-13', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6174, 108, 29, 2020, 9, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-24', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6175, 108, 29, 2020, 10, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-02', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6176, 108, 29, 2020, 11, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-09', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6177, 108, 29, 2020, 12, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-16', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6178, 108, 29, 2020, 13, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-23', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6179, 108, 29, 2020, 14, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-30', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6180, 108, 29, 2020, 15, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-04-06', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6797, 108, 30, 2020, 22, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-05-25', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6808, 127, 30, 2020, 17, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-04-20', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6809, 127, 30, 2020, 18, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-04-27', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6978, 142, 30, 2020, 20, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-05-11', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6979, 142, 30, 2020, 21, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-05-18', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6980, 142, 30, 2020, 22, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-05-25', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6983, 136, 30, 2020, 17, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-04-20', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6984, 136, 30, 2020, 18, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-04-27', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6985, 136, 30, 2020, 19, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-05-04', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6986, 136, 30, 2020, 20, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-05-11', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6987, 136, 30, 2020, 21, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-05-18', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6181, 108, 29, 2020, 16, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-04-13', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6182, 135, 29, 2020, 9, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-24', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6183, 135, 29, 2020, 10, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-02', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6184, 135, 29, 2020, 11, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-09', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6185, 135, 29, 2020, 12, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-16', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6197, 127, 29, 2020, 16, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-04-13', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6372, 139, 29, 2020, 9, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-24', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6373, 139, 29, 2020, 10, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-02', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6374, 139, 29, 2020, 11, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-09', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6375, 139, 29, 2020, 12, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-16', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6376, 139, 29, 2020, 13, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-23', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6377, 139, 29, 2020, 14, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-30', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6378, 139, 29, 2020, 15, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-04-06', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6379, 139, 29, 2020, 16, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-04-13', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5562, 127, 27, 2020, 1, '26:40:00', '24:00:00', '00:00:00', '00:00:00', '00:00:00', '-02:40:00', '2019-12-30', NULL, '24:00:00', 4, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5563, 127, 27, 2020, 2, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-06', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6198, 149, 29, 2020, 9, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-24', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6199, 149, 29, 2020, 10, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-02', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6200, 149, 29, 2020, 11, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-09', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6201, 149, 29, 2020, 12, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-16', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6202, 149, 29, 2020, 13, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-23', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6203, 149, 29, 2020, 14, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-30', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6204, 149, 29, 2020, 15, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-04-06', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6205, 149, 29, 2020, 16, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-04-13', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6810, 127, 30, 2020, 19, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-05-04', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6988, 136, 30, 2020, 22, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-05-25', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6989, 136, 30, 2020, 23, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-06-01', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7001, 141, 30, 2020, 19, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-05-04', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7002, 141, 30, 2020, 20, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-05-11', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7012, 122, 30, 2020, 22, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-05-25', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5564, 127, 27, 2020, 3, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-13', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5565, 127, 27, 2020, 4, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-20', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5566, 127, 27, 2020, 5, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-27', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5567, 127, 27, 2020, 6, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-03', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5568, 127, 27, 2020, 7, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-10', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5569, 127, 27, 2020, 8, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-17', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6214, 121, 29, 2020, 9, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-24', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6215, 121, 29, 2020, 10, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-02', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6216, 121, 29, 2020, 11, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-09', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6217, 121, 29, 2020, 12, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-16', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6218, 121, 29, 2020, 13, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-23', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6219, 121, 29, 2020, 14, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-30', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6220, 121, 29, 2020, 15, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-04-06', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6221, 121, 29, 2020, 16, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-04-13', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6222, 125, 29, 2020, 9, '20:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '20:00:00', '2020-02-24', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6223, 125, 29, 2020, 10, '20:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '20:00:00', '2020-03-02', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6224, 125, 29, 2020, 11, '20:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '20:00:00', '2020-03-09', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6225, 125, 29, 2020, 12, '20:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '20:00:00', '2020-03-16', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6226, 125, 29, 2020, 13, '20:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '20:00:00', '2020-03-23', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6227, 125, 29, 2020, 14, '20:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '20:00:00', '2020-03-30', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6228, 125, 29, 2020, 15, '20:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '20:00:00', '2020-04-06', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6229, 125, 29, 2020, 16, '20:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '20:00:00', '2020-04-13', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6827, 103, 30, 2020, 20, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-05-11', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6828, 103, 30, 2020, 21, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-05-18', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7023, 110, 30, 2020, 17, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-04-20', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7024, 110, 30, 2020, 18, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-04-27', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7039, 148, 30, 2020, 17, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-04-20', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7040, 148, 30, 2020, 18, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-04-27', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6238, 113, 29, 2020, 9, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-24', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6239, 113, 29, 2020, 10, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-02', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6240, 113, 29, 2020, 11, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-09', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6241, 113, 29, 2020, 12, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-16', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6242, 113, 29, 2020, 13, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-23', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6243, 113, 29, 2020, 14, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-30', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6244, 113, 29, 2020, 15, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-04-06', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6245, 113, 29, 2020, 16, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-04-13', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6389, 122, 29, 2020, 10, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-02', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7041, 148, 30, 2020, 19, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-05-04', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7042, 148, 30, 2020, 20, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-05-11', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7043, 148, 30, 2020, 21, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-05-18', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7044, 148, 30, 2020, 22, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-05-25', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7045, 148, 30, 2020, 23, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-06-01', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7046, 148, 30, 2020, 24, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-06-08', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7050, 130, 30, 2020, 20, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-05-11', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7051, 130, 30, 2020, 21, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-05-18', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7065, 143, 30, 2020, 19, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-05-04', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7066, 143, 30, 2020, 20, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-05-11', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7071, 146, 31, 2020, 25, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-06-15', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7072, 146, 31, 2020, 26, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-06-22', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5570, 149, 27, 2020, 1, '26:40:00', '24:00:00', '00:00:00', '00:00:00', '00:00:00', '-02:40:00', '2019-12-30', NULL, '24:00:00', 4, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5571, 149, 27, 2020, 2, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-06', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6246, 147, 29, 2020, 9, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-24', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6247, 147, 29, 2020, 10, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-02', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6248, 147, 29, 2020, 11, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-09', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6249, 147, 29, 2020, 12, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-16', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6250, 147, 29, 2020, 13, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-23', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6390, 122, 29, 2020, 11, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-09', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7073, 146, 31, 2020, 27, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-06-29', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7074, 146, 31, 2020, 28, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-07-06', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7075, 146, 31, 2020, 29, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-07-13', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7076, 146, 31, 2020, 30, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-07-20', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7077, 146, 31, 2020, 31, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-07-27', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7090, 114, 31, 2020, 28, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-07-06', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7091, 114, 31, 2020, 29, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-07-13', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7094, 114, 31, 2020, 32, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-08-03', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7095, 108, 31, 2020, 25, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-06-15', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7096, 108, 31, 2020, 26, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-06-22', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7111, 127, 31, 2020, 25, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-06-15', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5572, 149, 27, 2020, 3, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-13', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5573, 149, 27, 2020, 4, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-20', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5574, 149, 27, 2020, 5, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-27', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5575, 149, 27, 2020, 6, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-03', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5576, 149, 27, 2020, 7, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-10', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5577, 149, 27, 2020, 8, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-17', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6262, 104, 29, 2020, 9, '30:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '10:00:00', '2020-02-24', NULL, '40:00:00', 5, 5, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6263, 104, 29, 2020, 10, '30:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '10:00:00', '2020-03-02', NULL, '40:00:00', 5, 5, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6264, 104, 29, 2020, 11, '30:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '10:00:00', '2020-03-09', NULL, '40:00:00', 5, 5, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6265, 104, 29, 2020, 12, '30:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '10:00:00', '2020-03-16', NULL, '40:00:00', 5, 5, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6266, 104, 29, 2020, 13, '30:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '10:00:00', '2020-03-23', NULL, '40:00:00', 5, 5, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6391, 122, 29, 2020, 12, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-16', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6267, 104, 29, 2020, 14, '30:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '10:00:00', '2020-03-30', NULL, '40:00:00', 5, 5, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6268, 104, 29, 2020, 15, '30:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '10:00:00', '2020-04-06', NULL, '40:00:00', 5, 5, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6269, 104, 29, 2020, 16, '30:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '10:00:00', '2020-04-13', NULL, '40:00:00', 5, 5, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6278, 138, 29, 2020, 9, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-24', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6279, 138, 29, 2020, 10, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-02', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6280, 138, 29, 2020, 11, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-09', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6281, 138, 29, 2020, 12, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-16', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6282, 138, 29, 2020, 13, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-23', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6283, 138, 29, 2020, 14, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-30', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6839, 121, 30, 2020, 24, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-06-08', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6853, 125, 30, 2020, 23, '20:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '20:00:00', '2020-06-01', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7112, 127, 31, 2020, 26, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-06-22', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7113, 127, 31, 2020, 27, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-06-29', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7114, 127, 31, 2020, 28, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-07-06', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7115, 127, 31, 2020, 29, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-07-13', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7116, 127, 31, 2020, 30, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-07-20', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7117, 127, 31, 2020, 31, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-07-27', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7118, 127, 31, 2020, 32, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-08-03', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5578, 103, 27, 2020, 1, '40:00:00', '36:00:00', '00:00:00', '04:00:00', '00:00:00', '00:00:00', '2019-12-30', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6284, 138, 29, 2020, 15, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-04-06', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6285, 138, 29, 2020, 16, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-04-13', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6286, 105, 29, 2020, 9, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-24', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6287, 105, 29, 2020, 10, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-02', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6288, 105, 29, 2020, 11, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-09', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6289, 105, 29, 2020, 12, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-16', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6290, 105, 29, 2020, 13, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-23', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6291, 105, 29, 2020, 14, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-30', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6292, 105, 29, 2020, 15, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-04-06', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6395, 122, 29, 2020, 16, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-04-13', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6854, 125, 30, 2020, 24, '20:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '20:00:00', '2020-06-08', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6859, 119, 30, 2020, 21, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-05-18', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7135, 121, 31, 2020, 25, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-06-15', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7136, 121, 31, 2020, 26, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-06-22', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7137, 121, 31, 2020, 27, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-06-29', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5579, 103, 27, 2020, 2, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-06', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5580, 103, 27, 2020, 3, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-13', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5581, 103, 27, 2020, 4, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-20', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5582, 103, 27, 2020, 5, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-27', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5583, 103, 27, 2020, 6, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-03', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5584, 103, 27, 2020, 7, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-10', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6293, 105, 29, 2020, 16, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-04-13', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6302, 144, 29, 2020, 9, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-24', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6303, 144, 29, 2020, 10, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-02', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6396, 106, 29, 2020, 9, '12:30:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '27:30:00', '2020-02-24', NULL, '40:00:00', 4, 3, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6397, 106, 29, 2020, 10, '12:30:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '27:30:00', '2020-03-02', NULL, '40:00:00', 4, 3, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6398, 106, 29, 2020, 11, '12:30:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '27:30:00', '2020-03-09', NULL, '40:00:00', 4, 3, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6399, 106, 29, 2020, 12, '12:30:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '27:30:00', '2020-03-16', NULL, '40:00:00', 4, 3, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6400, 106, 29, 2020, 13, '12:30:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '27:30:00', '2020-03-23', NULL, '40:00:00', 4, 3, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5585, 103, 27, 2020, 8, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-17', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6304, 144, 29, 2020, 11, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-09', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6305, 144, 29, 2020, 12, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-16', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6306, 144, 29, 2020, 13, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-23', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6307, 144, 29, 2020, 14, '40:00:00', '16:00:00', '00:00:00', '00:00:00', '00:00:00', '-24:00:00', '2020-03-30', NULL, '16:00:00', 2, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6308, 102, 29, 2020, 9, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-24', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6309, 102, 29, 2020, 10, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-02', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6310, 102, 29, 2020, 11, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-09', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6860, 119, 30, 2020, 22, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-05-25', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7138, 121, 31, 2020, 28, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-07-06', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7139, 121, 31, 2020, 29, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-07-13', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7140, 121, 31, 2020, 30, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-07-20', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7141, 121, 31, 2020, 31, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-07-27', NULL, '40:00:00', 5, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7153, 125, 31, 2020, 28, '20:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '20:00:00', '2020-07-06', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7154, 125, 31, 2020, 29, '20:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '20:00:00', '2020-07-13', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7155, 125, 31, 2020, 30, '20:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '20:00:00', '2020-07-20', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7156, 125, 31, 2020, 31, '20:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '20:00:00', '2020-07-27', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7157, 125, 31, 2020, 32, '20:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '20:00:00', '2020-08-03', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7174, 147, 31, 2020, 25, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-06-15', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7175, 147, 31, 2020, 26, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-06-22', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7176, 147, 31, 2020, 27, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-06-29', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7177, 147, 31, 2020, 28, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-07-06', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7178, 147, 31, 2020, 29, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-07-13', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5586, 121, 27, 2020, 1, '26:40:00', '24:00:00', '00:00:00', '00:00:00', '00:00:00', '-02:40:00', '2019-12-30', NULL, '24:00:00', 4, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5587, 121, 27, 2020, 2, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-06', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5588, 121, 27, 2020, 3, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-13', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5589, 121, 27, 2020, 4, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-20', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5590, 121, 27, 2020, 5, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-27', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5591, 121, 27, 2020, 6, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-03', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5592, 121, 27, 2020, 7, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-10', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5593, 121, 27, 2020, 8, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-17', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6311, 102, 29, 2020, 12, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-16', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6312, 102, 29, 2020, 13, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-23', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6313, 102, 29, 2020, 14, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-30', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6314, 102, 29, 2020, 15, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-04-06', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6315, 102, 29, 2020, 16, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-04-13', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6412, 145, 29, 2020, 9, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-24', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5594, 125, 27, 2020, 1, '20:00:00', '20:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2019-12-30', NULL, '20:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5595, 125, 27, 2020, 2, '20:00:00', '20:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-06', NULL, '20:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5596, 125, 27, 2020, 3, '20:00:00', '20:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-13', NULL, '20:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5597, 125, 27, 2020, 4, '20:00:00', '20:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-20', NULL, '20:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5598, 125, 27, 2020, 5, '20:00:00', '20:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-27', NULL, '20:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5599, 125, 27, 2020, 6, '20:00:00', '20:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-03', NULL, '20:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5600, 125, 27, 2020, 7, '20:00:00', '20:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-10', NULL, '20:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5601, 125, 27, 2020, 8, '20:00:00', '20:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-17', NULL, '20:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5602, 119, 27, 2020, 1, '26:40:00', '24:00:00', '00:00:00', '00:00:00', '00:00:00', '-02:40:00', '2019-12-30', NULL, '24:00:00', 4, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6413, 145, 29, 2020, 10, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-02', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6414, 145, 29, 2020, 11, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-09', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6415, 145, 29, 2020, 12, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-16', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6416, 145, 29, 2020, 13, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-23', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6417, 145, 29, 2020, 14, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-30', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5603, 119, 27, 2020, 2, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-06', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5604, 119, 27, 2020, 3, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-13', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5605, 119, 27, 2020, 4, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-20', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5606, 119, 27, 2020, 5, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-27', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5607, 119, 27, 2020, 6, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-03', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5608, 119, 27, 2020, 7, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-10', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5609, 119, 27, 2020, 8, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-17', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5610, 113, 27, 2020, 1, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2019-12-30', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5611, 113, 27, 2020, 2, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-06', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5612, 113, 27, 2020, 3, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-13', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5613, 113, 27, 2020, 4, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-20', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5614, 113, 27, 2020, 5, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-27', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6418, 145, 29, 2020, 15, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-04-06', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7190, 104, 31, 2020, 25, '30:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '10:00:00', '2020-06-15', NULL, '40:00:00', 5, 5, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7191, 104, 31, 2020, 26, '30:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '10:00:00', '2020-06-22', NULL, '40:00:00', 5, 5, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7192, 104, 31, 2020, 27, '30:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '10:00:00', '2020-06-29', NULL, '40:00:00', 5, 5, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7193, 104, 31, 2020, 28, '30:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '10:00:00', '2020-07-06', NULL, '40:00:00', 5, 5, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5615, 113, 27, 2020, 6, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-03', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5616, 113, 27, 2020, 7, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-10', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5617, 113, 27, 2020, 8, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-17', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5618, 147, 27, 2020, 1, '26:40:00', '24:00:00', '00:00:00', '00:00:00', '00:00:00', '-02:40:00', '2019-12-30', NULL, '24:00:00', 4, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5619, 147, 27, 2020, 2, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-06', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5620, 147, 27, 2020, 3, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-13', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5621, 147, 27, 2020, 4, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-20', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5622, 147, 27, 2020, 5, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-27', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5623, 147, 27, 2020, 6, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-03', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5624, 147, 27, 2020, 7, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-10', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5625, 147, 27, 2020, 8, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-17', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6330, 118, 29, 2020, 15, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-04-06', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6331, 118, 29, 2020, 16, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-04-13', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7194, 104, 31, 2020, 29, '30:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '10:00:00', '2020-07-13', NULL, '40:00:00', 5, 5, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5626, 131, 27, 2020, 1, '20:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '20:00:00', '2019-12-30', NULL, '40:00:00', 5, 5, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5627, 131, 27, 2020, 2, '20:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '20:00:00', '2020-01-06', NULL, '40:00:00', 5, 5, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5628, 131, 27, 2020, 3, '20:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '20:00:00', '2020-01-13', NULL, '40:00:00', 5, 5, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5629, 131, 27, 2020, 4, '20:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '20:00:00', '2020-01-20', NULL, '40:00:00', 5, 5, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5630, 131, 27, 2020, 5, '20:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '20:00:00', '2020-01-27', NULL, '40:00:00', 5, 5, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5631, 131, 27, 2020, 6, '20:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '20:00:00', '2020-02-03', NULL, '40:00:00', 5, 5, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5632, 131, 27, 2020, 7, '20:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '20:00:00', '2020-02-10', NULL, '40:00:00', 5, 5, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5633, 131, 27, 2020, 8, '20:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '20:00:00', '2020-02-17', NULL, '40:00:00', 5, 5, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5634, 104, 27, 2020, 1, '30:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '10:00:00', '2019-12-30', NULL, '40:00:00', 5, 5, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5635, 104, 27, 2020, 2, '30:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '10:00:00', '2020-01-06', NULL, '40:00:00', 5, 5, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6430, 130, 29, 2020, 11, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-09', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6431, 130, 29, 2020, 12, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-16', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6432, 130, 29, 2020, 13, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-23', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6433, 130, 29, 2020, 14, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-30', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7202, 151, 31, 2020, 29, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-07-13', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5636, 104, 27, 2020, 3, '30:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '10:00:00', '2020-01-13', NULL, '40:00:00', 5, 5, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5637, 104, 27, 2020, 4, '30:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '10:00:00', '2020-01-20', NULL, '40:00:00', 5, 5, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5638, 104, 27, 2020, 5, '30:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '10:00:00', '2020-01-27', NULL, '40:00:00', 5, 5, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5639, 104, 27, 2020, 6, '30:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '10:00:00', '2020-02-03', NULL, '40:00:00', 5, 5, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5640, 104, 27, 2020, 7, '30:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '10:00:00', '2020-02-10', NULL, '40:00:00', 5, 5, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5641, 104, 27, 2020, 8, '30:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '10:00:00', '2020-02-17', NULL, '40:00:00', 5, 5, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5642, 151, 27, 2020, 5, '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '-40:00:00', '2020-01-27', NULL, '00:00:00', 1, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5643, 151, 27, 2020, 6, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-03', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5644, 151, 27, 2020, 7, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-10', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5645, 151, 27, 2020, 8, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-17', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6332, 133, 29, 2020, 9, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-24', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6333, 133, 29, 2020, 10, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-02', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6334, 133, 29, 2020, 11, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-09', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5646, 138, 27, 2020, 1, '26:40:00', '24:00:00', '00:00:00', '00:00:00', '00:00:00', '-02:40:00', '2019-12-30', NULL, '24:00:00', 4, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5647, 138, 27, 2020, 2, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-06', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5648, 138, 27, 2020, 3, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-13', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5649, 138, 27, 2020, 4, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-20', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5650, 138, 27, 2020, 5, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-27', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5651, 138, 27, 2020, 6, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-03', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5652, 138, 27, 2020, 7, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-10', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5653, 138, 27, 2020, 8, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-17', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5654, 105, 27, 2020, 1, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2019-12-30', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5655, 105, 27, 2020, 2, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-06', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5656, 105, 27, 2020, 3, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-13', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5657, 105, 27, 2020, 4, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-20', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5658, 105, 27, 2020, 5, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-27', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6439, 129, 29, 2020, 12, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-16', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7203, 151, 31, 2020, 30, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-07-20', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5659, 105, 27, 2020, 6, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-03', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5660, 105, 27, 2020, 7, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-10', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5661, 105, 27, 2020, 8, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-17', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5662, 134, 27, 2020, 1, '26:40:00', '24:00:00', '00:00:00', '00:00:00', '00:00:00', '-02:40:00', '2019-12-30', NULL, '24:00:00', 4, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5663, 134, 27, 2020, 2, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-06', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5664, 134, 27, 2020, 3, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-13', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5665, 134, 27, 2020, 4, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-20', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5666, 134, 27, 2020, 5, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-27', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5667, 134, 27, 2020, 6, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-03', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5668, 134, 27, 2020, 7, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-10', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5669, 134, 27, 2020, 8, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-17', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6440, 129, 29, 2020, 13, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-23', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6441, 129, 29, 2020, 14, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-30', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5678, 102, 27, 2020, 1, '26:40:00', '24:00:00', '00:00:00', '00:00:00', '00:00:00', '-02:40:00', '2019-12-30', NULL, '24:00:00', 4, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5679, 102, 27, 2020, 2, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-06', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5680, 102, 27, 2020, 3, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-13', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5681, 102, 27, 2020, 4, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-20', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5682, 102, 27, 2020, 5, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-27', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5683, 102, 27, 2020, 6, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-03', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5684, 102, 27, 2020, 7, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-10', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5685, 102, 27, 2020, 8, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-17', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6364, 136, 29, 2020, 9, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-24', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6365, 136, 29, 2020, 10, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-02', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6366, 136, 29, 2020, 11, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-09', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6877, 147, 30, 2020, 23, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-06-01', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6878, 147, 30, 2020, 24, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-06-08', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7204, 151, 31, 2020, 31, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-07-27', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7205, 151, 31, 2020, 32, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-08-03', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5700, 118, 27, 2020, 7, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-10', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5701, 118, 27, 2020, 8, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-17', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5702, 133, 27, 2020, 1, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2019-12-30', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5703, 133, 27, 2020, 2, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-06', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5704, 133, 27, 2020, 3, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-13', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5705, 133, 27, 2020, 4, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-20', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5706, 133, 27, 2020, 5, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-27', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5707, 133, 27, 2020, 6, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-03', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5708, 133, 27, 2020, 7, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-10', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5709, 133, 27, 2020, 8, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-17', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6773, 115, 30, 2020, 20, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-05-11', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6774, 115, 30, 2020, 21, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-05-18', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6775, 115, 30, 2020, 22, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-05-25', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5719, 128, 27, 2020, 2, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-06', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5720, 128, 27, 2020, 3, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-13', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5721, 128, 27, 2020, 4, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-20', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5722, 128, 27, 2020, 5, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-27', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5723, 128, 27, 2020, 6, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-03', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5724, 128, 27, 2020, 7, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-10', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5725, 128, 27, 2020, 8, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-17', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6388, 122, 29, 2020, 9, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-24', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6792, 108, 30, 2020, 17, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-04-20', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6793, 108, 30, 2020, 18, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-04-27', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6794, 108, 30, 2020, 19, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-05-04', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6795, 108, 30, 2020, 20, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-05-11', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5742, 140, 27, 2020, 1, '26:40:00', '24:00:00', '00:00:00', '00:00:00', '00:00:00', '-02:40:00', '2019-12-30', NULL, '24:00:00', 4, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5743, 140, 27, 2020, 2, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-06', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5744, 140, 27, 2020, 3, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-13', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5745, 140, 27, 2020, 4, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-20', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5746, 140, 27, 2020, 5, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-27', NULL, '40:00:00', 5, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5747, 139, 27, 2020, 1, '26:40:00', '24:00:00', '00:00:00', '00:00:00', '00:00:00', '-02:40:00', '2019-12-30', NULL, '24:00:00', 4, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5748, 139, 27, 2020, 2, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-06', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5749, 139, 27, 2020, 3, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-13', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5750, 139, 27, 2020, 4, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-20', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6401, 106, 29, 2020, 14, '12:30:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '27:30:00', '2020-03-30', NULL, '40:00:00', 4, 3, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6811, 127, 30, 2020, 20, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-05-11', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6812, 127, 30, 2020, 21, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-05-18', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6916, 105, 30, 2020, 22, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-05-25', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6920, 134, 30, 2020, 18, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-04-27', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7223, 134, 31, 2020, 31, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-07-27', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5763, 122, 27, 2020, 1, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2019-12-30', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5764, 122, 27, 2020, 2, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-06', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5765, 122, 27, 2020, 3, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-13', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5766, 122, 27, 2020, 4, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-20', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5767, 122, 27, 2020, 5, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-27', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5768, 122, 27, 2020, 6, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-03', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5769, 122, 27, 2020, 7, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-10', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5770, 122, 27, 2020, 8, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-17', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6419, 145, 29, 2020, 16, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-04-13', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6420, 148, 29, 2020, 9, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-24', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6829, 103, 30, 2020, 22, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-05-25', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6832, 121, 30, 2020, 17, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-04-20', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6833, 121, 30, 2020, 18, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-04-27', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5787, 145, 27, 2020, 1, '26:40:00', '24:00:00', '00:00:00', '00:00:00', '00:00:00', '-02:40:00', '2019-12-30', NULL, '24:00:00', 4, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5788, 145, 27, 2020, 2, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-06', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5789, 145, 27, 2020, 3, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-13', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5790, 145, 27, 2020, 4, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-20', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5791, 145, 27, 2020, 5, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-27', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5792, 145, 27, 2020, 6, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-03', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5793, 145, 27, 2020, 7, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-10', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5794, 145, 27, 2020, 8, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-17', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6436, 129, 29, 2020, 9, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-24', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6437, 129, 29, 2020, 10, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-02', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6438, 129, 29, 2020, 11, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-09', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6935, 109, 30, 2020, 17, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-04-20', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6936, 109, 30, 2020, 18, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-04-27', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7224, 134, 31, 2020, 32, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-08-03', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7233, 109, 31, 2020, 25, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-06-15', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7234, 109, 31, 2020, 26, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-06-22', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7235, 109, 31, 2020, 27, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-06-29', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5806, 130, 27, 2020, 4, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-20', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5807, 130, 27, 2020, 5, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-27', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5808, 130, 27, 2020, 6, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-03', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5809, 130, 27, 2020, 7, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-10', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5810, 130, 27, 2020, 8, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-17', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5256, 129, 27, 2020, 1, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2019-12-30', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5257, 129, 27, 2020, 2, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-06', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5258, 129, 27, 2020, 3, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-13', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5259, 129, 27, 2020, 4, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-20', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6855, 119, 30, 2020, 17, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-04-20', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6856, 119, 30, 2020, 18, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-04-27', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6857, 119, 30, 2020, 19, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-05-04', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6858, 119, 30, 2020, 20, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-05-11', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6142, 146, 29, 2020, 9, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-24', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6143, 146, 29, 2020, 10, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-02', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6144, 146, 29, 2020, 11, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-09', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6145, 146, 29, 2020, 12, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-16', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6146, 146, 29, 2020, 13, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-23', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6147, 146, 29, 2020, 14, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-30', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6148, 146, 29, 2020, 15, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-04-06', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6149, 146, 29, 2020, 16, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-04-13', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6770, 115, 30, 2020, 17, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-04-20', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6771, 115, 30, 2020, 18, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-04-27', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6772, 115, 30, 2020, 19, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-05-04', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6941, 109, 30, 2020, 23, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-06-01', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6942, 109, 30, 2020, 24, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-06-08', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6166, 112, 29, 2020, 9, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-24', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6167, 112, 29, 2020, 10, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-02', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6168, 112, 29, 2020, 11, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-09', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6169, 112, 29, 2020, 12, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-16', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6170, 112, 29, 2020, 13, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-23', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6171, 112, 29, 2020, 14, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-30', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6172, 112, 29, 2020, 15, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-04-06', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6173, 112, 29, 2020, 16, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-04-13', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6788, 112, 30, 2020, 19, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-05-04', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6789, 112, 30, 2020, 20, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-05-11', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6790, 112, 30, 2020, 21, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-05-18', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6791, 112, 30, 2020, 22, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-05-25', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7236, 109, 31, 2020, 28, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-07-06', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7237, 109, 31, 2020, 29, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-07-13', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7241, 118, 31, 2020, 25, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-06-15', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7242, 118, 31, 2020, 26, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-06-22', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6186, 135, 29, 2020, 13, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-23', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6187, 135, 29, 2020, 14, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-30', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6188, 135, 29, 2020, 15, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-04-06', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6189, 135, 29, 2020, 16, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-04-13', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6190, 127, 29, 2020, 9, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-24', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6191, 127, 29, 2020, 10, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-02', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6192, 127, 29, 2020, 11, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-09', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6193, 127, 29, 2020, 12, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-16', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6194, 127, 29, 2020, 13, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-23', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6195, 127, 29, 2020, 14, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-30', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6196, 127, 29, 2020, 15, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-04-06', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6206, 103, 29, 2020, 9, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-24', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6207, 103, 29, 2020, 10, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-02', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6208, 103, 29, 2020, 11, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-09', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6209, 103, 29, 2020, 12, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-16', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6210, 103, 29, 2020, 13, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-23', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6211, 103, 29, 2020, 14, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-30', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6212, 103, 29, 2020, 15, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-04-06', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6213, 103, 29, 2020, 16, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-04-13', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6813, 127, 30, 2020, 22, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-05-25', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6814, 127, 30, 2020, 23, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-06-01', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6815, 127, 30, 2020, 24, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-06-08', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6816, 149, 30, 2020, 17, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-04-20', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6914, 105, 30, 2020, 20, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-05-11', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6230, 119, 29, 2020, 9, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-24', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6231, 119, 29, 2020, 10, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-02', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6232, 119, 29, 2020, 11, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-09', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6233, 119, 29, 2020, 12, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-16', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6234, 119, 29, 2020, 13, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-23', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6235, 119, 29, 2020, 14, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-30', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6236, 119, 29, 2020, 15, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-04-06', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6237, 119, 29, 2020, 16, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-04-13', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6830, 103, 30, 2020, 23, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-06-01', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6831, 103, 30, 2020, 24, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-06-08', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6917, 105, 30, 2020, 23, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-06-01', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6918, 105, 30, 2020, 24, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-06-08', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6981, 142, 30, 2020, 23, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-06-01', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7243, 118, 31, 2020, 27, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-06-29', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7244, 118, 31, 2020, 28, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-07-06', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7245, 118, 31, 2020, 29, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-07-13', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7246, 118, 31, 2020, 30, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-07-20', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6251, 147, 29, 2020, 14, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-30', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6252, 147, 29, 2020, 15, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-04-06', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6253, 147, 29, 2020, 16, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-04-13', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6254, 131, 29, 2020, 9, '20:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '20:00:00', '2020-02-24', NULL, '40:00:00', 5, 5, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6255, 131, 29, 2020, 10, '20:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '20:00:00', '2020-03-02', NULL, '40:00:00', 5, 5, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6256, 131, 29, 2020, 11, '20:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '20:00:00', '2020-03-09', NULL, '40:00:00', 5, 5, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6257, 131, 29, 2020, 12, '20:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '20:00:00', '2020-03-16', NULL, '40:00:00', 5, 5, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6258, 131, 29, 2020, 13, '20:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '20:00:00', '2020-03-23', NULL, '40:00:00', 5, 5, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6259, 131, 29, 2020, 14, '20:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '20:00:00', '2020-03-30', NULL, '40:00:00', 5, 5, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6260, 131, 29, 2020, 15, '20:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '20:00:00', '2020-04-06', NULL, '40:00:00', 5, 5, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6261, 131, 29, 2020, 16, '20:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '20:00:00', '2020-04-13', NULL, '40:00:00', 5, 5, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6847, 125, 30, 2020, 17, '20:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '20:00:00', '2020-04-20', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6848, 125, 30, 2020, 18, '20:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '20:00:00', '2020-04-27', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6849, 125, 30, 2020, 19, '20:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '20:00:00', '2020-05-04', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7247, 118, 31, 2020, 31, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-07-27', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6270, 151, 29, 2020, 9, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-24', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6271, 151, 29, 2020, 10, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-02', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6272, 151, 29, 2020, 11, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-09', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6273, 151, 29, 2020, 12, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-16', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6274, 151, 29, 2020, 13, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-23', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6275, 151, 29, 2020, 14, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-30', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6276, 151, 29, 2020, 15, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-04-06', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6277, 151, 29, 2020, 16, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-04-13', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6850, 125, 30, 2020, 20, '20:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '20:00:00', '2020-05-11', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6851, 125, 30, 2020, 21, '20:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '20:00:00', '2020-05-18', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6852, 125, 30, 2020, 22, '20:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '20:00:00', '2020-05-25', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6925, 134, 30, 2020, 23, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-06-01', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6926, 134, 30, 2020, 24, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-06-08', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7248, 118, 31, 2020, 32, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-08-03', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7260, 111, 31, 2020, 28, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-07-06', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7261, 111, 31, 2020, 29, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-07-13', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7262, 111, 31, 2020, 30, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-07-20', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6294, 134, 29, 2020, 9, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-24', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6295, 134, 29, 2020, 10, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-02', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6296, 134, 29, 2020, 11, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-09', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6297, 134, 29, 2020, 12, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-16', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6298, 134, 29, 2020, 13, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-23', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6299, 134, 29, 2020, 14, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-30', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6300, 134, 29, 2020, 15, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-04-06', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6301, 134, 29, 2020, 16, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-04-13', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6861, 119, 30, 2020, 23, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-06-01', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6862, 119, 30, 2020, 24, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-06-08', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6316, 109, 29, 2020, 9, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-24', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6317, 109, 29, 2020, 10, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-02', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6318, 109, 29, 2020, 11, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-09', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6319, 109, 29, 2020, 12, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-16', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6320, 109, 29, 2020, 13, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-23', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6321, 109, 29, 2020, 14, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-30', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6322, 109, 29, 2020, 15, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-04-06', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6323, 109, 29, 2020, 16, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-04-13', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6879, 131, 30, 2020, 17, '20:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '20:00:00', '2020-04-20', NULL, '40:00:00', 5, 5, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6880, 131, 30, 2020, 18, '20:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '20:00:00', '2020-04-27', NULL, '40:00:00', 5, 5, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6881, 131, 30, 2020, 19, '20:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '20:00:00', '2020-05-04', NULL, '40:00:00', 5, 5, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6882, 131, 30, 2020, 20, '20:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '20:00:00', '2020-05-11', NULL, '40:00:00', 5, 5, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6894, 104, 30, 2020, 24, '30:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '10:00:00', '2020-06-08', NULL, '40:00:00', 5, 5, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7263, 111, 31, 2020, 31, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-07-27', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7264, 111, 31, 2020, 32, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-08-03', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7267, 128, 31, 2020, 27, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-06-29', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7268, 128, 31, 2020, 28, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-07-06', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6337, 133, 29, 2020, 14, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-30', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6338, 133, 29, 2020, 15, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-04-06', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6339, 133, 29, 2020, 16, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-04-13', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6340, 111, 29, 2020, 9, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-24', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6341, 111, 29, 2020, 10, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-02', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6342, 111, 29, 2020, 11, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-09', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6343, 111, 29, 2020, 12, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-16', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6344, 111, 29, 2020, 13, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-23', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6345, 111, 29, 2020, 14, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-30', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6346, 111, 29, 2020, 15, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-04-06', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6347, 111, 29, 2020, 16, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-04-13', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7005, 141, 30, 2020, 23, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-06-01', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7006, 141, 30, 2020, 24, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-06-08', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6356, 142, 29, 2020, 9, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-24', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6357, 142, 29, 2020, 10, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-02', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6358, 142, 29, 2020, 11, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-09', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6359, 142, 29, 2020, 12, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-16', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6360, 142, 29, 2020, 13, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-23', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6361, 142, 29, 2020, 14, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-30', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6362, 142, 29, 2020, 15, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-04-06', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6363, 142, 29, 2020, 16, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-04-13', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6911, 105, 30, 2020, 17, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-04-20', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6912, 105, 30, 2020, 18, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-04-27', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6913, 105, 30, 2020, 19, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-05-04', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6966, 111, 30, 2020, 24, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-06-08', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7269, 128, 31, 2020, 29, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-07-13', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7270, 128, 31, 2020, 30, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-07-20', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7288, 136, 31, 2020, 32, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-08-03', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7289, 139, 31, 2020, 25, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-06-15', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6380, 141, 29, 2020, 9, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-24', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6381, 141, 29, 2020, 10, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-02', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6382, 141, 29, 2020, 11, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-09', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6383, 141, 29, 2020, 12, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-16', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6384, 141, 29, 2020, 13, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-23', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6385, 141, 29, 2020, 14, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-30', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6386, 141, 29, 2020, 15, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-04-06', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6387, 141, 29, 2020, 16, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-04-13', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6919, 134, 30, 2020, 17, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-04-20', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6982, 142, 30, 2020, 24, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-06-08', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6402, 106, 29, 2020, 15, '12:30:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '27:30:00', '2020-04-06', NULL, '40:00:00', 4, 3, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6403, 106, 29, 2020, 16, '12:30:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '27:30:00', '2020-04-13', NULL, '40:00:00', 4, 3, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6404, 110, 29, 2020, 9, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-24', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6405, 110, 29, 2020, 10, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-02', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6406, 110, 29, 2020, 11, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-09', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6407, 110, 29, 2020, 12, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-16', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6408, 110, 29, 2020, 13, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-23', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6409, 110, 29, 2020, 14, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-30', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6410, 110, 29, 2020, 15, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-04-06', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6411, 110, 29, 2020, 16, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-04-13', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6990, 136, 30, 2020, 24, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-06-08', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6999, 141, 30, 2020, 17, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-04-20', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7000, 141, 30, 2020, 18, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-04-27', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7063, 143, 30, 2020, 17, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-04-20', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7297, 141, 31, 2020, 25, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-06-15', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6421, 148, 29, 2020, 10, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-02', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6422, 148, 29, 2020, 11, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-09', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6423, 148, 29, 2020, 12, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-16', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6424, 148, 29, 2020, 13, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-23', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6425, 148, 29, 2020, 14, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-30', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6426, 148, 29, 2020, 15, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-04-06', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6427, 148, 29, 2020, 16, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-04-13', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6945, 118, 30, 2020, 19, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-05-04', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6946, 118, 30, 2020, 20, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-05-11', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6947, 118, 30, 2020, 21, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-05-18', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7003, 141, 30, 2020, 21, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-05-18', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7004, 141, 30, 2020, 22, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-05-25', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7064, 143, 30, 2020, 18, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-04-27', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6444, 143, 29, 2020, 9, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-24', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6445, 143, 29, 2020, 10, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-02', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6446, 143, 29, 2020, 11, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-09', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6447, 143, 29, 2020, 12, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-16', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6448, 143, 29, 2020, 13, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-23', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6449, 143, 29, 2020, 14, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-30', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6450, 143, 29, 2020, 15, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-04-06', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6451, 143, 29, 2020, 16, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-04-13', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6975, 142, 30, 2020, 17, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-04-20', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6976, 142, 30, 2020, 18, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-04-27', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6977, 142, 30, 2020, 19, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-05-04', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7025, 110, 30, 2020, 19, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-05-04', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7026, 110, 30, 2020, 20, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-05-11', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7027, 110, 30, 2020, 21, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-05-18', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7298, 141, 31, 2020, 26, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-06-22', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6777, 115, 30, 2020, 24, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-06-08', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6778, 114, 30, 2020, 17, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-04-20', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6779, 114, 30, 2020, 18, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-04-27', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6780, 114, 30, 2020, 19, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-05-04', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6781, 114, 30, 2020, 20, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-05-11', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6782, 114, 30, 2020, 21, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-05-18', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6783, 114, 30, 2020, 22, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-05-25', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6784, 114, 30, 2020, 23, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-06-01', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6785, 114, 30, 2020, 24, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-06-08', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6798, 108, 30, 2020, 23, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-06-01', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6799, 108, 30, 2020, 24, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-06-08', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6800, 135, 30, 2020, 17, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-04-20', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6801, 135, 30, 2020, 18, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-04-27', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6802, 135, 30, 2020, 19, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-05-04', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6803, 135, 30, 2020, 20, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-05-11', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6804, 135, 30, 2020, 21, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-05-18', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6805, 135, 30, 2020, 22, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-05-25', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6806, 135, 30, 2020, 23, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-06-01', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6807, 135, 30, 2020, 24, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-06-08', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7052, 130, 30, 2020, 22, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-05-25', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7053, 130, 30, 2020, 23, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-06-01', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7054, 130, 30, 2020, 24, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-06-08', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6817, 149, 30, 2020, 18, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-04-27', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6818, 149, 30, 2020, 19, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-05-04', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6819, 149, 30, 2020, 20, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-05-11', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6820, 149, 30, 2020, 21, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-05-18', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6821, 149, 30, 2020, 22, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-05-25', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6822, 149, 30, 2020, 23, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-06-01', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6823, 149, 30, 2020, 24, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-06-08', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7007, 122, 30, 2020, 17, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-04-20', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7008, 122, 30, 2020, 18, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-04-27', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7009, 122, 30, 2020, 19, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-05-04', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7010, 122, 30, 2020, 20, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-05-11', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7011, 122, 30, 2020, 21, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-05-18', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7067, 143, 30, 2020, 21, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-05-18', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7068, 143, 30, 2020, 22, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-05-25', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7299, 141, 31, 2020, 27, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-06-29', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6840, 117, 30, 2020, 18, '40:00:00', '08:00:00', '00:00:00', '00:00:00', '00:00:00', '-32:00:00', '2020-04-27', NULL, '08:00:00', 2, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6841, 117, 30, 2020, 19, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-05-04', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6842, 117, 30, 2020, 20, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-05-11', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6843, 117, 30, 2020, 21, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-05-18', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6844, 117, 30, 2020, 22, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-05-25', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6845, 117, 30, 2020, 23, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-06-01', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6846, 117, 30, 2020, 24, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-06-08', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7028, 110, 30, 2020, 22, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-05-25', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7029, 110, 30, 2020, 23, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-06-01', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7030, 110, 30, 2020, 24, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-06-08', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7031, 145, 30, 2020, 17, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-04-20', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7107, 135, 31, 2020, 29, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-07-13', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7108, 135, 31, 2020, 30, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-07-20', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7300, 141, 31, 2020, 28, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-07-06', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6863, 113, 30, 2020, 17, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-04-20', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6864, 113, 30, 2020, 18, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-04-27', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6865, 113, 30, 2020, 19, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-05-04', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6866, 113, 30, 2020, 20, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-05-11', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6867, 113, 30, 2020, 21, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-05-18', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6868, 113, 30, 2020, 22, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-05-25', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6869, 113, 30, 2020, 23, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-06-01', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6870, 113, 30, 2020, 24, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-06-08', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7047, 130, 30, 2020, 17, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-04-20', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7048, 130, 30, 2020, 18, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-04-27', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7049, 130, 30, 2020, 19, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-05-04', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7088, 114, 31, 2020, 26, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-06-22', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7089, 114, 31, 2020, 27, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-06-29', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6883, 131, 30, 2020, 21, '20:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '20:00:00', '2020-05-18', NULL, '40:00:00', 5, 5, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6884, 131, 30, 2020, 22, '20:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '20:00:00', '2020-05-25', NULL, '40:00:00', 5, 5, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6885, 131, 30, 2020, 23, '20:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '20:00:00', '2020-06-01', NULL, '40:00:00', 5, 5, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6886, 131, 30, 2020, 24, '20:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '20:00:00', '2020-06-08', NULL, '40:00:00', 5, 5, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6887, 104, 30, 2020, 17, '30:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '10:00:00', '2020-04-20', NULL, '40:00:00', 5, 5, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6888, 104, 30, 2020, 18, '30:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '10:00:00', '2020-04-27', NULL, '40:00:00', 5, 5, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6889, 104, 30, 2020, 19, '30:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '10:00:00', '2020-05-04', NULL, '40:00:00', 5, 5, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6890, 104, 30, 2020, 20, '30:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '10:00:00', '2020-05-11', NULL, '40:00:00', 5, 5, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6891, 104, 30, 2020, 21, '30:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '10:00:00', '2020-05-18', NULL, '40:00:00', 5, 5, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6892, 104, 30, 2020, 22, '30:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '10:00:00', '2020-05-25', NULL, '40:00:00', 5, 5, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6893, 104, 30, 2020, 23, '30:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '10:00:00', '2020-06-01', NULL, '40:00:00', 5, 5, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7092, 114, 31, 2020, 30, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-07-20', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7093, 114, 31, 2020, 31, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-07-27', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6903, 138, 30, 2020, 17, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-04-20', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6904, 138, 30, 2020, 18, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-04-27', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6905, 138, 30, 2020, 19, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-05-04', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6906, 138, 30, 2020, 20, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-05-11', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6907, 138, 30, 2020, 21, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-05-18', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6908, 138, 30, 2020, 22, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-05-25', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6909, 138, 30, 2020, 23, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-06-01', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6910, 138, 30, 2020, 24, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-06-08', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7069, 143, 30, 2020, 23, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-06-01', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7070, 143, 30, 2020, 24, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-06-08', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7104, 135, 31, 2020, 26, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-06-22', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7105, 135, 31, 2020, 27, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-06-29', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7106, 135, 31, 2020, 28, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-07-06', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6927, 102, 30, 2020, 17, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-04-20', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6928, 102, 30, 2020, 18, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-04-27', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6929, 102, 30, 2020, 19, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-05-04', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6930, 102, 30, 2020, 20, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-05-11', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6931, 102, 30, 2020, 21, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-05-18', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6932, 102, 30, 2020, 22, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-05-25', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6933, 102, 30, 2020, 23, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-06-01', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6934, 102, 30, 2020, 24, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-06-08', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7087, 114, 31, 2020, 25, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-06-15', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7130, 103, 31, 2020, 28, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-07-06', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7133, 103, 31, 2020, 31, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-07-27', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7134, 103, 31, 2020, 32, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-08-03', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6948, 118, 30, 2020, 22, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-05-25', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6949, 118, 30, 2020, 23, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-06-01', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6950, 118, 30, 2020, 24, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-06-08', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6951, 133, 30, 2020, 17, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-04-20', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6952, 133, 30, 2020, 18, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-04-27', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6953, 133, 30, 2020, 19, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-05-04', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6954, 133, 30, 2020, 20, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-05-11', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6955, 133, 30, 2020, 21, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-05-18', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6956, 133, 30, 2020, 22, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-05-25', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6957, 133, 30, 2020, 23, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-06-01', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6958, 133, 30, 2020, 24, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-06-08', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7131, 103, 31, 2020, 29, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-07-13', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7132, 103, 31, 2020, 30, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-07-20', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6967, 128, 30, 2020, 17, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-04-20', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6968, 128, 30, 2020, 18, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-04-27', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6969, 128, 30, 2020, 19, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-05-04', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6970, 128, 30, 2020, 20, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-05-11', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6971, 128, 30, 2020, 21, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-05-18', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6972, 128, 30, 2020, 22, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-05-25', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6973, 128, 30, 2020, 23, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-06-01', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6974, 128, 30, 2020, 24, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-06-08', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7109, 135, 31, 2020, 31, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-07-27', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7110, 135, 31, 2020, 32, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-08-03', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7152, 125, 31, 2020, 27, '20:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '20:00:00', '2020-06-29', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6991, 139, 30, 2020, 17, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-04-20', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6992, 139, 30, 2020, 18, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-04-27', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6993, 139, 30, 2020, 19, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-05-04', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6994, 139, 30, 2020, 20, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-05-11', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6995, 139, 30, 2020, 21, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-05-18', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6996, 139, 30, 2020, 22, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-05-25', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6997, 139, 30, 2020, 23, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-06-01', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6998, 139, 30, 2020, 24, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-06-08', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7127, 103, 31, 2020, 25, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-06-15', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7128, 103, 31, 2020, 26, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-06-22', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7129, 103, 31, 2020, 27, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-06-29', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7013, 122, 30, 2020, 23, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-06-01', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7014, 122, 30, 2020, 24, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-06-08', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7015, 106, 30, 2020, 17, '12:30:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '27:30:00', '2020-04-20', NULL, '40:00:00', 4, 3, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7016, 106, 30, 2020, 18, '12:30:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '27:30:00', '2020-04-27', NULL, '40:00:00', 4, 3, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7017, 106, 30, 2020, 19, '12:30:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '27:30:00', '2020-05-04', NULL, '40:00:00', 4, 3, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7018, 106, 30, 2020, 20, '12:30:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '27:30:00', '2020-05-11', NULL, '40:00:00', 4, 3, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7019, 106, 30, 2020, 21, '12:30:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '27:30:00', '2020-05-18', NULL, '40:00:00', 4, 3, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7020, 106, 30, 2020, 22, '12:30:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '27:30:00', '2020-05-25', NULL, '40:00:00', 4, 3, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7021, 106, 30, 2020, 23, '12:30:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '27:30:00', '2020-06-01', NULL, '40:00:00', 4, 3, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7022, 106, 30, 2020, 24, '12:30:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '27:30:00', '2020-06-08', NULL, '40:00:00', 4, 3, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7158, 119, 31, 2020, 25, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-06-15', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7159, 119, 31, 2020, 26, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-06-22', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7160, 119, 31, 2020, 27, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-06-29', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7161, 119, 31, 2020, 28, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-07-06', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7305, 122, 31, 2020, 25, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-06-15', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7032, 145, 30, 2020, 18, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-04-27', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7033, 145, 30, 2020, 19, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-05-04', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7034, 145, 30, 2020, 20, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-05-11', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7035, 145, 30, 2020, 21, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-05-18', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7036, 145, 30, 2020, 22, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-05-25', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7037, 145, 30, 2020, 23, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-06-01', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7038, 145, 30, 2020, 24, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-06-08', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7150, 125, 31, 2020, 25, '20:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '20:00:00', '2020-06-15', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7151, 125, 31, 2020, 26, '20:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '20:00:00', '2020-06-22', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7179, 147, 31, 2020, 30, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-07-20', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7180, 147, 31, 2020, 31, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-07-27', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7181, 147, 31, 2020, 32, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-08-03', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7055, 129, 30, 2020, 17, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-04-20', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7056, 129, 30, 2020, 18, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-04-27', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7057, 129, 30, 2020, 19, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-05-04', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7058, 129, 30, 2020, 20, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-05-11', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7059, 129, 30, 2020, 21, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-05-18', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7060, 129, 30, 2020, 22, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-05-25', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7061, 129, 30, 2020, 23, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-06-01', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7062, 129, 30, 2020, 24, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-06-08', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7162, 119, 31, 2020, 29, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-07-13', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7195, 104, 31, 2020, 30, '30:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '10:00:00', '2020-07-20', NULL, '40:00:00', 5, 5, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7196, 104, 31, 2020, 31, '30:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '10:00:00', '2020-07-27', NULL, '40:00:00', 5, 5, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7197, 104, 31, 2020, 32, '30:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '10:00:00', '2020-08-03', NULL, '40:00:00', 5, 5, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7078, 146, 31, 2020, 32, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-08-03', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7079, 115, 31, 2020, 25, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-06-15', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7080, 115, 31, 2020, 26, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-06-22', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7081, 115, 31, 2020, 27, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-06-29', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7082, 115, 31, 2020, 28, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-07-06', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7083, 115, 31, 2020, 29, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-07-13', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7084, 115, 31, 2020, 30, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-07-20', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7085, 115, 31, 2020, 31, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-07-27', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7086, 115, 31, 2020, 32, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-08-03', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7217, 134, 31, 2020, 25, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-06-15', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7218, 134, 31, 2020, 26, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-06-22', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7221, 134, 31, 2020, 29, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-07-13', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7222, 134, 31, 2020, 30, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-07-20', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7306, 122, 31, 2020, 26, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-06-22', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7307, 122, 31, 2020, 27, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-06-29', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7308, 122, 31, 2020, 28, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-07-06', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7309, 122, 31, 2020, 29, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-07-13', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7097, 108, 31, 2020, 27, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-06-29', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7098, 108, 31, 2020, 28, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-07-06', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7099, 108, 31, 2020, 29, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-07-13', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7100, 108, 31, 2020, 30, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-07-20', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7101, 108, 31, 2020, 31, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-07-27', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7102, 108, 31, 2020, 32, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-08-03', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7103, 135, 31, 2020, 25, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-06-15', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7198, 151, 31, 2020, 25, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-06-15', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7199, 151, 31, 2020, 26, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-06-22', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7200, 151, 31, 2020, 27, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-06-29', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7201, 151, 31, 2020, 28, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-07-06', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7119, 149, 31, 2020, 25, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-06-15', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7120, 149, 31, 2020, 26, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-06-22', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7121, 149, 31, 2020, 27, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-06-29', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7122, 149, 31, 2020, 28, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-07-06', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7123, 149, 31, 2020, 29, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-07-13', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7124, 149, 31, 2020, 30, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-07-20', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7125, 149, 31, 2020, 31, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-07-27', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7126, 149, 31, 2020, 32, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-08-03', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7219, 134, 31, 2020, 27, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-06-29', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7220, 134, 31, 2020, 28, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-07-06', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7142, 117, 31, 2020, 25, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-06-15', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7143, 117, 31, 2020, 26, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-06-22', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7144, 117, 31, 2020, 27, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-06-29', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7145, 117, 31, 2020, 28, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-07-06', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7146, 117, 31, 2020, 29, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-07-13', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7147, 117, 31, 2020, 30, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-07-20', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7148, 117, 31, 2020, 31, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-07-27', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7149, 117, 31, 2020, 32, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-08-03', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7238, 109, 31, 2020, 30, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-07-20', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7239, 109, 31, 2020, 31, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-07-27', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7240, 109, 31, 2020, 32, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-08-03', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7163, 119, 31, 2020, 30, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-07-20', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7164, 119, 31, 2020, 31, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-07-27', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7165, 119, 31, 2020, 32, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-08-03', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7166, 113, 31, 2020, 25, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-06-15', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7167, 113, 31, 2020, 26, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-06-22', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7168, 113, 31, 2020, 27, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-06-29', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7169, 113, 31, 2020, 28, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-07-06', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7170, 113, 31, 2020, 29, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-07-13', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7171, 113, 31, 2020, 30, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-07-20', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7172, 113, 31, 2020, 31, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-07-27', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7173, 113, 31, 2020, 32, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-08-03', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7257, 111, 31, 2020, 25, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-06-15', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7258, 111, 31, 2020, 26, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-06-22', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7310, 122, 31, 2020, 30, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-07-20', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7311, 122, 31, 2020, 31, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-07-27', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7312, 122, 31, 2020, 32, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-08-03', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7325, 110, 31, 2020, 29, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-07-13', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7182, 131, 31, 2020, 25, '20:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '20:00:00', '2020-06-15', NULL, '40:00:00', 5, 5, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7183, 131, 31, 2020, 26, '20:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '20:00:00', '2020-06-22', NULL, '40:00:00', 5, 5, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7184, 131, 31, 2020, 27, '20:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '20:00:00', '2020-06-29', NULL, '40:00:00', 5, 5, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7185, 131, 31, 2020, 28, '20:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '20:00:00', '2020-07-06', NULL, '40:00:00', 5, 5, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7186, 131, 31, 2020, 29, '20:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '20:00:00', '2020-07-13', NULL, '40:00:00', 5, 5, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7187, 131, 31, 2020, 30, '20:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '20:00:00', '2020-07-20', NULL, '40:00:00', 5, 5, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7188, 131, 31, 2020, 31, '20:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '20:00:00', '2020-07-27', NULL, '40:00:00', 5, 5, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7189, 131, 31, 2020, 32, '20:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '20:00:00', '2020-08-03', NULL, '40:00:00', 5, 5, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7259, 111, 31, 2020, 27, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-06-29', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7265, 128, 31, 2020, 25, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-06-15', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7266, 128, 31, 2020, 26, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-06-22', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7206, 138, 31, 2020, 25, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-06-15', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7207, 138, 31, 2020, 26, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-06-22', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7208, 138, 31, 2020, 27, '40:00:00', '16:00:00', '00:00:00', '00:00:00', '00:00:00', '-24:00:00', '2020-06-29', NULL, '16:00:00', 2, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7209, 105, 31, 2020, 25, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-06-15', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7210, 105, 31, 2020, 26, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-06-22', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7211, 105, 31, 2020, 27, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-06-29', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7212, 105, 31, 2020, 28, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-07-06', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7213, 105, 31, 2020, 29, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-07-13', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7214, 105, 31, 2020, 30, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-07-20', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7215, 105, 31, 2020, 31, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-07-27', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7216, 105, 31, 2020, 32, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-08-03', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7281, 136, 31, 2020, 25, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-06-15', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7282, 136, 31, 2020, 26, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-06-22', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7283, 136, 31, 2020, 27, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-06-29', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7326, 110, 31, 2020, 30, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-07-20', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7225, 102, 31, 2020, 25, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-06-15', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7226, 102, 31, 2020, 26, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-06-22', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7227, 102, 31, 2020, 27, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-06-29', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7228, 102, 31, 2020, 28, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-07-06', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7229, 102, 31, 2020, 29, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-07-13', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7230, 102, 31, 2020, 30, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-07-20', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7231, 102, 31, 2020, 31, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-07-27', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7232, 102, 31, 2020, 32, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-08-03', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7284, 136, 31, 2020, 28, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-07-06', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7285, 136, 31, 2020, 29, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-07-13', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7286, 136, 31, 2020, 30, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-07-20', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7287, 136, 31, 2020, 31, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-07-27', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7249, 133, 31, 2020, 25, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-06-15', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7250, 133, 31, 2020, 26, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-06-22', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7251, 133, 31, 2020, 27, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-06-29', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7252, 133, 31, 2020, 28, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-07-06', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7253, 133, 31, 2020, 29, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-07-13', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7254, 133, 31, 2020, 30, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-07-20', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7255, 133, 31, 2020, 31, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-07-27', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7256, 133, 31, 2020, 32, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-08-03', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7301, 141, 31, 2020, 29, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-07-13', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7302, 141, 31, 2020, 30, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-07-20', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7303, 141, 31, 2020, 31, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-07-27', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7304, 141, 31, 2020, 32, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-08-03', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7327, 110, 31, 2020, 31, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-07-27', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7328, 110, 31, 2020, 32, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-08-03', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7329, 145, 31, 2020, 25, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-06-15', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7330, 145, 31, 2020, 26, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-06-22', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7271, 128, 31, 2020, 31, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-07-27', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7272, 128, 31, 2020, 32, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-08-03', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7273, 142, 31, 2020, 25, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-06-15', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7274, 142, 31, 2020, 26, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-06-22', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7275, 142, 31, 2020, 27, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-06-29', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7276, 142, 31, 2020, 28, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-07-06', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7277, 142, 31, 2020, 29, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-07-13', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7278, 142, 31, 2020, 30, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-07-20', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7279, 142, 31, 2020, 31, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-07-27', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7280, 142, 31, 2020, 32, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-08-03', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7290, 139, 31, 2020, 26, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-06-22', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7291, 139, 31, 2020, 27, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-06-29', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7292, 139, 31, 2020, 28, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-07-06', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7293, 139, 31, 2020, 29, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-07-13', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7294, 139, 31, 2020, 30, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-07-20', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7295, 139, 31, 2020, 31, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-07-27', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7296, 139, 31, 2020, 32, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-08-03', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7321, 110, 31, 2020, 25, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-06-15', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7322, 110, 31, 2020, 26, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-06-22', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7323, 110, 31, 2020, 27, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-06-29', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7324, 110, 31, 2020, 28, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-07-06', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7313, 106, 31, 2020, 25, '12:30:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '27:30:00', '2020-06-15', NULL, '40:00:00', 4, 3, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7314, 106, 31, 2020, 26, '12:30:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '27:30:00', '2020-06-22', NULL, '40:00:00', 4, 3, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7315, 106, 31, 2020, 27, '12:30:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '27:30:00', '2020-06-29', NULL, '40:00:00', 4, 3, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7316, 106, 31, 2020, 28, '12:30:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '27:30:00', '2020-07-06', NULL, '40:00:00', 4, 3, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7317, 106, 31, 2020, 29, '12:30:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '27:30:00', '2020-07-13', NULL, '40:00:00', 4, 3, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7318, 106, 31, 2020, 30, '12:30:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '27:30:00', '2020-07-20', NULL, '40:00:00', 4, 3, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7319, 106, 31, 2020, 31, '12:30:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '27:30:00', '2020-07-27', NULL, '40:00:00', 4, 3, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7320, 106, 31, 2020, 32, '12:30:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '27:30:00', '2020-08-03', NULL, '40:00:00', 4, 3, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7331, 145, 31, 2020, 27, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-06-29', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7332, 145, 31, 2020, 28, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-07-06', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7333, 145, 31, 2020, 29, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-07-13', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7334, 145, 31, 2020, 30, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-07-20', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7335, 145, 31, 2020, 31, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-07-27', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7336, 145, 31, 2020, 32, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-08-03', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7337, 148, 31, 2020, 25, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-06-15', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7338, 148, 31, 2020, 26, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-06-22', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7339, 148, 31, 2020, 27, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-06-29', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7340, 148, 31, 2020, 28, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-07-06', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7341, 148, 31, 2020, 29, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-07-13', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7342, 148, 31, 2020, 30, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-07-20', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7343, 148, 31, 2020, 31, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-07-27', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7344, 148, 31, 2020, 32, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-08-03', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7345, 130, 31, 2020, 25, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-06-15', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7346, 130, 31, 2020, 26, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-06-22', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7347, 130, 31, 2020, 27, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-06-29', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7348, 130, 31, 2020, 28, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-07-06', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7349, 130, 31, 2020, 29, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-07-13', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7350, 130, 31, 2020, 30, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-07-20', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7351, 130, 31, 2020, 31, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-07-27', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7352, 130, 31, 2020, 32, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-08-03', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7353, 129, 31, 2020, 25, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-06-15', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7354, 129, 31, 2020, 26, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-06-22', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7355, 129, 31, 2020, 27, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-06-29', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7356, 129, 31, 2020, 28, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-07-06', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7357, 129, 31, 2020, 29, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-07-13', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7358, 129, 31, 2020, 30, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-07-20', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7359, 129, 31, 2020, 31, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-07-27', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7360, 129, 31, 2020, 32, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-08-03', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7361, 143, 31, 2020, 25, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-06-15', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7362, 143, 31, 2020, 26, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-06-22', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7363, 143, 31, 2020, 27, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-06-29', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7364, 143, 31, 2020, 28, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-07-06', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7365, 143, 31, 2020, 29, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-07-13', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7366, 143, 31, 2020, 30, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-07-20', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7367, 143, 31, 2020, 31, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-07-27', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7368, 143, 31, 2020, 32, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-08-03', NULL, '40:00:00', 6, 6, NULL); -- @@ -5250,6 +10240,39 @@ INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, cal -- Data for Name: vacancydays; Type: TABLE DATA; Schema: portanova; Owner: - -- +INSERT INTO portanova.vacancydays (id, daydate, vacancyname) VALUES (1, '2020-01-01', 'Nouvel An'); +INSERT INTO portanova.vacancydays (id, daydate, vacancyname) VALUES (2, '2020-04-13', 'Lundi de Pâques'); +INSERT INTO portanova.vacancydays (id, daydate, vacancyname) VALUES (3, '2020-05-01', 'Premier.05'); +INSERT INTO portanova.vacancydays (id, daydate, vacancyname) VALUES (4, '2020-05-09', 'Journée de l''Europe'); +INSERT INTO portanova.vacancydays (id, daydate, vacancyname) VALUES (5, '2020-05-21', 'Ascension'); +INSERT INTO portanova.vacancydays (id, daydate, vacancyname) VALUES (6, '2020-06-01', 'Lundi de Pentecôte'); +INSERT INTO portanova.vacancydays (id, daydate, vacancyname) VALUES (7, '2020-06-23', 'Célébration de l''anniversaire du Grand-Duc'); +INSERT INTO portanova.vacancydays (id, daydate, vacancyname) VALUES (8, '2020-08-15', 'Assomption'); +INSERT INTO portanova.vacancydays (id, daydate, vacancyname) VALUES (9, '2020-11-01', 'Toussaint'); +INSERT INTO portanova.vacancydays (id, daydate, vacancyname) VALUES (10, '2020-12-25', 'Noël'); +INSERT INTO portanova.vacancydays (id, daydate, vacancyname) VALUES (11, '2020-12-26', 'Deuxième jour de Noël'); +INSERT INTO portanova.vacancydays (id, daydate, vacancyname) VALUES (12, '2021-01-01', 'Nouvel An'); +INSERT INTO portanova.vacancydays (id, daydate, vacancyname) VALUES (13, '2021-04-05', 'Lundi de Pâques'); +INSERT INTO portanova.vacancydays (id, daydate, vacancyname) VALUES (14, '2021-05-01', 'Premier.05'); +INSERT INTO portanova.vacancydays (id, daydate, vacancyname) VALUES (15, '2021-05-09', 'Journée de l''Europe'); +INSERT INTO portanova.vacancydays (id, daydate, vacancyname) VALUES (16, '2021-05-13', 'Ascension'); +INSERT INTO portanova.vacancydays (id, daydate, vacancyname) VALUES (17, '2021-05-24', 'Lundi de Pentecôte'); +INSERT INTO portanova.vacancydays (id, daydate, vacancyname) VALUES (18, '2021-06-23', 'Célébration de l''anniversaire du Grand-Duc'); +INSERT INTO portanova.vacancydays (id, daydate, vacancyname) VALUES (19, '2021-08-15', 'Assomption'); +INSERT INTO portanova.vacancydays (id, daydate, vacancyname) VALUES (20, '2021-11-01', 'Toussaint'); +INSERT INTO portanova.vacancydays (id, daydate, vacancyname) VALUES (21, '2021-12-25', 'Noël'); +INSERT INTO portanova.vacancydays (id, daydate, vacancyname) VALUES (22, '2021-12-26', 'Deuxième jour de Noël'); +INSERT INTO portanova.vacancydays (id, daydate, vacancyname) VALUES (23, '2022-01-01', 'Nouvel An'); +INSERT INTO portanova.vacancydays (id, daydate, vacancyname) VALUES (24, '2022-04-18', 'Lundi de Pâques'); +INSERT INTO portanova.vacancydays (id, daydate, vacancyname) VALUES (25, '2022-05-01', 'Premier.05'); +INSERT INTO portanova.vacancydays (id, daydate, vacancyname) VALUES (26, '2022-05-09', 'Journée de l''Europe'); +INSERT INTO portanova.vacancydays (id, daydate, vacancyname) VALUES (27, '2022-05-26', 'Ascension'); +INSERT INTO portanova.vacancydays (id, daydate, vacancyname) VALUES (28, '2022-06-06', 'Lundi de Pentecôte'); +INSERT INTO portanova.vacancydays (id, daydate, vacancyname) VALUES (29, '2022-06-23', 'Célébration de l''anniversaire du Grand-Duc'); +INSERT INTO portanova.vacancydays (id, daydate, vacancyname) VALUES (30, '2022-08-15', 'Assomption'); +INSERT INTO portanova.vacancydays (id, daydate, vacancyname) VALUES (31, '2022-11-01', 'Toussaint'); +INSERT INTO portanova.vacancydays (id, daydate, vacancyname) VALUES (32, '2022-12-25', 'Noël'); +INSERT INTO portanova.vacancydays (id, daydate, vacancyname) VALUES (33, '2022-12-26', 'Deuxième jour de Noël'); -- @@ -5269,85 +10292,38 @@ INSERT INTO portanova.vacancytypes (id, vacancyname, isworktime, isfreetime, col -- Data for Name: workplans; Type: TABLE DATA; Schema: portanova; Owner: - -- -INSERT INTO portanova.workplans (id, workplan, mon_timestart1, mon_timeend1, mon_timestart2, mon_timeend2, mon_timepause, tue_timestart1, tue_timeend1, tue_timestart2, tue_timeend2, tue_timepause, wed_timestart1, wed_timeend1, wed_timestart2, wed_timeend2, wed_timepause, thu_timestart1, thu_timeend1, thu_timestart2, thu_timeend2, thu_timepause, fri_timestart1, fri_timeend1, fri_timestart2, fri_timeend2, fri_timepause, sat_timestart1, sat_timeend1, sat_timestart2, sat_timeend2, sat_timepause, sun_timestart1, sun_timeend1, sun_timestart2, sun_timeend2, sun_timepause) VALUES (6, 'Cuisine 1 (40h) ', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); -INSERT INTO portanova.workplans (id, workplan, mon_timestart1, mon_timeend1, mon_timestart2, mon_timeend2, mon_timepause, tue_timestart1, tue_timeend1, tue_timestart2, tue_timeend2, tue_timepause, wed_timestart1, wed_timeend1, wed_timestart2, wed_timeend2, wed_timepause, thu_timestart1, thu_timeend1, thu_timestart2, thu_timeend2, thu_timepause, fri_timestart1, fri_timeend1, fri_timestart2, fri_timeend2, fri_timepause, sat_timestart1, sat_timeend1, sat_timestart2, sat_timeend2, sat_timepause, sun_timestart1, sun_timeend1, sun_timestart2, sun_timeend2, sun_timepause) VALUES (1, 'Standard', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); - - --- --- Data for Name: zzold_staffreportperiodsums; Type: TABLE DATA; Schema: portanova; Owner: - --- - -INSERT INTO portanova.zzold_staffreportperiodsums (id, id_staff, id_reportperiod, plannedhours, contracthours, trackedhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (18, 135, 18, '328:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', NULL); -INSERT INTO portanova.zzold_staffreportperiodsums (id, id_staff, id_reportperiod, plannedhours, contracthours, trackedhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (56, 141, 9, '304:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', NULL); -INSERT INTO portanova.zzold_staffreportperiodsums (id, id_staff, id_reportperiod, plannedhours, contracthours, trackedhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (57, 142, 9, '320:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', NULL); -INSERT INTO portanova.zzold_staffreportperiodsums (id, id_staff, id_reportperiod, plannedhours, contracthours, trackedhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (58, 138, 9, '304:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', NULL); -INSERT INTO portanova.zzold_staffreportperiodsums (id, id_staff, id_reportperiod, plannedhours, contracthours, trackedhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (2, 141, 10, '320:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', NULL); -INSERT INTO portanova.zzold_staffreportperiodsums (id, id_staff, id_reportperiod, plannedhours, contracthours, trackedhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (3, 142, 10, '320:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', NULL); -INSERT INTO portanova.zzold_staffreportperiodsums (id, id_staff, id_reportperiod, plannedhours, contracthours, trackedhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (19, 133, 18, '328:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', NULL); -INSERT INTO portanova.zzold_staffreportperiodsums (id, id_staff, id_reportperiod, plannedhours, contracthours, trackedhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (20, 141, 18, '328:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', NULL); -INSERT INTO portanova.zzold_staffreportperiodsums (id, id_staff, id_reportperiod, plannedhours, contracthours, trackedhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (21, 142, 18, '328:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', NULL); -INSERT INTO portanova.zzold_staffreportperiodsums (id, id_staff, id_reportperiod, plannedhours, contracthours, trackedhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (22, 127, 18, '328:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', NULL); -INSERT INTO portanova.zzold_staffreportperiodsums (id, id_staff, id_reportperiod, plannedhours, contracthours, trackedhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (23, 136, 18, '328:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', NULL); -INSERT INTO portanova.zzold_staffreportperiodsums (id, id_staff, id_reportperiod, plannedhours, contracthours, trackedhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (24, 138, 18, '328:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', NULL); -INSERT INTO portanova.zzold_staffreportperiodsums (id, id_staff, id_reportperiod, plannedhours, contracthours, trackedhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (25, 139, 18, '328:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', NULL); -INSERT INTO portanova.zzold_staffreportperiodsums (id, id_staff, id_reportperiod, plannedhours, contracthours, trackedhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (26, 134, 18, '328:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', NULL); -INSERT INTO portanova.zzold_staffreportperiodsums (id, id_staff, id_reportperiod, plannedhours, contracthours, trackedhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (27, 131, 18, '328:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', NULL); -INSERT INTO portanova.zzold_staffreportperiodsums (id, id_staff, id_reportperiod, plannedhours, contracthours, trackedhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (28, 129, 18, '328:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', NULL); -INSERT INTO portanova.zzold_staffreportperiodsums (id, id_staff, id_reportperiod, plannedhours, contracthours, trackedhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (29, 128, 18, '328:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', NULL); -INSERT INTO portanova.zzold_staffreportperiodsums (id, id_staff, id_reportperiod, plannedhours, contracthours, trackedhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (30, 130, 18, '328:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', NULL); -INSERT INTO portanova.zzold_staffreportperiodsums (id, id_staff, id_reportperiod, plannedhours, contracthours, trackedhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (31, 143, 18, '328:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', NULL); -INSERT INTO portanova.zzold_staffreportperiodsums (id, id_staff, id_reportperiod, plannedhours, contracthours, trackedhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (33, 103, 19, '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', NULL); -INSERT INTO portanova.zzold_staffreportperiodsums (id, id_staff, id_reportperiod, plannedhours, contracthours, trackedhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (35, 125, 19, '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', NULL); -INSERT INTO portanova.zzold_staffreportperiodsums (id, id_staff, id_reportperiod, plannedhours, contracthours, trackedhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (32, 102, 19, '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', NULL); -INSERT INTO portanova.zzold_staffreportperiodsums (id, id_staff, id_reportperiod, plannedhours, contracthours, trackedhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (34, 104, 19, '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', NULL); -INSERT INTO portanova.zzold_staffreportperiodsums (id, id_staff, id_reportperiod, plannedhours, contracthours, trackedhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (36, 122, 20, '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', NULL); -INSERT INTO portanova.zzold_staffreportperiodsums (id, id_staff, id_reportperiod, plannedhours, contracthours, trackedhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (38, 117, 20, '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', NULL); -INSERT INTO portanova.zzold_staffreportperiodsums (id, id_staff, id_reportperiod, plannedhours, contracthours, trackedhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (37, 121, 20, '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', NULL); -INSERT INTO portanova.zzold_staffreportperiodsums (id, id_staff, id_reportperiod, plannedhours, contracthours, trackedhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (39, 115, 20, '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', NULL); -INSERT INTO portanova.zzold_staffreportperiodsums (id, id_staff, id_reportperiod, plannedhours, contracthours, trackedhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (40, 114, 20, '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', NULL); -INSERT INTO portanova.zzold_staffreportperiodsums (id, id_staff, id_reportperiod, plannedhours, contracthours, trackedhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (41, 119, 20, '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', NULL); -INSERT INTO portanova.zzold_staffreportperiodsums (id, id_staff, id_reportperiod, plannedhours, contracthours, trackedhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (42, 113, 20, '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', NULL); -INSERT INTO portanova.zzold_staffreportperiodsums (id, id_staff, id_reportperiod, plannedhours, contracthours, trackedhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (43, 146, 20, '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', NULL); -INSERT INTO portanova.zzold_staffreportperiodsums (id, id_staff, id_reportperiod, plannedhours, contracthours, trackedhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (44, 112, 20, '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', NULL); -INSERT INTO portanova.zzold_staffreportperiodsums (id, id_staff, id_reportperiod, plannedhours, contracthours, trackedhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (45, 108, 20, '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', NULL); -INSERT INTO portanova.zzold_staffreportperiodsums (id, id_staff, id_reportperiod, plannedhours, contracthours, trackedhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (46, 109, 20, '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', NULL); -INSERT INTO portanova.zzold_staffreportperiodsums (id, id_staff, id_reportperiod, plannedhours, contracthours, trackedhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (47, 147, 20, '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', NULL); -INSERT INTO portanova.zzold_staffreportperiodsums (id, id_staff, id_reportperiod, plannedhours, contracthours, trackedhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (48, 105, 20, '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', NULL); -INSERT INTO portanova.zzold_staffreportperiodsums (id, id_staff, id_reportperiod, plannedhours, contracthours, trackedhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (49, 118, 20, '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', NULL); -INSERT INTO portanova.zzold_staffreportperiodsums (id, id_staff, id_reportperiod, plannedhours, contracthours, trackedhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (59, 131, 9, '320:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', NULL); -INSERT INTO portanova.zzold_staffreportperiodsums (id, id_staff, id_reportperiod, plannedhours, contracthours, trackedhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (60, 135, 9, '320:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', NULL); -INSERT INTO portanova.zzold_staffreportperiodsums (id, id_staff, id_reportperiod, plannedhours, contracthours, trackedhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (61, 132, 9, '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', NULL); -INSERT INTO portanova.zzold_staffreportperiodsums (id, id_staff, id_reportperiod, plannedhours, contracthours, trackedhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (62, 133, 9, '320:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', NULL); -INSERT INTO portanova.zzold_staffreportperiodsums (id, id_staff, id_reportperiod, plannedhours, contracthours, trackedhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (63, 127, 9, '304:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', NULL); -INSERT INTO portanova.zzold_staffreportperiodsums (id, id_staff, id_reportperiod, plannedhours, contracthours, trackedhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (64, 136, 9, '320:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', NULL); -INSERT INTO portanova.zzold_staffreportperiodsums (id, id_staff, id_reportperiod, plannedhours, contracthours, trackedhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (65, 140, 9, '184:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', NULL); -INSERT INTO portanova.zzold_staffreportperiodsums (id, id_staff, id_reportperiod, plannedhours, contracthours, trackedhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (66, 139, 9, '304:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', NULL); -INSERT INTO portanova.zzold_staffreportperiodsums (id, id_staff, id_reportperiod, plannedhours, contracthours, trackedhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (67, 134, 9, '304:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', NULL); -INSERT INTO portanova.zzold_staffreportperiodsums (id, id_staff, id_reportperiod, plannedhours, contracthours, trackedhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (68, 129, 9, '320:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', NULL); -INSERT INTO portanova.zzold_staffreportperiodsums (id, id_staff, id_reportperiod, plannedhours, contracthours, trackedhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (69, 144, 9, '304:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', NULL); -INSERT INTO portanova.zzold_staffreportperiodsums (id, id_staff, id_reportperiod, plannedhours, contracthours, trackedhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (70, 128, 9, '24:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', NULL); -INSERT INTO portanova.zzold_staffreportperiodsums (id, id_staff, id_reportperiod, plannedhours, contracthours, trackedhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (71, 130, 9, '320:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', NULL); -INSERT INTO portanova.zzold_staffreportperiodsums (id, id_staff, id_reportperiod, plannedhours, contracthours, trackedhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (72, 143, 9, '304:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', NULL); -INSERT INTO portanova.zzold_staffreportperiodsums (id, id_staff, id_reportperiod, plannedhours, contracthours, trackedhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (4, 138, 10, '320:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', NULL); -INSERT INTO portanova.zzold_staffreportperiodsums (id, id_staff, id_reportperiod, plannedhours, contracthours, trackedhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (5, 131, 10, '320:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', NULL); -INSERT INTO portanova.zzold_staffreportperiodsums (id, id_staff, id_reportperiod, plannedhours, contracthours, trackedhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (6, 135, 10, '320:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', NULL); -INSERT INTO portanova.zzold_staffreportperiodsums (id, id_staff, id_reportperiod, plannedhours, contracthours, trackedhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (7, 133, 10, '320:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', NULL); -INSERT INTO portanova.zzold_staffreportperiodsums (id, id_staff, id_reportperiod, plannedhours, contracthours, trackedhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (8, 127, 10, '320:00:00', '00:00:00', '00:00:00', '08:00:00', '00:00:00', '00:00:00', NULL); -INSERT INTO portanova.zzold_staffreportperiodsums (id, id_staff, id_reportperiod, plannedhours, contracthours, trackedhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (9, 136, 10, '320:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', NULL); -INSERT INTO portanova.zzold_staffreportperiodsums (id, id_staff, id_reportperiod, plannedhours, contracthours, trackedhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (10, 139, 10, '320:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', NULL); -INSERT INTO portanova.zzold_staffreportperiodsums (id, id_staff, id_reportperiod, plannedhours, contracthours, trackedhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (11, 134, 10, '320:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', NULL); -INSERT INTO portanova.zzold_staffreportperiodsums (id, id_staff, id_reportperiod, plannedhours, contracthours, trackedhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (12, 129, 10, '320:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', NULL); -INSERT INTO portanova.zzold_staffreportperiodsums (id, id_staff, id_reportperiod, plannedhours, contracthours, trackedhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (13, 144, 10, '218:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', NULL); -INSERT INTO portanova.zzold_staffreportperiodsums (id, id_staff, id_reportperiod, plannedhours, contracthours, trackedhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (14, 128, 10, '320:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', NULL); -INSERT INTO portanova.zzold_staffreportperiodsums (id, id_staff, id_reportperiod, plannedhours, contracthours, trackedhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (15, 130, 10, '320:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', NULL); -INSERT INTO portanova.zzold_staffreportperiodsums (id, id_staff, id_reportperiod, plannedhours, contracthours, trackedhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (16, 143, 10, '320:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', NULL); -INSERT INTO portanova.zzold_staffreportperiodsums (id, id_staff, id_reportperiod, plannedhours, contracthours, trackedhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (102, 151, 19, '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', NULL); -INSERT INTO portanova.zzold_staffreportperiodsums (id, id_staff, id_reportperiod, plannedhours, contracthours, trackedhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (50, 106, 20, '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', NULL); -INSERT INTO portanova.zzold_staffreportperiodsums (id, id_staff, id_reportperiod, plannedhours, contracthours, trackedhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (51, 111, 20, '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', NULL); -INSERT INTO portanova.zzold_staffreportperiodsums (id, id_staff, id_reportperiod, plannedhours, contracthours, trackedhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (52, 110, 20, '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', NULL); -INSERT INTO portanova.zzold_staffreportperiodsums (id, id_staff, id_reportperiod, plannedhours, contracthours, trackedhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (53, 145, 20, '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', NULL); -INSERT INTO portanova.zzold_staffreportperiodsums (id, id_staff, id_reportperiod, plannedhours, contracthours, trackedhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (54, 148, 20, '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', NULL); -INSERT INTO portanova.zzold_staffreportperiodsums (id, id_staff, id_reportperiod, plannedhours, contracthours, trackedhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (55, 149, 20, '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', NULL); +INSERT INTO portanova.workplans (id, workplan, mon_timestart1, mon_timeend1, mon_timestart2, mon_timeend2, mon_timepause, tue_timestart1, tue_timeend1, tue_timestart2, tue_timeend2, tue_timepause, wed_timestart1, wed_timeend1, wed_timestart2, wed_timeend2, wed_timepause, thu_timestart1, thu_timeend1, thu_timestart2, thu_timeend2, thu_timepause, fri_timestart1, fri_timeend1, fri_timestart2, fri_timeend2, fri_timepause, sat_timestart1, sat_timeend1, sat_timestart2, sat_timeend2, sat_timepause, sun_timestart1, sun_timeend1, sun_timestart2, sun_timeend2, sun_timepause, weekhours, weekdays, weekdayslist) VALUES (6, 'Cuisine 1 (40h) ', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); +INSERT INTO portanova.workplans (id, workplan, mon_timestart1, mon_timeend1, mon_timestart2, mon_timeend2, mon_timepause, tue_timestart1, tue_timeend1, tue_timestart2, tue_timeend2, tue_timepause, wed_timestart1, wed_timeend1, wed_timestart2, wed_timeend2, wed_timepause, thu_timestart1, thu_timeend1, thu_timestart2, thu_timeend2, thu_timepause, fri_timestart1, fri_timeend1, fri_timestart2, fri_timeend2, fri_timepause, sat_timestart1, sat_timeend1, sat_timestart2, sat_timeend2, sat_timepause, sun_timestart1, sun_timeend1, sun_timestart2, sun_timeend2, sun_timepause, weekhours, weekdays, weekdayslist) VALUES (1, 'Standard', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); + + +-- +-- Data for Name: workplandays; Type: TABLE DATA; Schema: portanova; Owner: - +-- + +INSERT INTO portanova.workplandays (id, id_workplan, weekday, start1, end1, start2, end2, pause) VALUES (1, 6, 2, '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00'); +INSERT INTO portanova.workplandays (id, id_workplan, weekday, start1, end1, start2, end2, pause) VALUES (2, 6, 5, '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00'); +INSERT INTO portanova.workplandays (id, id_workplan, weekday, start1, end1, start2, end2, pause) VALUES (3, 1, 1, '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00'); +INSERT INTO portanova.workplandays (id, id_workplan, weekday, start1, end1, start2, end2, pause) VALUES (4, 6, 4, '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00'); +INSERT INTO portanova.workplandays (id, id_workplan, weekday, start1, end1, start2, end2, pause) VALUES (5, 1, 4, '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00'); +INSERT INTO portanova.workplandays (id, id_workplan, weekday, start1, end1, start2, end2, pause) VALUES (6, 1, 3, '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00'); +INSERT INTO portanova.workplandays (id, id_workplan, weekday, start1, end1, start2, end2, pause) VALUES (7, 6, 3, '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00'); +INSERT INTO portanova.workplandays (id, id_workplan, weekday, start1, end1, start2, end2, pause) VALUES (9, 1, 2, '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00'); +INSERT INTO portanova.workplandays (id, id_workplan, weekday, start1, end1, start2, end2, pause) VALUES (10, 1, 5, '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00'); +INSERT INTO portanova.workplandays (id, id_workplan, weekday, start1, end1, start2, end2, pause) VALUES (11, 1, 6, NULL, NULL, NULL, NULL, NULL); +INSERT INTO portanova.workplandays (id, id_workplan, weekday, start1, end1, start2, end2, pause) VALUES (12, 1, 7, NULL, NULL, NULL, NULL, NULL); +INSERT INTO portanova.workplandays (id, id_workplan, weekday, start1, end1, start2, end2, pause) VALUES (13, 6, 6, NULL, NULL, NULL, NULL, NULL); +INSERT INTO portanova.workplandays (id, id_workplan, weekday, start1, end1, start2, end2, pause) VALUES (14, 6, 7, NULL, NULL, NULL, NULL, NULL); +INSERT INTO portanova.workplandays (id, id_workplan, weekday, start1, end1, start2, end2, pause) VALUES (8, 6, 1, '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00'); + + +-- +-- Data for Name: worktimes; Type: TABLE DATA; Schema: portanova; Owner: - +-- + +INSERT INTO portanova.worktimes (id, startdate, enddate, defaultdayhours, maxdayhours, defaultweekhours, maxweekhours, maxinterruptionhours, isdefault) VALUES (1, NULL, NULL, '08:00:00', '10:00:00', '40:00:00', '48:00:00', '03:00:00', true); +INSERT INTO portanova.worktimes (id, startdate, enddate, defaultdayhours, maxdayhours, defaultweekhours, maxweekhours, maxinterruptionhours, isdefault) VALUES (3, '2020-12-23', '2021-01-02', '08:00:00', '12:00:00', '40:00:00', '51:00:00', '03:00:00', NULL); +INSERT INTO portanova.worktimes (id, startdate, enddate, defaultdayhours, maxdayhours, defaultweekhours, maxweekhours, maxinterruptionhours, isdefault) VALUES (4, '2020-04-04', '2020-04-19', '08:00:00', '12:00:00', '40:00:00', '51:00:00', '03:00:00', NULL); +INSERT INTO portanova.worktimes (id, startdate, enddate, defaultdayhours, maxdayhours, defaultweekhours, maxweekhours, maxinterruptionhours, isdefault) VALUES (2, '2020-06-01', '2020-09-30', '08:00:00', '12:00:00', '40:00:00', '51:00:00', '03:00:00', NULL); -- @@ -5521,7 +10497,12 @@ INSERT INTO public.sessions (id, idsession, id_user, user_agent, remote_addr, cr INSERT INTO public.sessions (id, idsession, id_user, user_agent, remote_addr, created) VALUES (160, 'pMEnznbOdbCeLbtKUwxgVbn2PNVzrF0HhvVHIWmL', 1, 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.79 Safari/537.36', '::1', '2019-12-20 12:48:16.464228'); INSERT INTO public.sessions (id, idsession, id_user, user_agent, remote_addr, created) VALUES (162, 'RRiSGkElRtLTCs3lkdYpQNZDnxKJ2wOJdXrJ7WVO', 1, '192.168.178.23', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36', '2019-12-24 10:59:50.644045'); INSERT INTO public.sessions (id, idsession, id_user, user_agent, remote_addr, created) VALUES (163, 'BlvRAYUeX78wr2OhPvWU5TrsNAmsooAQzWy0Ki4x', 1, 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.88 Safari/537.36', '2001:7e8:cc73:de00:f4f8:d2a7:1c8:2664', '2019-12-24 11:00:44.808971'); -INSERT INTO public.sessions (id, idsession, id_user, user_agent, remote_addr, created) VALUES (278, 'R65RJQKl3zSYyByNGuQOk3U0xYgWYKdGG9nfPXrI', 1, 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.130 Safari/537.36', '::1', '2020-02-03 17:19:26.880576'); +INSERT INTO public.sessions (id, idsession, id_user, user_agent, remote_addr, created) VALUES (279, 'U9ksV3dLzsxjylgOx5WK5lPitIiU8nrSmBb8veJU', 1, 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.130 Safari/537.36 Edg/79.0.309.71', '::1', '2020-02-04 08:32:56.845626'); +INSERT INTO public.sessions (id, idsession, id_user, user_agent, remote_addr, created) VALUES (281, 'zdaOUZfTtPkLpOQYYPGqzViSKLTgtMWTPXxAMCj6', 1, 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.130 Safari/537.36', '::1', '2020-02-05 10:18:52.389333'); +INSERT INTO public.sessions (id, idsession, id_user, user_agent, remote_addr, created) VALUES (283, 'qCTq7PB9Ml539u6mdEoTGensJglVwc8MER3CxvC9', 1, 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.87 Safari/537.36', '::1', '2020-02-10 09:03:25.356532'); +INSERT INTO public.sessions (id, idsession, id_user, user_agent, remote_addr, created) VALUES (286, 'WeNOQHFuxR7KfY1DAK8nkMgCAc7JQ6EDaihRQNcd', 1, 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.100 Safari/537.36', '::1', '2020-02-14 18:56:34.030027'); +INSERT INTO public.sessions (id, idsession, id_user, user_agent, remote_addr, created) VALUES (299, 'UgTmbOQeAFpuAAPqP7CGP22KXtsWMglxn4JoIqt9', 1, 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.116 Safari/537.36', '::1', '2020-02-24 11:53:27.013773'); +INSERT INTO public.sessions (id, idsession, id_user, user_agent, remote_addr, created) VALUES (301, '0947l9NXchB8bZJx7UKHuBpazWGacjx2is0trEgu', 1, 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.122 Safari/537.36', '::1', '2020-02-26 11:26:44.355966'); -- @@ -5706,18 +10687,11 @@ SELECT pg_catalog.setval('demo.stations_id_seq', 1, false); SELECT pg_catalog.setval('demo.timetrackuser_id_seq', 5, true); --- --- Name: editlog_id_seq; Type: SEQUENCE SET; Schema: portanova; Owner: - --- - -SELECT pg_catalog.setval('portanova.editlog_id_seq', 1, false); - - -- -- Name: reportperiod_id_seq; Type: SEQUENCE SET; Schema: portanova; Owner: - -- -SELECT pg_catalog.setval('portanova.reportperiod_id_seq', 29, true); +SELECT pg_catalog.setval('portanova.reportperiod_id_seq', 31, true); -- @@ -5738,21 +10712,14 @@ SELECT pg_catalog.setval('portanova.staffgroups_id_seq', 8, true); -- Name: staffperiodbase_id_seq; Type: SEQUENCE SET; Schema: portanova; Owner: - -- -SELECT pg_catalog.setval('portanova.staffperiodbase_id_seq', 172, true); +SELECT pg_catalog.setval('portanova.staffperiodbase_id_seq', 173, true); -- -- Name: staffreportperiod_id_seq; Type: SEQUENCE SET; Schema: portanova; Owner: - -- -SELECT pg_catalog.setval('portanova.staffreportperiod_id_seq', 1151, true); - - --- --- Name: staffreportperiodsums_id_seq; Type: SEQUENCE SET; Schema: portanova; Owner: - --- - -SELECT pg_catalog.setval('portanova.staffreportperiodsums_id_seq', 126, true); +SELECT pg_catalog.setval('portanova.staffreportperiod_id_seq', 2525, true); -- @@ -5766,21 +10733,28 @@ SELECT pg_catalog.setval('portanova.staffvacancy_id_seq', 1, false); -- Name: staffweeksums_id_seq; Type: SEQUENCE SET; Schema: portanova; Owner: - -- -SELECT pg_catalog.setval('portanova.staffweeksums_id_seq', 6761, true); +SELECT pg_catalog.setval('portanova.staffweeksums_id_seq', 17525, true); -- -- Name: staffworkplan_id_seq; Type: SEQUENCE SET; Schema: portanova; Owner: - -- -SELECT pg_catalog.setval('portanova.staffworkplan_id_seq', 1083489, true); +SELECT pg_catalog.setval('portanova.staffworkplan_id_seq', 1158302, true); -- -- Name: vacancydays_id_seq; Type: SEQUENCE SET; Schema: portanova; Owner: - -- -SELECT pg_catalog.setval('portanova.vacancydays_id_seq', 1, false); +SELECT pg_catalog.setval('portanova.vacancydays_id_seq', 33, true); + + +-- +-- Name: workplandays_id_seq; Type: SEQUENCE SET; Schema: portanova; Owner: - +-- + +SELECT pg_catalog.setval('portanova.workplandays_id_seq', 14, true); -- @@ -5790,6 +10764,13 @@ SELECT pg_catalog.setval('portanova.vacancydays_id_seq', 1, false); SELECT pg_catalog.setval('portanova.workplans_id_seq', 6, true); +-- +-- Name: worktimes_id_seq; Type: SEQUENCE SET; Schema: portanova; Owner: - +-- + +SELECT pg_catalog.setval('portanova.worktimes_id_seq', 4, true); + + -- -- Name: worktypes_id_seq; Type: SEQUENCE SET; Schema: portanova; Owner: - -- @@ -5829,7 +10810,7 @@ SELECT pg_catalog.setval('public.mailtemplates_id_seq', 7, true); -- Name: sessions_id_seq; Type: SEQUENCE SET; Schema: public; Owner: - -- -SELECT pg_catalog.setval('public.sessions_id_seq', 278, true); +SELECT pg_catalog.setval('public.sessions_id_seq', 301, true); -- diff --git a/dev/db/potlu_db.pg.full.sql b/dev/db/potlu_db.pg.full.sql index 8ed0547f..f04b9019 100644 --- a/dev/db/potlu_db.pg.full.sql +++ b/dev/db/potlu_db.pg.full.sql @@ -87,7 +87,7 @@ ALTER FUNCTION portanova.add_reportperiod() OWNER TO potlu_user; -- Name: getperiod_staffcontract(integer); Type: FUNCTION; Schema: portanova; Owner: potlu_user -- -CREATE FUNCTION portanova.getperiod_staffcontract(pid integer) RETURNS TABLE(id integer, id_staff integer, startdate date, enddate date, weekhours interval, weekdays integer, id_workplan integer) +CREATE FUNCTION portanova.getperiod_staffcontract(pid integer) RETURNS TABLE(id integer, id_staff integer, startdate date, enddate date, weekhours interval, weekdays integer, id_workplan integer, defaultfreedays json) LANGUAGE plpgsql AS $$ declare @@ -96,11 +96,11 @@ CREATE FUNCTION portanova.getperiod_staffcontract(pid integer) RETURNS TABLE(id begin select prd.startdate as prdstart,prd.enddate as prdend into pstart,pend from portanova.reportperiod prd where prd.id=pid; return QUERY -select sc.id,sc.id_staff, -case when sc.startdate < pstart then pstart else sc.startdate end as startdate, +select sc.id,sc.id_staff, +case when sc.startdate < pstart then pstart else sc.startdate end as startdate, case when sc.enddate is null then pend when sc.enddate > pend then pend else sc.enddate end as enddate, -sc.weekhours,sc.weekdays,sc.id_workplan -from portanova.staffcontract sc where sc.startdate<= pend and (sc.enddate is null or sc.enddate >= pstart) +sc.weekhours,sc.weekdays,sc.id_workplan,sc.defaultfreedays +from portanova.staffcontract sc where sc.startdate<= pend and (sc.enddate is null or sc.enddate >= pstart) order by sc.id_staff,sc.startdate,sc.enddate; END; $$; @@ -152,6 +152,27 @@ $$; ALTER FUNCTION portanova.onchange_reportperiod(pid_period integer) OWNER TO potlu_user; +-- +-- Name: refresh_periods(); Type: FUNCTION; Schema: portanova; Owner: potlu_user +-- + +CREATE FUNCTION portanova.refresh_periods() RETURNS boolean + LANGUAGE plpgsql + AS $$ + declare + prds record; + begin + for prds in select id from portanova.reportperiod order by startdate,enddate + loop + perform portanova.update_all_staff_in_period(prds.id); + end loop; + RETURN true; + END; +$$; + + +ALTER FUNCTION portanova.refresh_periods() OWNER TO potlu_user; + -- -- Name: set_periodday_sums(bigint); Type: FUNCTION; Schema: portanova; Owner: potlu_user -- @@ -255,23 +276,37 @@ CREATE FUNCTION portanova.set_staffperiodweek_sums(pid_reportperiod integer, pid declare wkcon record; tmpcontrhours interval; + freedays int4 := 0; begin -- INSERT Contract data into Week -for wkcon in select srpw.id,psc.weekhours,psc.weekdays,srpw.contractdays,srpw.caldays,srpw.diffhours,srpw.contracthours,srpw.totalhours +for wkcon in select srpw.id,srpw.calweek,srpw.weekstart,srpw.calyear,rp.startdate as periodstart,psc.startdate,rp.enddate as periodend,psc.enddate,psc.weekhours,psc.weekdays,srpw.contractdays,srpw.caldays,srpw.diffhours,srpw.contracthours,srpw.totalhours,psc.defaultfreedays from portanova.staffreportperiodweeks srpw -left join (select xa.id_staff,xa.startdate,xa.enddate,xa.weekhours,xa.weekdays from portanova.getperiod_staffcontract(pid_reportperiod) xa where xa.id_staff=pid_staff) psc +left join (select xa.id_staff,xa.startdate,xa.enddate,xa.weekhours,xa.weekdays,xa.defaultfreedays from portanova.getperiod_staffcontract(pid_reportperiod) xa where xa.id_staff=pid_staff) psc on (srpw.weekstart between date_trunc('week',psc.startdate) and psc.enddate) +left join portanova.reportperiod rp on (srpw.id_reportperiod =rp.id) where srpw.id_reportperiod=pid_reportperiod and srpw.id_staff=pid_staff loop --raise notice 'id=%',wkcon; - --raise notice 'id=%',wkcon.contractdays; + if wkcon.defaultfreedays is not null then + freedays = json_array_length(wkcon.defaultfreedays); + end if; wkcon.contracthours=wkcon.weekhours; wkcon.contractdays=wkcon.weekdays; - if wkcon.caldays < wkcon.contractdays then - wkcon.contractdays = wkcon.caldays; - wkcon.contracthours = (wkcon.weekhours/wkcon.weekdays) * wkcon.contractdays; + if wkcon.calweek= date_part('week',wkcon.periodstart)::int4 and wkcon.calyear= date_part('isoyear',wkcon.periodstart)::int4 then + wkcon.contracthours = wkcon.contracthours - ((wkcon.weekhours/wkcon.weekdays) * (wkcon.startdate-wkcon.periodstart)::int4); end if; + --if wkcon.startdate > wkcon.periodstart then + -- wkcon.contractdays = wkcon.contractdays-(wkcon.startdate-wkcon.periodstart)::int4; + -- wkcon.contracthours = (wkcon.weekhours/wkcon.weekdays) * wkcon.contractdays; + --end if; + --if wkcon.enddate < wkcon.periodend then + -- wkcon.contractdays = wkcon.contractdays-(wkcon.periodend-wkcon.enddate)::int4; + -- wkcon.contracthours = (wkcon.weekhours/wkcon.weekdays) * wkcon.contractdays; + --end if; + + wkcon.diffhours = wkcon.totalhours-wkcon.contracthours; + raise notice 'contractdays: % contracthours: % totalhours: % diffhours: %',wkcon.contractdays,wkcon.contracthours,wkcon.totalhours,wkcon.diffhours; --raise notice 'id=% cdays=% chours=% diffhours=%',wkcon.id,wkcon.contractdays,wkcon.contracthours,wkcon.diffhours; update portanova.staffreportperiodweeks set contracthours=wkcon.contracthours,contractdays=wkcon.contractdays,diffhours=wkcon.diffhours where id=wkcon.id; @@ -298,8 +333,10 @@ declare cdate date; edate date; wday text; + wdaynum int4; wdayplan record; cid_staffworkplan int8; + cdaytime interval; begin select * into prd from portanova.reportperiod where id= pid_period; for cont in select * from portanova.getperiod_staffcontract(pid_period) where id_staff=pid_staff @@ -307,16 +344,24 @@ begin cdate := cont.startdate; while cdate <= cont.enddate loop if cdate between prd.startdate and prd.enddate then + wdaynum = date_part('isodow',cdate)::INT4; + cdaytime := null; + + if position('"' || wdaynum || '"' in cont.defaultfreedays::text) = 0 then + cdaytime := cont.weekhours/cont.weekdays; + end if; + raise notice 'wday % => % => %',wdaynum,position('"' || wdaynum || '"' in cont.defaultfreedays::text),cdaytime; if (cont.id_workplan is not null) then wday := substr(to_char(cdate,'day'),1,3); execute 'select ' || wday || '_timestart1 as ts1,' || wday || '_timeend1 as te1,' || wday || '_timestart2 as ts2,' || wday ||'_timeend2 as te2,'|| wday ||'_timepause as tp from portanova.workplans where id=' || cont.id_workplan || ';' into wdayplan; - insert into portanova.staffreportperioddays (id_staff,daydate,id_reportperiod,timestart1,timeend1,timestart2,timeend2,timepause,contracthours) - values (pid_staff,cdate,pid_period,wdayplan.ts1,wdayplan.te1,wdayplan.ts2,wdayplan.te2,wdayplan.tp,cont.weekhours/cont.weekdays) - on conflict on constraint uniq_staffworplan_staffday do update set contracthours=cont.weekhours/cont.weekdays + + insert into portanova.staffreportperioddays (id_staff,daydate,id_reportperiod,timestart1,timeend1,timestart2,timeend2,timepause,contracthours,wdcontracthours) + values (pid_staff,cdate,pid_period,wdayplan.ts1,wdayplan.te1,wdayplan.ts2,wdayplan.te2,wdayplan.tp,cont.weekhours/cont.weekdays,cdaytime) + on conflict on constraint uniq_staffworplan_staffday do update set contracthours=cont.weekhours/cont.weekdays,wdcontracthours=cdaytime returning id into cid_staffworkplan; else - insert into portanova.staffreportperioddays (id_staff,daydate,id_reportperiod,contracthours,id_staffgrou) values ( pid_staff , cdate , pid_period,cont.weekhours/cont.weekdays) - on conflict on constraint uniq_staffworplan_staffday do update set contracthours=cont.weekhours/cont.weekdays + insert into portanova.staffreportperioddays (id_staff,daydate,id_reportperiod,contracthours,wdcontracthours) values ( pid_staff , cdate , pid_period,cont.weekhours/cont.weekdays,cdaytime) + on conflict on constraint uniq_staffworplan_staffday do update set contracthours=cont.weekhours/cont.weekdays,wdcontracthours=cdaytime returning id into cid_staffworkplan; end if; end if; @@ -350,7 +395,8 @@ coalesce(sum(workhours),'00:00:00') as workhours , coalesce(sum(vacancyhours),'00:00:00') as vacancyhours , coalesce(sum(recuperationhours) ,'00:00:00' ) as recuperationhours , coalesce(sum(dayhours),'00:00:00') as totalhours, -count(id) as caldays +coalesce(sum(contracthours),'00:00:00') as contracthours, +count(wdcontracthours) as caldays from ( select swp.id,swp.id_reportperiod,swp.id_staff, date_part('isoyear',swp.daydate) as calyear, @@ -360,14 +406,15 @@ swp.workhours, swp.contracthours, swp.recuperationhours, swp.dayhours, -swp.vacancyhours +swp.vacancyhours, +swp.wdcontracthours from portanova.staffreportperioddays swp where swp.id_reportperiod= pid_reportperiod and swp.id_staff=pid_staff) wkwp group by id_staff,id_reportperiod,calyear,calweek,weekstart loop --raise notice 'id_staff: % id_period: % calweek: % calyear: %',pid_staff,pid_reportperiod,wkpd.calweek,wkpd.calyear; - insert into portanova.staffreportperiodweeks (id_staff, id_reportperiod, calyear, calweek, workhours,vacancyhours, recuperationhours, weekstart,totalhours,caldays) - VALUES(wkpd.id_staff, wkpd.id_reportperiod, wkpd.calyear, wkpd.calweek, wkpd.workhours, wkpd.vacancyhours, wkpd.recuperationhours, wkpd.weekstart,wkpd.totalhours,wkpd.caldays) - on conflict on constraint uniq_staffweekplan_cal do update set workhours=wkpd.workhours, vacancyhours=wkpd.vacancyhours, recuperationhours=wkpd.recuperationhours,totalhours=wkpd.totalhours,caldays=wkpd.caldays; + insert into portanova.staffreportperiodweeks (id_staff, id_reportperiod, calyear, calweek, workhours,vacancyhours, recuperationhours, weekstart,totalhours,caldays,contracthours,diffhours) + VALUES(wkpd.id_staff, wkpd.id_reportperiod, wkpd.calyear, wkpd.calweek, wkpd.workhours, wkpd.vacancyhours, wkpd.recuperationhours, wkpd.weekstart,wkpd.totalhours,wkpd.caldays,wkpd.contracthours,wkpd.contracthours-wkpd.totalhours) + on conflict on constraint uniq_staffweekplan_cal do update set workhours=wkpd.workhours, vacancyhours=wkpd.vacancyhours, recuperationhours=wkpd.recuperationhours,totalhours=wkpd.totalhours,caldays=wkpd.caldays,contracthours=wkpd.contracthours,diffhours=wkpd.contracthours-wkpd.totalhours; end loop; perform portanova.set_staffperiodweek_sums(pid_reportperiod, pid_staff); @@ -592,27 +639,6 @@ $$; ALTER FUNCTION portanova.zzold_onchange_reportperiod(pid_period integer) OWNER TO potlu_user; --- --- Name: zzold_refreshperiods(); Type: FUNCTION; Schema: portanova; Owner: potlu_user --- - -CREATE FUNCTION portanova.zzold_refreshperiods() RETURNS boolean - LANGUAGE plpgsql - AS $$ - declare - prds record; - begin - for prds in select id from portanova.reportperiod where isvalidated != true - loop - perform portanova.onchange_reportperiod(prds.id); - end loop; - RETURN false; - END; -$$; - - -ALTER FUNCTION portanova.zzold_refreshperiods() OWNER TO potlu_user; - -- -- Name: zzold_set_staffperiod(integer); Type: FUNCTION; Schema: portanova; Owner: potlu_user -- @@ -1201,43 +1227,6 @@ ALTER TABLE demo.timetrackuser_id_seq OWNER TO potlu_user; ALTER SEQUENCE demo.timetrackuser_id_seq OWNED BY demo.timetrackuser.id; --- --- Name: editlog; Type: TABLE; Schema: portanova; Owner: potlu_user --- - -CREATE TABLE portanova.editlog ( - id bigint NOT NULL, - id_user integer, - tblname text, - tblfields json, - modified timestamp without time zone DEFAULT CURRENT_TIMESTAMP, - created timestamp without time zone DEFAULT CURRENT_TIMESTAMP -); - - -ALTER TABLE portanova.editlog OWNER TO potlu_user; - --- --- Name: editlog_id_seq; Type: SEQUENCE; Schema: portanova; Owner: potlu_user --- - -CREATE SEQUENCE portanova.editlog_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; - - -ALTER TABLE portanova.editlog_id_seq OWNER TO potlu_user; - --- --- Name: editlog_id_seq; Type: SEQUENCE OWNED BY; Schema: portanova; Owner: potlu_user --- - -ALTER SEQUENCE portanova.editlog_id_seq OWNED BY portanova.editlog.id; - - -- -- Name: reportperiod; Type: TABLE; Schema: portanova; Owner: potlu_user -- @@ -1333,7 +1322,8 @@ CREATE TABLE portanova.staffcontract ( weekdays integer, enddate date, id_workplan integer, - weekhours interval + weekhours interval, + defaultfreedays json ); @@ -1412,7 +1402,8 @@ CREATE TABLE portanova.staffreportperiod ( vacancyhours interval, recuperationhours interval, hoursdiff interval, - hoursrestbefore interval + payedhours interval, + diffhourspayed interval ); @@ -1464,54 +1455,13 @@ CREATE TABLE portanova.staffreportperioddays ( id_reportperiod integer, dayhours time without time zone, id_recuperationtype integer, - interruptionhours time without time zone + interruptionhours time without time zone, + wdcontracthours time without time zone ); ALTER TABLE portanova.staffreportperioddays OWNER TO potlu_user; --- --- Name: zzold_staffreportperiodsums; Type: TABLE; Schema: portanova; Owner: potlu_user --- - -CREATE TABLE portanova.zzold_staffreportperiodsums ( - id integer NOT NULL, - id_staff integer, - id_reportperiod integer, - plannedhours interval DEFAULT '00:00:00'::interval, - contracthours interval DEFAULT '00:00:00'::interval, - trackedhours interval DEFAULT '00:00:00'::interval, - vacancyhours interval DEFAULT '00:00:00'::interval, - recuperationhours interval DEFAULT '00:00:00'::interval, - hoursdiff interval DEFAULT '00:00:00'::interval, - hoursrestbefore interval -); - - -ALTER TABLE portanova.zzold_staffreportperiodsums OWNER TO potlu_user; - --- --- Name: staffreportperiodsums_id_seq; Type: SEQUENCE; Schema: portanova; Owner: potlu_user --- - -CREATE SEQUENCE portanova.staffreportperiodsums_id_seq - AS integer - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; - - -ALTER TABLE portanova.staffreportperiodsums_id_seq OWNER TO potlu_user; - --- --- Name: staffreportperiodsums_id_seq; Type: SEQUENCE OWNED BY; Schema: portanova; Owner: potlu_user --- - -ALTER SEQUENCE portanova.staffreportperiodsums_id_seq OWNED BY portanova.zzold_staffreportperiodsums.id; - - -- -- Name: staffreportperiodweeks; Type: TABLE; Schema: portanova; Owner: potlu_user -- @@ -1712,7 +1662,8 @@ CREATE VIEW portanova.vw_staffcontractdata AS staffcontract.id_staffgroup, staffcontract.enddate, staffcontract.id AS id_staffcontract, - staffcontract.id_workplan + staffcontract.id_workplan, + staffcontract.defaultfreedays FROM portanova.staffcontract; @@ -1759,7 +1710,10 @@ CREATE TABLE portanova.workplans ( sun_timeend1 time without time zone, sun_timestart2 time without time zone, sun_timeend2 time without time zone, - sun_timepause time without time zone + sun_timepause time without time zone, + weekhours interval, + weekdays integer, + weekdayslist json ); @@ -1780,10 +1734,16 @@ CREATE VIEW portanova.vw_staffcontractlist AS sg.groupcolor, sc.enddate, sc.id_workplan, + ddf.defaultfreedays, wp.workplan - FROM ((portanova.staffcontract sc + FROM (((portanova.staffcontract sc LEFT JOIN portanova.staffgroups sg ON ((sc.id_staffgroup = sg.id))) LEFT JOIN portanova.workplans wp ON ((sc.id_workplan = wp.id))) + LEFT JOIN ( SELECT dfd.id, + replace(replace(replace(replace(replace(replace(replace(dfd.defaultfreedays, '7'::text, 'di'::text), '6'::text, 'sa'::text), '5'::text, 've'::text), '4'::text, 'je'::text), '3'::text, 'me'::text), '2'::text, 'ma'::text), '1'::text, 'lu'::text) AS defaultfreedays + FROM ( SELECT staffcontract.id, + json_array_elements_text(staffcontract.defaultfreedays) AS defaultfreedays + FROM portanova.staffcontract) dfd) ddf ON ((sc.id = ddf.id))) ORDER BY sc.startdate DESC, sc.enddate DESC; @@ -1834,7 +1794,6 @@ ALTER TABLE portanova.vw_staffgroupsdata OWNER TO potlu_user; CREATE VIEW portanova.vw_staffgroupslist AS SELECT staffgroups.id, staffgroups.groupname, - staffgroups.groupcolor, staffgroups.isdefault FROM portanova.staffgroups; @@ -1853,368 +1812,97 @@ CREATE VIEW portanova.vw_stafflist AS st.job, st.birthdate, ((st.surname || ' '::text) || st.prename) AS dspname, - stg.groupname - FROM (portanova.staff st + stg.groupname, + stentry.entrydate + FROM ((portanova.staff st LEFT JOIN portanova.staffgroups stg ON ((st.id_staffgroup = stg.id))) + LEFT JOIN ( SELECT staffcontract.id_staff, + min(staffcontract.startdate) AS entrydate + FROM portanova.staffcontract + GROUP BY staffcontract.id_staff) stentry ON ((st.id = stentry.id_staff))) ORDER BY st.surname, st.prename; ALTER TABLE portanova.vw_stafflist OWNER TO potlu_user; -- --- Name: vw_staffplanned_dayweektotals; Type: VIEW; Schema: portanova; Owner: potlu_user +-- Name: vw_staffreportperioddays; Type: VIEW; Schema: portanova; Owner: potlu_user -- -CREATE VIEW portanova.vw_staffplanned_dayweektotals AS - SELECT stw2.calweek, - stw2.caldate AS dates, - stw2.id_staff, - max( - CASE - WHEN (stw2.isodow = (1)::double precision) THEN stw2.id - ELSE NULL::bigint - END) AS mon_id, - max( - CASE - WHEN (stw2.isodow = (1)::double precision) THEN to_char((stw2.timestart1)::interval, 'HH24:MI'::text) - ELSE NULL::text - END) AS mon_start1, - max( - CASE - WHEN (stw2.isodow = (1)::double precision) THEN to_char((stw2.timeend1)::interval, 'HH24:MI'::text) - ELSE NULL::text - END) AS mon_end1, - max( - CASE - WHEN (stw2.isodow = (1)::double precision) THEN to_char((stw2.timestart2)::interval, 'HH24:MI'::text) - ELSE NULL::text - END) AS mon_start2, - max( - CASE - WHEN (stw2.isodow = (1)::double precision) THEN to_char((stw2.timeend2)::interval, 'HH24:MI'::text) - ELSE NULL::text - END) AS mon_end2, - max( - CASE - WHEN (stw2.isodow = (1)::double precision) THEN to_char((stw2.timepause)::interval, 'HH24:MI'::text) - ELSE NULL::text - END) AS mon_pause, - to_char(max( - CASE - WHEN (stw2.isodow = (1)::double precision) THEN ((stw2.time1 + stw2.time2) - (stw2.timepause)::interval) - ELSE NULL::interval - END), 'HH24:MI'::text) AS mon_timetotal, - max( - CASE - WHEN (stw2.isodow = (2)::double precision) THEN stw2.id - ELSE NULL::bigint - END) AS tue_id, - max( - CASE - WHEN (stw2.isodow = (2)::double precision) THEN to_char((stw2.timestart1)::interval, 'HH24:MI'::text) - ELSE NULL::text - END) AS tue_start1, - max( - CASE - WHEN (stw2.isodow = (2)::double precision) THEN to_char((stw2.timeend1)::interval, 'HH24:MI'::text) - ELSE NULL::text - END) AS tue_end1, - max( - CASE - WHEN (stw2.isodow = (2)::double precision) THEN to_char((stw2.timestart2)::interval, 'HH24:MI'::text) - ELSE NULL::text - END) AS tue_start2, - max( - CASE - WHEN (stw2.isodow = (2)::double precision) THEN to_char((stw2.timeend2)::interval, 'HH24:MI'::text) - ELSE NULL::text - END) AS tue_end2, - max( - CASE - WHEN (stw2.isodow = (2)::double precision) THEN to_char((stw2.timepause)::interval, 'HH24:MI'::text) - ELSE NULL::text - END) AS tue_pause, - to_char(max( - CASE - WHEN (stw2.isodow = (2)::double precision) THEN ((stw2.time1 + stw2.time2) - (stw2.timepause)::interval) - ELSE NULL::interval - END), 'HH24:MI'::text) AS tue_timetotal, - max( - CASE - WHEN (stw2.isodow = (3)::double precision) THEN stw2.id - ELSE NULL::bigint - END) AS wed_id, - max( +CREATE VIEW portanova.vw_staffreportperioddays AS + SELECT pd.id, + pd.id_staff, + pd.id_reportperiod, + pd.daydate, + to_char((pd.timestart1)::interval, 'HH24:MI'::text) AS timestart1, + to_char((pd.timeend1)::interval, 'HH24:MI'::text) AS timeend1, + to_char((pd.timestart2)::interval, 'HH24:MI'::text) AS timestart2, + to_char((pd.timeend2)::interval, 'HH24:MI'::text) AS timeend2, + to_char((pd.timepause)::interval, 'HH24:MI'::text) AS timepause, + to_char(( CASE - WHEN (stw2.isodow = (3)::double precision) THEN to_char((stw2.timestart1)::interval, 'HH24:MI'::text) - ELSE NULL::text - END) AS wed_start1, - max( + WHEN ((pd.vacancyhours)::interval = '00:00:00'::interval) THEN NULL::time without time zone + ELSE pd.vacancyhours + END)::interval, 'HH24:MI'::text) AS vacancyhours, + to_char((pd.contracthours)::interval, 'HH24:MI'::text) AS contracthours, + to_char(( CASE - WHEN (stw2.isodow = (3)::double precision) THEN to_char((stw2.timeend1)::interval, 'HH24:MI'::text) - ELSE NULL::text - END) AS wed_end1, - max( + WHEN ((pd.workhours)::interval = '00:00:00'::interval) THEN NULL::time without time zone + ELSE pd.workhours + END)::interval, 'HH24:MI'::text) AS workhours, + to_char(( CASE - WHEN (stw2.isodow = (3)::double precision) THEN to_char((stw2.timestart2)::interval, 'HH24:MI'::text) - ELSE NULL::text - END) AS wed_start2, - max( + WHEN ((pd.dayhours)::interval = '00:00:00'::interval) THEN NULL::time without time zone + ELSE pd.dayhours + END)::interval, 'HH24:MI'::text) AS dayhours, + pd.id_vacancytype, + pd.daytype, + to_char(( CASE - WHEN (stw2.isodow = (3)::double precision) THEN to_char((stw2.timeend2)::interval, 'HH24:MI'::text) - ELSE NULL::text - END) AS wed_end2, - max( + WHEN ((pd.recuperationhours)::interval = '00:00:00'::interval) THEN NULL::time without time zone + ELSE pd.recuperationhours + END)::interval, 'HH24:MI'::text) AS recuperationhours, + pd.id_recuperationtype, + to_char(( CASE - WHEN (stw2.isodow = (3)::double precision) THEN to_char((stw2.timepause)::interval, 'HH24:MI'::text) - ELSE NULL::text - END) AS wed_pause, - to_char(max( + WHEN ((pd.interruptionhours)::interval = '00:00:00'::interval) THEN NULL::time without time zone + ELSE pd.interruptionhours + END)::interval, 'HH24:MI'::text) AS interruptionhours, + pw.id AS id_week, + (((((((pw.calyear || '-'::text) || lpad((pw.calweek)::text, 2, '0'::text)) || '('::text) || to_char((pw.weekstart)::timestamp with time zone, 'DD.MM.YYYY'::text)) || ' - '::text) || to_char((date((pw.weekstart + '6 days'::interval)))::timestamp with time zone, 'DD.MM.YYYY'::text)) || ')'::text) AS dspweek, + ((((((((((((to_char((pw.weekstart)::timestamp with time zone, 'DD.MM.YYYY'::text) || ','::text) || to_char((date((pw.weekstart + '1 day'::interval)))::timestamp with time zone, 'DD.MM.YYYY'::text)) || ','::text) || to_char((date((pw.weekstart + '2 days'::interval)))::timestamp with time zone, 'DD.MM.YYYY'::text)) || ','::text) || to_char((date((pw.weekstart + '3 days'::interval)))::timestamp with time zone, 'DD.MM.YYYY'::text)) || ','::text) || to_char((date((pw.weekstart + '4 days'::interval)))::timestamp with time zone, 'DD.MM.YYYY'::text)) || ','::text) || to_char((date((pw.weekstart + '5 days'::interval)))::timestamp with time zone, 'DD.MM.YYYY'::text)) || ','::text) || to_char((date((pw.weekstart + '6 days'::interval)))::timestamp with time zone, 'DD.MM.YYYY'::text)) AS dspweekdates, + ((((((((((((pw.weekstart || ','::text) || date((pw.weekstart + '1 day'::interval))) || ','::text) || date((pw.weekstart + '2 days'::interval))) || ','::text) || date((pw.weekstart + '3 days'::interval))) || ','::text) || date((pw.weekstart + '4 days'::interval))) || ','::text) || date((pw.weekstart + '5 days'::interval))) || ','::text) || date((pw.weekstart + '6 days'::interval))) AS weekdates, + to_char(pw.contracthours, 'HH24:MI'::text) AS week_contracthours, + to_char(pw.workhours, 'HH24:MI'::text) AS week_workhours, + to_char(pw.vacancyhours, 'HH24:MI'::text) AS week_vacancyhours, + to_char(pw.recuperationhours, 'HH24:MI'::text) AS week_recuperationhours, + to_char(pw.totalhours, 'HH24:MI'::text) AS week_totalhours, CASE - WHEN (stw2.isodow = (3)::double precision) THEN ((stw2.time1 + stw2.time2) - (stw2.timepause)::interval) - ELSE NULL::interval - END), 'HH24:MI'::text) AS wed_timetotal, - max( + WHEN (pw.diffhours < '00:00:00'::interval) THEN ('-'::text || replace(to_char(pw.diffhours, 'HH24:MI'::text), '-'::text, ''::text)) + ELSE to_char(pw.diffhours, 'HH24:MI'::text) + END AS week_diffhours, + ((pw.calyear || '-'::text) || lpad((pw.calweek)::text, 2, '0'::text)) AS weekident + FROM (portanova.staffreportperiodweeks pw + LEFT JOIN portanova.staffreportperioddays pd ON (((pw.weekstart = date_trunc('week'::text, (pd.daydate)::timestamp with time zone)) AND (pw.id_staff = pd.id_staff) AND (pw.id_reportperiod = pd.id_reportperiod)))) + ORDER BY pd.id_reportperiod, pd.id_staff, pd.daydate; + + +ALTER TABLE portanova.vw_staffreportperioddays OWNER TO potlu_user; + +-- +-- Name: vw_staffreportperiodlist; Type: VIEW; Schema: portanova; Owner: potlu_user +-- + +CREATE VIEW portanova.vw_staffreportperiodlist AS + SELECT st.prename, + st.surname, + to_char(srp.contracthours, 'HH24:MI'::text) AS contracthours, + to_char(srp.workhours, 'HH24:MI'::text) AS workhours, + to_char(srp.vacancyhours, 'HH24:MI'::text) AS vacancyhours, + to_char(srp.recuperationhours, 'HH24:MI'::text) AS recuperationhours, CASE - WHEN (stw2.isodow = (4)::double precision) THEN stw2.id - ELSE NULL::bigint - END) AS thu_id, - max( - CASE - WHEN (stw2.isodow = (4)::double precision) THEN to_char((stw2.timestart1)::interval, 'HH24:MI'::text) - ELSE NULL::text - END) AS thu_start1, - max( - CASE - WHEN (stw2.isodow = (4)::double precision) THEN to_char((stw2.timeend1)::interval, 'HH24:MI'::text) - ELSE NULL::text - END) AS thu_end1, - max( - CASE - WHEN (stw2.isodow = (4)::double precision) THEN to_char((stw2.timestart2)::interval, 'HH24:MI'::text) - ELSE NULL::text - END) AS thu_start2, - max( - CASE - WHEN (stw2.isodow = (4)::double precision) THEN to_char((stw2.timeend2)::interval, 'HH24:MI'::text) - ELSE NULL::text - END) AS thu_end2, - max( - CASE - WHEN (stw2.isodow = (4)::double precision) THEN to_char((stw2.timepause)::interval, 'HH24:MI'::text) - ELSE NULL::text - END) AS thu_pause, - to_char(max( - CASE - WHEN (stw2.isodow = (4)::double precision) THEN ((stw2.time1 + stw2.time2) - (stw2.timepause)::interval) - ELSE NULL::interval - END), 'HH24:MI'::text) AS thu_timetotal, - max( - CASE - WHEN (stw2.isodow = (5)::double precision) THEN stw2.id - ELSE NULL::bigint - END) AS fri_id, - max( - CASE - WHEN (stw2.isodow = (5)::double precision) THEN to_char((stw2.timestart1)::interval, 'HH24:MI'::text) - ELSE NULL::text - END) AS fri_start1, - max( - CASE - WHEN (stw2.isodow = (5)::double precision) THEN to_char((stw2.timeend1)::interval, 'HH24:MI'::text) - ELSE NULL::text - END) AS fri_end1, - max( - CASE - WHEN (stw2.isodow = (5)::double precision) THEN to_char((stw2.timestart2)::interval, 'HH24:MI'::text) - ELSE NULL::text - END) AS fri_start2, - max( - CASE - WHEN (stw2.isodow = (5)::double precision) THEN to_char((stw2.timeend2)::interval, 'HH24:MI'::text) - ELSE NULL::text - END) AS fri_end2, - max( - CASE - WHEN (stw2.isodow = (5)::double precision) THEN to_char((stw2.timepause)::interval, 'HH24:MI'::text) - ELSE NULL::text - END) AS fri_pause, - to_char(max( - CASE - WHEN (stw2.isodow = (5)::double precision) THEN ((stw2.time1 + stw2.time2) - (stw2.timepause)::interval) - ELSE NULL::interval - END), 'HH24:MI'::text) AS fri_timetotal, - max( - CASE - WHEN (stw2.isodow = (6)::double precision) THEN stw2.id - ELSE NULL::bigint - END) AS sat_id, - max( - CASE - WHEN (stw2.isodow = (6)::double precision) THEN to_char((stw2.timestart1)::interval, 'HH24:MI'::text) - ELSE NULL::text - END) AS sat_start1, - max( - CASE - WHEN (stw2.isodow = (6)::double precision) THEN to_char((stw2.timeend1)::interval, 'HH24:MI'::text) - ELSE NULL::text - END) AS sat_end1, - max( - CASE - WHEN (stw2.isodow = (6)::double precision) THEN to_char((stw2.timestart2)::interval, 'HH24:MI'::text) - ELSE NULL::text - END) AS sat_start2, - max( - CASE - WHEN (stw2.isodow = (6)::double precision) THEN to_char((stw2.timeend2)::interval, 'HH24:MI'::text) - ELSE NULL::text - END) AS sat_end2, - max( - CASE - WHEN (stw2.isodow = (6)::double precision) THEN to_char((stw2.timepause)::interval, 'HH24:MI'::text) - ELSE NULL::text - END) AS sat_pause, - to_char(max( - CASE - WHEN (stw2.isodow = (6)::double precision) THEN ((stw2.time1 + stw2.time2) - (stw2.timepause)::interval) - ELSE NULL::interval - END), 'HH24:MI'::text) AS sat_timetotal, - max( - CASE - WHEN (stw2.isodow = (7)::double precision) THEN stw2.id - ELSE NULL::bigint - END) AS sun_id, - max( - CASE - WHEN (stw2.isodow = (7)::double precision) THEN to_char((stw2.timestart1)::interval, 'HH24:MI'::text) - ELSE NULL::text - END) AS sun_start1, - max( - CASE - WHEN (stw2.isodow = (7)::double precision) THEN to_char((stw2.timeend1)::interval, 'HH24:MI'::text) - ELSE NULL::text - END) AS sun_end1, - max( - CASE - WHEN (stw2.isodow = (7)::double precision) THEN to_char((stw2.timestart2)::interval, 'HH24:MI'::text) - ELSE NULL::text - END) AS sun_start2, - max( - CASE - WHEN (stw2.isodow = (7)::double precision) THEN to_char((stw2.timeend2)::interval, 'HH24:MI'::text) - ELSE NULL::text - END) AS sun_end2, - max( - CASE - WHEN (stw2.isodow = (7)::double precision) THEN to_char((stw2.timepause)::interval, 'HH24:MI'::text) - ELSE NULL::text - END) AS sun_pause, - to_char(max( - CASE - WHEN (stw2.isodow = (7)::double precision) THEN ((stw2.time1 + stw2.time2) - (stw2.timepause)::interval) - ELSE NULL::interval - END), 'HH24:MI'::text) AS sun_timetotal, - to_char(sum(((stw2.time1 + stw2.time2) - (stw2.timepause)::interval)), 'HH24:MI'::text) AS week_timetotal - FROM ( SELECT staffreportperioddays.daydate, - date_part('week'::text, staffreportperioddays.daydate) AS calweek, - (date_trunc('week'::text, (staffreportperioddays.daydate)::timestamp with time zone))::date AS caldate, - date_part('isodow'::text, staffreportperioddays.daydate) AS isodow, - staffreportperioddays.id, - staffreportperioddays.id_staff, - staffreportperioddays.timestart1, - staffreportperioddays.timeend1, - CASE - WHEN (staffreportperioddays.timestart1 > staffreportperioddays.timeend1) THEN ('24:00:00'::time without time zone - ((staffreportperioddays.timestart1 - staffreportperioddays.timeend1))::time without time zone) - ELSE (staffreportperioddays.timeend1 - staffreportperioddays.timestart1) - END AS time1, - staffreportperioddays.timestart2, - staffreportperioddays.timeend2, - CASE - WHEN (staffreportperioddays.timestart2 > staffreportperioddays.timeend2) THEN ('24:00:00'::time without time zone - ((staffreportperioddays.timestart2 - staffreportperioddays.timeend2))::time without time zone) - ELSE (staffreportperioddays.timeend2 - staffreportperioddays.timestart2) - END AS time2, - staffreportperioddays.timepause - FROM portanova.staffreportperioddays) stw2 - GROUP BY stw2.calweek, stw2.caldate, stw2.id_staff; - - -ALTER TABLE portanova.vw_staffplanned_dayweektotals OWNER TO potlu_user; - --- --- Name: vw_staffreportperioddays; Type: VIEW; Schema: portanova; Owner: potlu_user --- - -CREATE VIEW portanova.vw_staffreportperioddays AS - SELECT pd.id, - pd.id_staff, - pd.id_reportperiod, - pd.daydate, - to_char((pd.timestart1)::interval, 'HH24:MI'::text) AS timestart1, - to_char((pd.timeend1)::interval, 'HH24:MI'::text) AS timeend1, - to_char((pd.timestart2)::interval, 'HH24:MI'::text) AS timestart2, - to_char((pd.timeend2)::interval, 'HH24:MI'::text) AS timeend2, - to_char((pd.timepause)::interval, 'HH24:MI'::text) AS timepause, - to_char(( - CASE - WHEN ((pd.vacancyhours)::interval = '00:00:00'::interval) THEN NULL::time without time zone - ELSE pd.vacancyhours - END)::interval, 'HH24:MI'::text) AS vacancyhours, - to_char((pd.contracthours)::interval, 'HH24:MI'::text) AS contracthours, - to_char(( - CASE - WHEN ((pd.workhours)::interval = '00:00:00'::interval) THEN NULL::time without time zone - ELSE pd.workhours - END)::interval, 'HH24:MI'::text) AS workhours, - to_char(( - CASE - WHEN ((pd.dayhours)::interval = '00:00:00'::interval) THEN NULL::time without time zone - ELSE pd.dayhours - END)::interval, 'HH24:MI'::text) AS dayhours, - pd.id_vacancytype, - pd.daytype, - to_char(( - CASE - WHEN ((pd.recuperationhours)::interval = '00:00:00'::interval) THEN NULL::time without time zone - ELSE pd.recuperationhours - END)::interval, 'HH24:MI'::text) AS recuperationhours, - pd.id_recuperationtype, - to_char(( - CASE - WHEN ((pd.interruptionhours)::interval = '00:00:00'::interval) THEN NULL::time without time zone - ELSE pd.interruptionhours - END)::interval, 'HH24:MI'::text) AS interruptionhours, - pw.id AS id_week, - (((((((pw.calyear || '-'::text) || lpad((pw.calweek)::text, 2, '0'::text)) || '('::text) || to_char((pw.weekstart)::timestamp with time zone, 'DD.MM.YYYY'::text)) || ' - '::text) || to_char((date((pw.weekstart + '6 days'::interval)))::timestamp with time zone, 'DD.MM.YYYY'::text)) || ')'::text) AS dspweek, - to_char(pw.contracthours, 'HH24:MI'::text) AS week_contracthours, - to_char(pw.workhours, 'HH24:MI'::text) AS week_workhours, - to_char(pw.vacancyhours, 'HH24:MI'::text) AS week_vacancyhours, - to_char(pw.recuperationhours, 'HH24:MI'::text) AS week_recuperationhours, - to_char(pw.totalhours, 'HH24:MI'::text) AS week_totalhours, - CASE - WHEN (pw.diffhours < '00:00:00'::interval) THEN ('-'::text || replace(to_char(pw.diffhours, 'HH24:MI'::text), '-'::text, ''::text)) - ELSE to_char(pw.diffhours, 'HH24:MI'::text) - END AS week_diffhours - FROM (portanova.staffreportperiodweeks pw - LEFT JOIN portanova.staffreportperioddays pd ON (((pw.weekstart = date_trunc('week'::text, (pd.daydate)::timestamp with time zone)) AND (pw.id_staff = pd.id_staff) AND (pw.id_reportperiod = pd.id_reportperiod)))) - ORDER BY pd.id_reportperiod, pd.id_staff, pd.daydate; - - -ALTER TABLE portanova.vw_staffreportperioddays OWNER TO potlu_user; - --- --- Name: vw_staffreportperiodlist; Type: VIEW; Schema: portanova; Owner: potlu_user --- - -CREATE VIEW portanova.vw_staffreportperiodlist AS - SELECT st.prename, - st.surname, - to_char(srp.contracthours, 'HH24:MI'::text) AS contracthours, - to_char(srp.workhours, 'HH24:MI'::text) AS workhours, - to_char(srp.vacancyhours, 'HH24:MI'::text) AS vacancyhours, - to_char(srp.recuperationhours, 'HH24:MI'::text) AS recuperationhours, - CASE - WHEN (srp.hoursdiff < '00:00:00'::interval) THEN ('-'::text || replace(to_char(srp.hoursdiff, 'HH24:MI'::text), '-'::text, ''::text)) - ELSE to_char(srp.hoursdiff, 'HH24:MI'::text) + WHEN (srp.hoursdiff < '00:00:00'::interval) THEN ('-'::text || replace(to_char((srp.hoursdiff - COALESCE(srp.payedhours, '00:00:00'::interval)), 'HH24:MI'::text), '-'::text, ''::text)) + ELSE to_char((srp.hoursdiff - COALESCE(srp.payedhours, '00:00:00'::interval)), 'HH24:MI'::text) END AS hoursdiff, to_char(srp.totalhours, 'HH24:MI'::text) AS totalhours, srp.id_reportperiod, @@ -2224,579 +1912,87 @@ CREATE VIEW portanova.vw_staffreportperiodlist AS rp.enddate, ((st.surname || ' '::text) || st.prename) AS staffname, st.id_staffgroup, - sgr.groupname + sgr.groupname, + to_char(srp.payedhours, 'HH24:MI'::text) AS payedhours FROM (((portanova.staffreportperiod srp LEFT JOIN portanova.staff st ON ((srp.id_staff = st.id))) LEFT JOIN portanova.reportperiod rp ON ((srp.id_reportperiod = rp.id))) LEFT JOIN portanova.staffgroups sgr ON ((st.id_staffgroup = sgr.id))) - ORDER BY sgr.groupname, st.surname, st.prename, srp.id_staff, rp.startdate, rp.enddate; + ORDER BY st.surname, st.prename, srp.id_staff, rp.startdate, rp.enddate; ALTER TABLE portanova.vw_staffreportperiodlist OWNER TO potlu_user; -- --- Name: vw_staffworkplan_dailylist; Type: VIEW; Schema: portanova; Owner: potlu_user +-- Name: vw_vacancylist; Type: VIEW; Schema: portanova; Owner: potlu_user -- -CREATE VIEW portanova.vw_staffworkplan_dailylist AS - SELECT staffreportperioddays.id, - staffreportperioddays.id_staff, - staffreportperioddays.daydate, - staffreportperioddays.timestart1, - staffreportperioddays.timeend1, - staffreportperioddays.timestart2, - staffreportperioddays.timeend2, - staffreportperioddays.timepause, - staffreportperioddays.interruptionhours, - staffreportperioddays.workhours, - staffreportperioddays.id_recuperationtype, - staffreportperioddays.recuperationhours, - staffreportperioddays.id_vacancytype, - staffreportperioddays.vacancyhours, - staffreportperioddays.trackedhours, - staffreportperioddays.daytype, - staffreportperioddays.contracthours, - staffreportperioddays.id_reportperiod - FROM portanova.staffreportperioddays - ORDER BY staffreportperioddays.id_staff, staffreportperioddays.daydate, staffreportperioddays.id_reportperiod; - - -ALTER TABLE portanova.vw_staffworkplan_dailylist OWNER TO potlu_user; +CREATE VIEW portanova.vw_vacancylist AS + SELECT vacancytypes.id, + vacancytypes.vacancyname, + vacancytypes.isworktime + FROM portanova.vacancytypes; --- --- Name: vw_staffworkplan_weekly; Type: VIEW; Schema: portanova; Owner: potlu_user --- -CREATE VIEW portanova.vw_staffworkplan_weekly AS - SELECT stw2.calweek, - to_char((stw2.caldate)::timestamp with time zone, 'YYYY'::text) AS calyear, - stw2.caldate AS weekbegin, - public.getdateslist(stw2.caldate, 7) AS dates, - stw2.id_staff, - max( - CASE - WHEN (stw2.isodow = (1)::double precision) THEN stw2.id - ELSE NULL::bigint - END) AS mon_id, - max( - CASE - WHEN (stw2.isodow = (1)::double precision) THEN to_char((stw2.timestart1)::interval, 'HH24:MI'::text) - ELSE NULL::text - END) AS mon_timestart1, - max( - CASE - WHEN (stw2.isodow = (1)::double precision) THEN to_char((stw2.timeend1)::interval, 'HH24:MI'::text) - ELSE NULL::text - END) AS mon_timeend1, - max( - CASE - WHEN (stw2.isodow = (1)::double precision) THEN to_char((stw2.timestart2)::interval, 'HH24:MI'::text) - ELSE NULL::text - END) AS mon_timestart2, - max( - CASE - WHEN (stw2.isodow = (1)::double precision) THEN to_char((stw2.timeend2)::interval, 'HH24:MI'::text) - ELSE NULL::text - END) AS mon_timeend2, - max( - CASE - WHEN (stw2.isodow = (1)::double precision) THEN to_char((stw2.timepause)::interval, 'HH24:MI'::text) - ELSE NULL::text - END) AS mon_timepause, - max( - CASE - WHEN (stw2.isodow = (1)::double precision) THEN to_char((stw2.vacancyhours)::interval, 'HH24:MI'::text) - ELSE NULL::text - END) AS mon_vacancyhours, - max( - CASE - WHEN (stw2.isodow = (1)::double precision) THEN stw2.vacancyname - ELSE NULL::text - END) AS mon_vacancyname, - max( - CASE - WHEN (stw2.isodow = (1)::double precision) THEN stw2.color - ELSE NULL::text - END) AS mon_color, - max( - CASE - WHEN (stw2.isodow = (1)::double precision) THEN stw2.id_vacancytype - ELSE NULL::integer - END) AS mon_vacancytype, - max( - CASE - WHEN (stw2.isodow = (1)::double precision) THEN stw2.daytype - ELSE NULL::integer - END) AS mon_daytype, - to_char(max( - CASE - WHEN (stw2.isodow = (1)::double precision) THEN ((stw2.time1 + stw2.time2) - (stw2.timepause)::interval) - ELSE NULL::interval - END), 'HH24:MI'::text) AS mon_timetotal, - max( - CASE - WHEN (stw2.isodow = (2)::double precision) THEN stw2.id - ELSE NULL::bigint - END) AS tue_id, - max( - CASE - WHEN (stw2.isodow = (2)::double precision) THEN to_char((stw2.timestart1)::interval, 'HH24:MI'::text) - ELSE NULL::text - END) AS tue_timestart1, - max( - CASE - WHEN (stw2.isodow = (2)::double precision) THEN to_char((stw2.timeend1)::interval, 'HH24:MI'::text) - ELSE NULL::text - END) AS tue_timeend1, - max( - CASE - WHEN (stw2.isodow = (2)::double precision) THEN to_char((stw2.timestart2)::interval, 'HH24:MI'::text) - ELSE NULL::text - END) AS tue_timestart2, - max( - CASE - WHEN (stw2.isodow = (2)::double precision) THEN to_char((stw2.timeend2)::interval, 'HH24:MI'::text) - ELSE NULL::text - END) AS tue_timeend2, - max( - CASE - WHEN (stw2.isodow = (2)::double precision) THEN to_char((stw2.timepause)::interval, 'HH24:MI'::text) - ELSE NULL::text - END) AS tue_timepause, - max( - CASE - WHEN (stw2.isodow = (2)::double precision) THEN to_char((stw2.vacancyhours)::interval, 'HH24:MI'::text) - ELSE NULL::text - END) AS tue_vacancyhours, - max( - CASE - WHEN (stw2.isodow = (2)::double precision) THEN stw2.id_vacancytype - ELSE NULL::integer - END) AS tue_vacancytype, - max( - CASE - WHEN (stw2.isodow = (2)::double precision) THEN stw2.vacancyname - ELSE NULL::text - END) AS tue_vacancyname, - max( - CASE - WHEN (stw2.isodow = (2)::double precision) THEN stw2.color - ELSE NULL::text - END) AS tue_color, - max( - CASE - WHEN (stw2.isodow = (2)::double precision) THEN stw2.daytype - ELSE NULL::integer - END) AS tue_daytype, - to_char(max( - CASE - WHEN (stw2.isodow = (2)::double precision) THEN ((stw2.time1 + stw2.time2) - (stw2.timepause)::interval) - ELSE NULL::interval - END), 'HH24:MI'::text) AS tue_timetotal, - max( - CASE - WHEN (stw2.isodow = (3)::double precision) THEN stw2.id - ELSE NULL::bigint - END) AS wed_id, - max( - CASE - WHEN (stw2.isodow = (3)::double precision) THEN to_char((stw2.timestart1)::interval, 'HH24:MI'::text) - ELSE NULL::text - END) AS wed_timestart1, - max( - CASE - WHEN (stw2.isodow = (3)::double precision) THEN to_char((stw2.timeend1)::interval, 'HH24:MI'::text) - ELSE NULL::text - END) AS wed_timeend1, - max( - CASE - WHEN (stw2.isodow = (3)::double precision) THEN to_char((stw2.timestart2)::interval, 'HH24:MI'::text) - ELSE NULL::text - END) AS wed_timestart2, - max( - CASE - WHEN (stw2.isodow = (3)::double precision) THEN to_char((stw2.timeend2)::interval, 'HH24:MI'::text) - ELSE NULL::text - END) AS wed_timeend2, - max( - CASE - WHEN (stw2.isodow = (3)::double precision) THEN to_char((stw2.timepause)::interval, 'HH24:MI'::text) - ELSE NULL::text - END) AS wed_timepause, - max( - CASE - WHEN (stw2.isodow = (3)::double precision) THEN to_char((stw2.vacancyhours)::interval, 'HH24:MI'::text) - ELSE NULL::text - END) AS wed_vacancyhours, - max( - CASE - WHEN (stw2.isodow = (3)::double precision) THEN stw2.id_vacancytype - ELSE NULL::integer - END) AS wed_vacancytype, - max( - CASE - WHEN (stw2.isodow = (3)::double precision) THEN stw2.vacancyname - ELSE NULL::text - END) AS wed_vacancyname, - max( - CASE - WHEN (stw2.isodow = (3)::double precision) THEN stw2.color - ELSE NULL::text - END) AS wed_color, - max( - CASE - WHEN (stw2.isodow = (3)::double precision) THEN stw2.daytype - ELSE NULL::integer - END) AS wed_daytype, - to_char(max( - CASE - WHEN (stw2.isodow = (3)::double precision) THEN ((stw2.time1 + stw2.time2) - (stw2.timepause)::interval) - ELSE NULL::interval - END), 'HH24:MI'::text) AS wed_timetotal, - max( - CASE - WHEN (stw2.isodow = (4)::double precision) THEN stw2.id - ELSE NULL::bigint - END) AS thu_id, - max( - CASE - WHEN (stw2.isodow = (4)::double precision) THEN to_char((stw2.timestart1)::interval, 'HH24:MI'::text) - ELSE NULL::text - END) AS thu_timestart1, - max( - CASE - WHEN (stw2.isodow = (4)::double precision) THEN to_char((stw2.timeend1)::interval, 'HH24:MI'::text) - ELSE NULL::text - END) AS thu_timeend1, - max( - CASE - WHEN (stw2.isodow = (4)::double precision) THEN to_char((stw2.timestart2)::interval, 'HH24:MI'::text) - ELSE NULL::text - END) AS thu_timestart2, - max( - CASE - WHEN (stw2.isodow = (4)::double precision) THEN to_char((stw2.timeend2)::interval, 'HH24:MI'::text) - ELSE NULL::text - END) AS thu_timeend2, - max( - CASE - WHEN (stw2.isodow = (4)::double precision) THEN to_char((stw2.timepause)::interval, 'HH24:MI'::text) - ELSE NULL::text - END) AS thu_timepause, - max( - CASE - WHEN (stw2.isodow = (4)::double precision) THEN to_char((stw2.vacancyhours)::interval, 'HH24:MI'::text) - ELSE NULL::text - END) AS thu_vacancyhours, - max( - CASE - WHEN (stw2.isodow = (4)::double precision) THEN stw2.id_vacancytype - ELSE NULL::integer - END) AS thu_vacancytype, - max( - CASE - WHEN (stw2.isodow = (4)::double precision) THEN stw2.vacancyname - ELSE NULL::text - END) AS thu_vacancyname, - max( - CASE - WHEN (stw2.isodow = (4)::double precision) THEN stw2.color - ELSE NULL::text - END) AS thu_color, - max( - CASE - WHEN (stw2.isodow = (4)::double precision) THEN stw2.daytype - ELSE NULL::integer - END) AS thu_daytype, - to_char(max( - CASE - WHEN (stw2.isodow = (4)::double precision) THEN ((stw2.time1 + stw2.time2) - (stw2.timepause)::interval) - ELSE NULL::interval - END), 'HH24:MI'::text) AS thu_timetotal, - max( - CASE - WHEN (stw2.isodow = (5)::double precision) THEN stw2.id - ELSE NULL::bigint - END) AS fri_id, - max( - CASE - WHEN (stw2.isodow = (5)::double precision) THEN to_char((stw2.timestart1)::interval, 'HH24:MI'::text) - ELSE NULL::text - END) AS fri_timestart1, - max( - CASE - WHEN (stw2.isodow = (5)::double precision) THEN to_char((stw2.timeend1)::interval, 'HH24:MI'::text) - ELSE NULL::text - END) AS fri_timeend1, - max( - CASE - WHEN (stw2.isodow = (5)::double precision) THEN to_char((stw2.timestart2)::interval, 'HH24:MI'::text) - ELSE NULL::text - END) AS fri_timestart2, - max( - CASE - WHEN (stw2.isodow = (5)::double precision) THEN to_char((stw2.timeend2)::interval, 'HH24:MI'::text) - ELSE NULL::text - END) AS fri_timeend2, - max( - CASE - WHEN (stw2.isodow = (5)::double precision) THEN to_char((stw2.timepause)::interval, 'HH24:MI'::text) - ELSE NULL::text - END) AS fri_timepause, - max( - CASE - WHEN (stw2.isodow = (5)::double precision) THEN to_char((stw2.vacancyhours)::interval, 'HH24:MI'::text) - ELSE NULL::text - END) AS fri_vacancyhours, - max( - CASE - WHEN (stw2.isodow = (5)::double precision) THEN stw2.id_vacancytype - ELSE NULL::integer - END) AS fri_vacancytype, - max( - CASE - WHEN (stw2.isodow = (5)::double precision) THEN stw2.vacancyname - ELSE NULL::text - END) AS fri_vacancyname, - max( - CASE - WHEN (stw2.isodow = (5)::double precision) THEN stw2.color - ELSE NULL::text - END) AS fri_color, - max( - CASE - WHEN (stw2.isodow = (5)::double precision) THEN stw2.daytype - ELSE NULL::integer - END) AS fri_daytype, - to_char(max( - CASE - WHEN (stw2.isodow = (5)::double precision) THEN ((stw2.time1 + stw2.time2) - (stw2.timepause)::interval) - ELSE NULL::interval - END), 'HH24:MI'::text) AS fri_timetotal, - max( - CASE - WHEN (stw2.isodow = (6)::double precision) THEN stw2.id - ELSE NULL::bigint - END) AS sat_id, - max( - CASE - WHEN (stw2.isodow = (6)::double precision) THEN to_char((stw2.timestart1)::interval, 'HH24:MI'::text) - ELSE NULL::text - END) AS sat_timestart1, - max( - CASE - WHEN (stw2.isodow = (6)::double precision) THEN to_char((stw2.timeend1)::interval, 'HH24:MI'::text) - ELSE NULL::text - END) AS sat_timeend1, - max( - CASE - WHEN (stw2.isodow = (6)::double precision) THEN to_char((stw2.timestart2)::interval, 'HH24:MI'::text) - ELSE NULL::text - END) AS sat_timestart2, - max( - CASE - WHEN (stw2.isodow = (6)::double precision) THEN to_char((stw2.timeend2)::interval, 'HH24:MI'::text) - ELSE NULL::text - END) AS sat_timeend2, - max( - CASE - WHEN (stw2.isodow = (6)::double precision) THEN to_char((stw2.timepause)::interval, 'HH24:MI'::text) - ELSE NULL::text - END) AS sat_timepause, - max( - CASE - WHEN (stw2.isodow = (6)::double precision) THEN to_char((stw2.vacancyhours)::interval, 'HH24:MI'::text) - ELSE NULL::text - END) AS sat_vacancyhours, - max( - CASE - WHEN (stw2.isodow = (6)::double precision) THEN stw2.id_vacancytype - ELSE NULL::integer - END) AS sat_vacancytype, - max( - CASE - WHEN (stw2.isodow = (6)::double precision) THEN stw2.vacancyname - ELSE NULL::text - END) AS sat_vacancyname, - max( - CASE - WHEN (stw2.isodow = (6)::double precision) THEN stw2.color - ELSE NULL::text - END) AS sat_color, - max( - CASE - WHEN (stw2.isodow = (6)::double precision) THEN stw2.daytype - ELSE NULL::integer - END) AS sat_daytype, - to_char(max( - CASE - WHEN (stw2.isodow = (6)::double precision) THEN ((stw2.time1 + stw2.time2) - (stw2.timepause)::interval) - ELSE NULL::interval - END), 'HH24:MI'::text) AS sat_timetotal, - max( - CASE - WHEN (stw2.isodow = (7)::double precision) THEN stw2.id - ELSE NULL::bigint - END) AS sun_id, - max( - CASE - WHEN (stw2.isodow = (7)::double precision) THEN to_char((stw2.timestart1)::interval, 'HH24:MI'::text) - ELSE NULL::text - END) AS sun_timestart1, - max( - CASE - WHEN (stw2.isodow = (7)::double precision) THEN to_char((stw2.timeend1)::interval, 'HH24:MI'::text) - ELSE NULL::text - END) AS sun_timeend1, - max( - CASE - WHEN (stw2.isodow = (7)::double precision) THEN to_char((stw2.timestart2)::interval, 'HH24:MI'::text) - ELSE NULL::text - END) AS sun_timestart2, - max( - CASE - WHEN (stw2.isodow = (7)::double precision) THEN to_char((stw2.timeend2)::interval, 'HH24:MI'::text) - ELSE NULL::text - END) AS sun_timeend2, - max( - CASE - WHEN (stw2.isodow = (7)::double precision) THEN to_char((stw2.timepause)::interval, 'HH24:MI'::text) - ELSE NULL::text - END) AS sun_timepause, - max( - CASE - WHEN (stw2.isodow = (7)::double precision) THEN to_char((stw2.vacancyhours)::interval, 'HH24:MI'::text) - ELSE NULL::text - END) AS sun_vacancyhours, - max( - CASE - WHEN (stw2.isodow = (7)::double precision) THEN stw2.id_vacancytype - ELSE NULL::integer - END) AS sun_vacancytype, - max( - CASE - WHEN (stw2.isodow = (7)::double precision) THEN stw2.vacancyname - ELSE NULL::text - END) AS sun_vacancyname, - max( - CASE - WHEN (stw2.isodow = (7)::double precision) THEN stw2.color - ELSE NULL::text - END) AS sun_color, - max( - CASE - WHEN (stw2.isodow = (7)::double precision) THEN stw2.daytype - ELSE NULL::integer - END) AS sun_daytype, - to_char(max( - CASE - WHEN (stw2.isodow = (7)::double precision) THEN ((stw2.time1 + stw2.time2) - (stw2.timepause)::interval) - ELSE NULL::interval - END), 'HH24:MI'::text) AS sun_timetotal, - to_char(sum(((stw2.time1 + stw2.time2) - (stw2.timepause)::interval)), 'HH24:MI'::text) AS week_timetotal, - CASE - WHEN ((stw2.calweek IS NOT NULL) AND (stw2.id_staff IS NOT NULL)) THEN public.weekvacancy('portanova'::text, stw2.calweek, stw2.id_staff) - ELSE NULL::text - END AS week_vacancy, - stw2.staffname AS dspstaffname - FROM ( SELECT stw.daydate, - date_part('week'::text, stw.daydate) AS calweek, - (date_trunc('week'::text, (stw.daydate)::timestamp with time zone))::date AS caldate, - date_part('isodow'::text, stw.daydate) AS isodow, - stw.id, - stw.id_staff, - ((st.surname || ' '::text) || st.prename) AS staffname, - stw.timestart1, - stw.timeend1, - stw.vacancyhours, - stw.id_vacancytype, - vt.color, - vt.vacancyname, - stw.daytype, - CASE - WHEN (stw.timestart1 > stw.timeend1) THEN ('24:00:00'::time without time zone - ((stw.timestart1 - stw.timeend1))::time without time zone) - ELSE (stw.timeend1 - stw.timestart1) - END AS time1, - stw.timestart2, - stw.timeend2, - CASE - WHEN (stw.timestart2 > stw.timeend2) THEN ('24:00:00'::time without time zone - ((stw.timestart2 - stw.timeend2))::time without time zone) - ELSE (stw.timeend2 - stw.timestart2) - END AS time2, - stw.timepause - FROM ((portanova.staffreportperioddays stw - LEFT JOIN portanova.staff st ON ((stw.id_staff = st.id))) - LEFT JOIN portanova.vacancytypes vt ON ((stw.id_vacancytype = vt.id)))) stw2 - GROUP BY stw2.calweek, stw2.caldate, stw2.id_staff, stw2.staffname; +ALTER TABLE portanova.vw_vacancylist OWNER TO potlu_user; +-- +-- Name: workplandays; Type: TABLE; Schema: portanova; Owner: potlu_user +-- + +CREATE TABLE portanova.workplandays ( + id integer NOT NULL, + id_workplan integer, + weekday integer, + start1 time without time zone, + end1 time without time zone, + start2 time without time zone, + end2 time without time zone, + pause time without time zone +); -ALTER TABLE portanova.vw_staffworkplan_weekly OWNER TO potlu_user; + +ALTER TABLE portanova.workplandays OWNER TO potlu_user; -- --- Name: vw_staffworkplandata; Type: VIEW; Schema: portanova; Owner: potlu_user +-- Name: vw_workplandaysdata; Type: VIEW; Schema: portanova; Owner: potlu_user -- -CREATE VIEW portanova.vw_staffworkplandata AS - SELECT date_part('isoyear'::text, swp.daydate) AS calyear, - date_part('week'::text, swp.daydate) AS calweek, - to_char((swp.daydate)::timestamp with time zone, 'dy'::text) AS weekday, - swp.id, - swp.id_staff, - swp.daydate, - ((st.surname || ' '::text) || st.prename) AS staffname, - to_char((swp.timestart1)::interval, 'HH24:MI'::text) AS timestart1, - to_char((swp.timeend1)::interval, 'HH24:MI'::text) AS timeend1, - to_char((swp.timestart2)::interval, 'HH24:MI'::text) AS timestart2, - to_char((swp.timeend2)::interval, 'HH24:MI'::text) AS timeend2, - to_char((swp.timepause)::interval, 'HH24:MI'::text) AS timepause, - to_char((swp.vacancyhours)::interval, 'HH24:MI'::text) AS vacancyhours, - to_char((swp.contracthours)::interval, 'HH24:MI'::text) AS contracthours, - to_char((swp.interruptionhours)::interval, 'HH24:MI'::text) AS interruptionhours, - swp.id_staffgroup, - swp.id_vacancytype, - swp.id_recuperationtype, - swp.daytype, - to_char((swp.workhours)::interval, 'HH24:MI'::text) AS totalhours, - to_char((swp.recuperationhours)::interval, 'HH24:MI'::text) AS recuperationhours, - to_char((swp.trackedhours)::interval, 'HH24:MI'::text) AS trackedhours, - swp.id_reportperiod - FROM (portanova.staffreportperioddays swp - JOIN portanova.staff st ON ((swp.id_staff = st.id))); - - -ALTER TABLE portanova.vw_staffworkplandata OWNER TO potlu_user; - --- --- Name: vw_staffworkplanstafflist; Type: VIEW; Schema: portanova; Owner: potlu_user --- - -CREATE VIEW portanova.vw_staffworkplanstafflist AS - SELECT sc.id AS id_staffcontract, - st.id AS id_staff, - ((st.surname || ' '::text) || st.prename) AS staffname, - sc.startdate, - sc.enddate, - sc.id_staffgroup, - sc.weekhours, - sc.weekdays - FROM (portanova.staff st - LEFT JOIN portanova.staffcontract sc ON ((st.id = sc.id_staff))); +CREATE VIEW portanova.vw_workplandaysdata AS + SELECT workplandays.id, + workplandays.id_workplan, + workplandays.weekday, + workplandays.start1, + workplandays.end1, + workplandays.start2, + workplandays.end2, + workplandays.pause + FROM portanova.workplandays; -ALTER TABLE portanova.vw_staffworkplanstafflist OWNER TO potlu_user; +ALTER TABLE portanova.vw_workplandaysdata OWNER TO potlu_user; -- --- Name: vw_vacancylist; Type: VIEW; Schema: portanova; Owner: potlu_user +-- Name: vw_workplandayslist; Type: VIEW; Schema: portanova; Owner: potlu_user -- -CREATE VIEW portanova.vw_vacancylist AS - SELECT vacancytypes.id, - vacancytypes.vacancyname, - vacancytypes.isworktime - FROM portanova.vacancytypes; +CREATE VIEW portanova.vw_workplandayslist AS +SELECT + NULL::text AS workplan, + NULL::text AS weekhours, + NULL::integer AS id, + NULL::integer AS id_workplan, + NULL::integer AS weekday, + NULL::text AS start1, + NULL::text AS end1, + NULL::text AS start2, + NULL::text AS end2, + NULL::text AS pause, + NULL::text AS dayhours, + NULL::bigint AS staffcount; -ALTER TABLE portanova.vw_vacancylist OWNER TO potlu_user; +ALTER TABLE portanova.vw_workplandayslist OWNER TO potlu_user; -- -- Name: vw_workplanlist; Type: VIEW; Schema: portanova; Owner: potlu_user @@ -2811,143 +2007,65 @@ CREATE VIEW portanova.vw_workplanlist AS ALTER TABLE portanova.vw_workplanlist OWNER TO potlu_user; -- --- Name: vw_workplansdata; Type: VIEW; Schema: portanova; Owner: potlu_user +-- Name: worktimes; Type: TABLE; Schema: portanova; Owner: potlu_user -- -CREATE VIEW portanova.vw_workplansdata AS - SELECT workplans.id, - workplans.workplan, - to_char(((((((COALESCE(( - CASE - WHEN (workplans.mon_timeend2 IS NOT NULL) THEN ((workplans.mon_timeend2 - workplans.mon_timestart1) - (workplans.mon_timestart2 - workplans.mon_timeend1)) - ELSE (workplans.mon_timeend1 - workplans.mon_timestart1) - END - COALESCE((workplans.mon_timepause)::interval, '00:00:00'::interval)), '00:00:00'::interval) + COALESCE(( - CASE - WHEN (workplans.tue_timeend2 IS NOT NULL) THEN ((workplans.tue_timeend2 - workplans.tue_timestart1) - (workplans.tue_timestart2 - workplans.tue_timeend1)) - ELSE (workplans.tue_timeend1 - workplans.tue_timestart1) - END - COALESCE((workplans.tue_timepause)::interval, '00:00:00'::interval)), '00:00:00'::interval)) + COALESCE(( - CASE - WHEN (workplans.wed_timeend2 IS NOT NULL) THEN ((workplans.wed_timeend2 - workplans.wed_timestart1) - (workplans.wed_timestart2 - workplans.wed_timeend1)) - ELSE (workplans.wed_timeend1 - workplans.wed_timestart1) - END - COALESCE((workplans.wed_timepause)::interval, '00:00:00'::interval)), '00:00:00'::interval)) + COALESCE(( - CASE - WHEN (workplans.thu_timeend2 IS NOT NULL) THEN ((workplans.thu_timeend2 - workplans.thu_timestart1) - (workplans.thu_timestart2 - workplans.thu_timeend1)) - ELSE (workplans.thu_timeend1 - workplans.thu_timestart1) - END - COALESCE((workplans.thu_timepause)::interval, '00:00:00'::interval)), '00:00:00'::interval)) + COALESCE(( - CASE - WHEN (workplans.fri_timeend2 IS NOT NULL) THEN ((workplans.fri_timeend2 - workplans.fri_timestart1) - (workplans.fri_timestart2 - workplans.fri_timeend1)) - ELSE (workplans.fri_timeend1 - workplans.fri_timestart1) - END - COALESCE((workplans.fri_timepause)::interval, '00:00:00'::interval)), '00:00:00'::interval)) + COALESCE(( - CASE - WHEN (workplans.sat_timeend2 IS NOT NULL) THEN ((workplans.sat_timeend2 - workplans.sat_timestart1) - (workplans.sat_timestart2 - workplans.sat_timeend1)) - ELSE (workplans.sat_timeend1 - workplans.sat_timestart1) - END - COALESCE((workplans.sat_timepause)::interval, '00:00:00'::interval)), '00:00:00'::interval)) + COALESCE(( - CASE - WHEN (workplans.sun_timeend2 IS NOT NULL) THEN ((workplans.sun_timeend2 - workplans.sun_timestart1) - (workplans.sun_timestart2 - workplans.sun_timeend1)) - ELSE (workplans.sun_timeend1 - workplans.sun_timestart1) - END - COALESCE((workplans.sun_timepause)::interval, '00:00:00'::interval)), '00:00:00'::interval)), 'HH24:MI'::text) AS weektotal, - to_char((workplans.mon_timestart1)::interval, 'HH24:MI'::text) AS mon_timestart1, - to_char((workplans.mon_timeend1)::interval, 'HH24:MI'::text) AS mon_timeend1, - to_char((workplans.mon_timestart2)::interval, 'HH24:MI'::text) AS mon_timestart2, - to_char((workplans.mon_timeend2)::interval, 'HH24:MI'::text) AS mon_timeend2, - to_char((workplans.mon_timepause)::interval, 'HH24:MI'::text) AS mon_timepause, - to_char((workplans.mon_timestart2 - workplans.mon_timeend1), 'HH24:MI'::text) AS mon_interruption, - to_char(( - CASE - WHEN (workplans.mon_timeend2 IS NOT NULL) THEN ((workplans.mon_timeend2 - workplans.mon_timestart1) - (workplans.mon_timestart2 - workplans.mon_timeend1)) - ELSE (workplans.mon_timeend1 - workplans.mon_timestart1) - END - COALESCE((workplans.mon_timepause)::interval, '00:00:00'::interval)), 'HH24:MI'::text) AS mon_total, - to_char((workplans.tue_timestart1)::interval, 'HH24:MI'::text) AS tue_timestart1, - to_char((workplans.tue_timeend1)::interval, 'HH24:MI'::text) AS tue_timeend1, - to_char((workplans.tue_timestart2)::interval, 'HH24:MI'::text) AS tue_timestart2, - to_char((workplans.tue_timeend2)::interval, 'HH24:MI'::text) AS tue_timeend2, - to_char((workplans.tue_timepause)::interval, 'HH24:MI'::text) AS tue_timepause, - to_char((workplans.tue_timestart2 - workplans.tue_timeend1), 'HH24:MI'::text) AS tue_interruption, - to_char(( - CASE - WHEN (workplans.tue_timeend2 IS NOT NULL) THEN ((workplans.tue_timeend2 - workplans.tue_timestart1) - (workplans.tue_timestart2 - workplans.tue_timeend1)) - ELSE (workplans.tue_timeend1 - workplans.tue_timestart1) - END - COALESCE((workplans.tue_timepause)::interval, '00:00:00'::interval)), 'HH24:MI'::text) AS tue_total, - to_char((workplans.wed_timestart1)::interval, 'HH24:MI'::text) AS wed_timestart1, - to_char((workplans.wed_timeend1)::interval, 'HH24:MI'::text) AS wed_timeend1, - to_char((workplans.wed_timestart2)::interval, 'HH24:MI'::text) AS wed_timestart2, - to_char((workplans.wed_timeend2)::interval, 'HH24:MI'::text) AS wed_timeend2, - to_char((workplans.wed_timepause)::interval, 'HH24:MI'::text) AS wed_timepause, - to_char((workplans.wed_timestart2 - workplans.wed_timeend1), 'HH24:MI'::text) AS wed_interruption, - to_char(( - CASE - WHEN (workplans.wed_timeend2 IS NOT NULL) THEN ((workplans.wed_timeend2 - workplans.wed_timestart1) - (workplans.wed_timestart2 - workplans.wed_timeend1)) - ELSE (workplans.wed_timeend1 - workplans.wed_timestart1) - END - COALESCE((workplans.wed_timepause)::interval, '00:00:00'::interval)), 'HH24:MI'::text) AS wed_total, - to_char((workplans.thu_timestart1)::interval, 'HH24:MI'::text) AS thu_timestart1, - to_char((workplans.thu_timeend1)::interval, 'HH24:MI'::text) AS thu_timeend1, - to_char((workplans.thu_timestart2)::interval, 'HH24:MI'::text) AS thu_timestart2, - to_char((workplans.thu_timeend2)::interval, 'HH24:MI'::text) AS thu_timeend2, - to_char((workplans.thu_timepause)::interval, 'HH24:MI'::text) AS thu_timepause, - to_char((workplans.thu_timestart2 - workplans.thu_timeend1), 'HH24:MI'::text) AS thu_interruption, - to_char(( - CASE - WHEN (workplans.thu_timeend2 IS NOT NULL) THEN ((workplans.thu_timeend2 - workplans.thu_timestart1) - (workplans.thu_timestart2 - workplans.thu_timeend1)) - ELSE (workplans.thu_timeend1 - workplans.thu_timestart1) - END - COALESCE((workplans.thu_timepause)::interval, '00:00:00'::interval)), 'HH24:MI'::text) AS thu_total, - to_char((workplans.fri_timestart1)::interval, 'HH24:MI'::text) AS fri_timestart1, - to_char((workplans.fri_timeend1)::interval, 'HH24:MI'::text) AS fri_timeend1, - to_char((workplans.fri_timestart2)::interval, 'HH24:MI'::text) AS fri_timestart2, - to_char((workplans.fri_timeend2)::interval, 'HH24:MI'::text) AS fri_timeend2, - to_char((workplans.fri_timepause)::interval, 'HH24:MI'::text) AS fri_timepause, - to_char((workplans.fri_timestart2 - workplans.fri_timeend1), 'HH24:MI'::text) AS fri_interruption, - to_char(( - CASE - WHEN (workplans.fri_timeend2 IS NOT NULL) THEN ((workplans.fri_timeend2 - workplans.fri_timestart1) - (workplans.fri_timestart2 - workplans.fri_timeend1)) - ELSE (workplans.fri_timeend1 - workplans.fri_timestart1) - END - COALESCE((workplans.fri_timepause)::interval, '00:00:00'::interval)), 'HH24:MI'::text) AS fri_total, - to_char((workplans.sat_timestart1)::interval, 'HH24:MI'::text) AS sat_timestart1, - to_char((workplans.sat_timeend1)::interval, 'HH24:MI'::text) AS sat_timeend1, - to_char((workplans.sat_timestart2)::interval, 'HH24:MI'::text) AS sat_timestart2, - to_char((workplans.sat_timeend2)::interval, 'HH24:MI'::text) AS sat_timeend2, - to_char((workplans.sat_timepause)::interval, 'HH24:MI'::text) AS sat_timepause, - to_char((workplans.sat_timestart2 - workplans.sat_timeend1), 'HH24:MI'::text) AS sat_interruption, - to_char(( - CASE - WHEN (workplans.sat_timeend2 IS NOT NULL) THEN ((workplans.sat_timeend2 - workplans.sat_timestart1) - (workplans.sat_timestart2 - workplans.sat_timeend1)) - ELSE (workplans.sat_timeend1 - workplans.sat_timestart1) - END - COALESCE((workplans.sat_timepause)::interval, '00:00:00'::interval)), 'HH24:MI'::text) AS sat_total, - to_char((workplans.sun_timestart1)::interval, 'HH24:MI'::text) AS sun_timestart1, - to_char((workplans.sun_timeend1)::interval, 'HH24:MI'::text) AS sun_timeend1, - to_char((workplans.sun_timestart2)::interval, 'HH24:MI'::text) AS sun_timestart2, - to_char((workplans.sun_timeend2)::interval, 'HH24:MI'::text) AS sun_timeend2, - to_char((workplans.sun_timepause)::interval, 'HH24:MI'::text) AS sun_timepause, - to_char((workplans.sun_timestart2 - workplans.sat_timeend1), 'HH24:MI'::text) AS sun_interruption, - to_char(( - CASE - WHEN (workplans.sun_timeend2 IS NOT NULL) THEN ((workplans.sun_timeend2 - workplans.sun_timestart1) - (workplans.sun_timestart2 - workplans.sun_timeend1)) - ELSE (workplans.sun_timeend1 - workplans.sun_timestart1) - END - COALESCE((workplans.sun_timepause)::interval, '00:00:00'::interval)), 'HH24:MI'::text) AS sun_total - FROM portanova.workplans; +CREATE TABLE portanova.worktimes ( + id integer NOT NULL, + startdate date, + enddate date, + defaultdayhours interval, + maxdayhours interval, + defaultweekhours interval, + maxweekhours interval, + maxinterruptionhours interval, + isdefault boolean +); -ALTER TABLE portanova.vw_workplansdata OWNER TO potlu_user; +ALTER TABLE portanova.worktimes OWNER TO potlu_user; -- --- Name: vw_workplans; Type: VIEW; Schema: portanova; Owner: potlu_user +-- Name: vw_worktimeslist; Type: VIEW; Schema: portanova; Owner: potlu_user -- -CREATE VIEW portanova.vw_workplans AS - SELECT workplans.id, - workplans.workplan, - vw_workplansdata.weektotal, - ((((COALESCE(((to_char((workplans.mon_timestart1)::interval, 'HH24:MI'::text) || ' - '::text) || to_char((workplans.mon_timeend1)::interval, 'HH24:MI'::text)), ''::text) || COALESCE(((('
'::text || to_char((workplans.mon_timestart2)::interval, 'HH24:MI'::text)) || ' - '::text) || to_char((workplans.mon_timeend2)::interval, 'HH24:MI'::text)), ''::text)) || COALESCE((('
'::text || 'Pause: '::text) || to_char((workplans.mon_timepause)::interval, 'HH24:MI'::text)), ''::text)) || COALESCE((('
'::text || 'Coupure: '::text) || vw_workplansdata.mon_interruption), ''::text)) || COALESCE((('
'::text || 'Total: '::text) || vw_workplansdata.mon_total), ''::text)) AS dspmontimes, - ((((COALESCE(((to_char((workplans.tue_timestart1)::interval, 'HH24:MI'::text) || ' - '::text) || to_char((workplans.tue_timeend1)::interval, 'HH24:MI'::text)), ''::text) || COALESCE(((('
'::text || to_char((workplans.tue_timestart2)::interval, 'HH24:MI'::text)) || ' - '::text) || to_char((workplans.tue_timeend2)::interval, 'HH24:MI'::text)), ''::text)) || COALESCE((('
'::text || 'Pause: '::text) || to_char((workplans.tue_timepause)::interval, 'HH24:MI'::text)), ''::text)) || COALESCE((('
'::text || 'Coupure: '::text) || vw_workplansdata.tue_interruption), ''::text)) || COALESCE((('
'::text || 'Total: '::text) || vw_workplansdata.tue_total), ''::text)) AS dsptuetimes, - ((((COALESCE(((to_char((workplans.wed_timestart1)::interval, 'HH24:MI'::text) || ' - '::text) || to_char((workplans.wed_timeend1)::interval, 'HH24:MI'::text)), ''::text) || COALESCE(((('
'::text || to_char((workplans.wed_timestart2)::interval, 'HH24:MI'::text)) || ' - '::text) || to_char((workplans.wed_timeend2)::interval, 'HH24:MI'::text)), ''::text)) || COALESCE((('
'::text || 'Pause: '::text) || to_char((workplans.wed_timepause)::interval, 'HH24:MI'::text)), ''::text)) || COALESCE((('
'::text || 'Coupure: '::text) || vw_workplansdata.wed_interruption), ''::text)) || COALESCE((('
'::text || 'Total: '::text) || vw_workplansdata.wed_total), ''::text)) AS dspwedtimes, - ((((COALESCE(((to_char((workplans.thu_timestart1)::interval, 'HH24:MI'::text) || ' - '::text) || to_char((workplans.thu_timeend1)::interval, 'HH24:MI'::text)), ''::text) || COALESCE(((('
'::text || to_char((workplans.thu_timestart2)::interval, 'HH24:MI'::text)) || ' - '::text) || to_char((workplans.thu_timeend2)::interval, 'HH24:MI'::text)), ''::text)) || COALESCE((('
'::text || 'Pause: '::text) || to_char((workplans.thu_timepause)::interval, 'HH24:MI'::text)), ''::text)) || COALESCE((('
'::text || 'Coupure: '::text) || vw_workplansdata.thu_interruption), ''::text)) || COALESCE((('
'::text || 'Total: '::text) || vw_workplansdata.thu_total), ''::text)) AS dspthutimes, - ((((COALESCE(((to_char((workplans.fri_timestart1)::interval, 'HH24:MI'::text) || ' -'::text) || to_char((workplans.fri_timeend1)::interval, 'HH24:MI'::text)), ''::text) || COALESCE(((('
'::text || to_char((workplans.fri_timestart2)::interval, 'HH24:MI'::text)) || ' - '::text) || to_char((workplans.fri_timeend2)::interval, 'HH24:MI'::text)), ''::text)) || COALESCE((('
'::text || 'Pause: '::text) || to_char((workplans.fri_timepause)::interval, 'HH24:MI'::text)), ''::text)) || COALESCE((('
'::text || 'Coupure: '::text) || vw_workplansdata.fri_interruption), ''::text)) || COALESCE((('
'::text || 'Total: '::text) || vw_workplansdata.fri_total), ''::text)) AS dspfritimes, - ((((COALESCE(((to_char((workplans.sat_timestart1)::interval, 'HH24:MI'::text) || ' - '::text) || to_char((workplans.sat_timeend1)::interval, 'HH24:MI'::text)), ''::text) || COALESCE(((('
'::text || to_char((workplans.sat_timestart2)::interval, 'HH24:MI'::text)) || ' - '::text) || to_char((workplans.sat_timeend2)::interval, 'HH24:MI'::text)), ''::text)) || COALESCE((('
'::text || 'Pause: '::text) || to_char((workplans.sat_timepause)::interval, 'HH24:MI'::text)), ''::text)) || COALESCE((('
'::text || 'Coupure: '::text) || vw_workplansdata.sat_interruption), ''::text)) || COALESCE((('
'::text || 'Total: '::text) || vw_workplansdata.sat_total), ''::text)) AS dspsattimes, - ((((COALESCE(((to_char((workplans.sun_timestart1)::interval, 'HH24:MI'::text) || ' - '::text) || to_char((workplans.sun_timeend1)::interval, 'HH24:MI'::text)), ''::text) || COALESCE(((('
'::text || to_char((workplans.sun_timestart2)::interval, 'HH24:MI'::text)) || ' - '::text) || to_char((workplans.sun_timeend2)::interval, 'HH24:MI'::text)), ''::text)) || COALESCE((('
'::text || 'Pause: '::text) || to_char((workplans.sun_timepause)::interval, 'HH24:MI'::text)), ''::text)) || COALESCE((('
'::text || 'Coupure: '::text) || vw_workplansdata.sun_interruption), ''::text)) || COALESCE((('
'::text || 'Total: '::text) || vw_workplansdata.sun_total), ''::text)) AS dspsuntimes - FROM (portanova.workplans - JOIN portanova.vw_workplansdata ON ((workplans.id = vw_workplansdata.id))); +CREATE VIEW portanova.vw_worktimeslist AS + SELECT worktimes.id, + worktimes.startdate, + worktimes.enddate, + worktimes.isdefault, + to_char(worktimes.defaultdayhours, 'HH24:MI'::text) AS defaultdayhours, + to_char(worktimes.maxdayhours, 'HH24:MI'::text) AS maxdayhours, + to_char(worktimes.defaultweekhours, 'HH24:MI'::text) AS defaultweekhours, + to_char(worktimes.maxweekhours, 'HH24:MI'::text) AS maxweekhours, + to_char(worktimes.maxinterruptionhours, 'HH24:MI'::text) AS maxinterruptionhours + FROM portanova.worktimes + ORDER BY worktimes.startdate NULLS FIRST, worktimes.enddate NULLS FIRST; + + +ALTER TABLE portanova.vw_worktimeslist OWNER TO potlu_user; + +-- +-- Name: workplandays_id_seq; Type: SEQUENCE; Schema: portanova; Owner: potlu_user +-- + +CREATE SEQUENCE portanova.workplandays_id_seq + AS integer + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE portanova.workplandays_id_seq OWNER TO potlu_user; + +-- +-- Name: workplandays_id_seq; Type: SEQUENCE OWNED BY; Schema: portanova; Owner: potlu_user +-- +ALTER SEQUENCE portanova.workplandays_id_seq OWNED BY portanova.workplandays.id; -ALTER TABLE portanova.vw_workplans OWNER TO potlu_user; -- -- Name: workplans_id_seq; Type: SEQUENCE; Schema: portanova; Owner: potlu_user @@ -2971,6 +2089,28 @@ ALTER TABLE portanova.workplans_id_seq OWNER TO potlu_user; ALTER SEQUENCE portanova.workplans_id_seq OWNED BY portanova.workplans.id; +-- +-- Name: worktimes_id_seq; Type: SEQUENCE; Schema: portanova; Owner: potlu_user +-- + +CREATE SEQUENCE portanova.worktimes_id_seq + AS integer + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE portanova.worktimes_id_seq OWNER TO potlu_user; + +-- +-- Name: worktimes_id_seq; Type: SEQUENCE OWNED BY; Schema: portanova; Owner: potlu_user +-- + +ALTER SEQUENCE portanova.worktimes_id_seq OWNED BY portanova.worktimes.id; + + -- -- Name: worktypes_id_seq; Type: SEQUENCE; Schema: portanova; Owner: potlu_user -- @@ -2993,44 +2133,6 @@ ALTER TABLE portanova.worktypes_id_seq OWNER TO potlu_user; ALTER SEQUENCE portanova.worktypes_id_seq OWNED BY portanova.vacancytypes.id; --- --- Name: zzold_vw_staffworkplanlist; Type: VIEW; Schema: portanova; Owner: potlu_user --- - -CREATE VIEW portanova.zzold_vw_staffworkplanlist AS -SELECT - NULL::double precision AS calweek, - NULL::double precision AS calyear, - NULL::date AS weekstart, - NULL::date AS weekend, - NULL::text AS dates, - NULL::integer AS id_staff, - NULL::text AS dspstaffname, - NULL::integer AS id_staffgroup, - NULL::text AS dspweektotals, - NULL::interval AS contracthours, - NULL::interval AS plannedhours, - NULL::interval AS vacancyhours, - NULL::interval AS recuperationhours, - NULL::interval AS hoursdiff, - NULL::bigint AS mon_id, - NULL::text AS dspmontimes, - NULL::bigint AS tue_id, - NULL::text AS dsptuetimes, - NULL::bigint AS wed_id, - NULL::text AS dspwedtimes, - NULL::bigint AS thu_id, - NULL::text AS dspthutimes, - NULL::bigint AS fri_id, - NULL::text AS dspfritimes, - NULL::bigint AS sat_id, - NULL::text AS dspsattimes, - NULL::bigint AS sun_id, - NULL::text AS dspsuntimes; - - -ALTER TABLE portanova.zzold_vw_staffworkplanlist OWNER TO potlu_user; - -- -- Name: apps; Type: TABLE; Schema: public; Owner: potlu_user -- @@ -6393,13 +5495,6 @@ ALTER TABLE ONLY demo.stations ALTER COLUMN id SET DEFAULT nextval('demo.station ALTER TABLE ONLY demo.timetrackuser ALTER COLUMN id SET DEFAULT nextval('demo.timetrackuser_id_seq'::regclass); --- --- Name: editlog id; Type: DEFAULT; Schema: portanova; Owner: potlu_user --- - -ALTER TABLE ONLY portanova.editlog ALTER COLUMN id SET DEFAULT nextval('portanova.editlog_id_seq'::regclass); - - -- -- Name: reportperiod id; Type: DEFAULT; Schema: portanova; Owner: potlu_user -- @@ -6470,6 +5565,13 @@ ALTER TABLE ONLY portanova.vacancydays ALTER COLUMN id SET DEFAULT nextval('port ALTER TABLE ONLY portanova.vacancytypes ALTER COLUMN id SET DEFAULT nextval('portanova.worktypes_id_seq'::regclass); +-- +-- Name: workplandays id; Type: DEFAULT; Schema: portanova; Owner: potlu_user +-- + +ALTER TABLE ONLY portanova.workplandays ALTER COLUMN id SET DEFAULT nextval('portanova.workplandays_id_seq'::regclass); + + -- -- Name: workplans id; Type: DEFAULT; Schema: portanova; Owner: potlu_user -- @@ -6478,10 +5580,10 @@ ALTER TABLE ONLY portanova.workplans ALTER COLUMN id SET DEFAULT nextval('portan -- --- Name: zzold_staffreportperiodsums id; Type: DEFAULT; Schema: portanova; Owner: potlu_user +-- Name: worktimes id; Type: DEFAULT; Schema: portanova; Owner: potlu_user -- -ALTER TABLE ONLY portanova.zzold_staffreportperiodsums ALTER COLUMN id SET DEFAULT nextval('portanova.staffreportperiodsums_id_seq'::regclass); +ALTER TABLE ONLY portanova.worktimes ALTER COLUMN id SET DEFAULT nextval('portanova.worktimes_id_seq'::regclass); -- @@ -6749,14 +5851,6 @@ COPY demo.timetrackuser (id, id_staff, stamp_in, stamp_out) FROM stdin; \. --- --- Data for Name: editlog; Type: TABLE DATA; Schema: portanova; Owner: potlu_user --- - -COPY portanova.editlog (id, id_user, tblname, tblfields, modified, created) FROM stdin; -\. - - -- -- Data for Name: reportperiod; Type: TABLE DATA; Schema: portanova; Owner: potlu_user -- @@ -6764,6 +5858,8 @@ COPY portanova.editlog (id, id_user, tblname, tblfields, modified, created) FROM COPY portanova.reportperiod (id, periodname, startdate, enddate, id_parentreportperiod) FROM stdin; 27 \N 2019-12-30 2020-02-23 \N 29 \N 2020-02-24 2020-04-19 27 +30 \N 2020-04-20 2020-06-14 29 +31 \N 2020-06-15 2020-08-09 30 \. @@ -6829,58 +5925,59 @@ COPY portanova.staff (id, staffnumber, surname, prename, job, birthdate, matricu -- Data for Name: staffcontract; Type: TABLE DATA; Schema: portanova; Owner: potlu_user -- -COPY portanova.staffcontract (id, id_staff, startdate, id_staffgroup, weekdays, enddate, id_workplan, weekhours) FROM stdin; -69 130 2005-01-08 1 6 \N 6 40:00:00 -90 132 2020-01-01 1 6 2020-01-15 6 40:00:00 -71 133 2013-01-07 1 6 \N 6 40:00:00 -85 121 2020-01-01 2 6 2020-07-31 6 40:00:00 -70 131 1995-07-01 1 6 \N 6 20:00:00 -77 108 2020-01-06 2 6 \N 6 40:00:00 -108 129 2019-07-15 1 6 \N 6 40:00:00 -82 117 2020-05-01 2 6 \N 1 40:00:00 -72 135 2006-10-23 1 6 \N 6 40:00:00 -73 136 1992-03-15 1 6 \N 6 40:00:00 -79 111 2020-01-01 2 6 \N 6 40:00:00 -87 126 2020-01-01 1 6 2019-05-31 6 40:00:00 -88 127 2020-01-01 1 6 \N 6 40:00:00 -89 128 2020-01-01 1 6 \N 6 40:00:00 -56 103 2014-03-01 4 6 \N 1 40:00:00 -57 104 2015-11-15 4 6 \N 1 30:00:00 -60 109 2005-04-19 2 6 \N 1 40:00:00 -61 113 2016-05-19 2 6 \N 1 40:00:00 -91 134 2020-01-01 1 6 \N 6 40:00:00 -62 114 2007-08-14 2 6 \N 1 40:00:00 -63 115 2013-05-01 2 6 \N 1 40:00:00 -64 118 2018-02-12 2 6 \N 1 40:00:00 -75 102 2020-01-01 4 6 \N 1 40:00:00 -78 110 2020-01-01 2 6 \N 1 40:00:00 -80 112 2020-01-01 2 6 2020-05-31 1 40:00:00 -81 116 2020-01-01 2 6 2019-02-28 1 40:00:00 -83 119 2020-01-01 2 6 \N 1 40:00:00 -84 120 2020-01-01 2 6 2019-03-31 1 40:00:00 -93 138 2020-01-01 1 6 2020-06-30 6 40:00:00 -66 124 2016-04-01 2 6 2019-05-31 1 12:30:00 -99 145 2020-01-01 2 6 \N 6 40:00:00 -58 105 2011-10-01 2 6 \N 6 40:00:00 -59 106 2015-07-01 2 6 \N 1 12:30:00 -65 122 2015-10-15 2 6 \N 1 40:00:00 -76 107 2020-01-01 2 6 2019-07-31 1 40:00:00 -86 123 2020-01-01 2 6 2017-03-31 1 40:00:00 -100 146 2020-01-01 2 6 \N 1 40:00:00 -101 147 2020-01-01 2 6 2020-08-31 1 40:00:00 -102 148 2020-01-01 2 6 \N 1 40:00:00 -103 149 2020-01-01 2 6 \N 1 40:00:00 -104 150 2020-01-01 2 6 2019-07-31 1 40:00:00 -67 125 2003-10-01 4 6 \N 1 20:00:00 -107 151 2020-02-01 4 6 \N 6 40:00:00 -105 129 2018-11-15 1 6 2019-06-15 6 40:00:00 -94 139 2020-01-01 1 6 2020-09-30 6 40:00:00 -95 140 2020-01-01 1 6 2020-01-31 6 40:00:00 -74 142 2014-04-15 1 6 \N 6 40:00:00 -97 143 2020-01-01 1 6 \N 6 40:00:00 -98 144 2020-01-01 1 6 2020-03-31 6 40:00:00 -96 141 2020-01-01 1 6 2022-08-31 6 40:00:00 -92 137 2020-01-01 1 6 2019-07-31 6 40:00:00 +COPY portanova.staffcontract (id, id_staff, startdate, id_staffgroup, weekdays, enddate, id_workplan, weekhours, defaultfreedays) FROM stdin; +69 130 2005-01-08 1 6 \N 6 40:00:00 ["7"] +90 132 2020-01-01 1 6 2020-01-15 6 40:00:00 ["7"] +71 133 2013-01-07 1 6 \N 6 40:00:00 ["7"] +85 121 2020-01-01 2 6 2020-07-31 6 40:00:00 ["7"] +77 108 2020-01-06 2 6 \N 6 40:00:00 ["7"] +108 129 2019-07-15 1 6 \N 6 40:00:00 ["7"] +82 117 2020-05-01 2 6 \N 1 40:00:00 ["7"] +60 109 2005-04-19 2 6 \N 1 40:00:00 ["7"] +72 135 2006-10-23 1 6 \N 6 40:00:00 ["7"] +73 136 1992-03-15 1 6 \N 6 40:00:00 ["7"] +87 126 2020-01-01 1 6 2019-05-31 6 40:00:00 ["7"] +88 127 2020-01-01 1 6 \N 6 40:00:00 ["7"] +89 128 2020-01-01 1 6 \N 6 40:00:00 ["7"] +56 103 2014-03-01 4 6 \N 1 40:00:00 ["7"] +61 113 2016-05-19 2 6 \N 1 40:00:00 ["7"] +91 134 2020-01-01 1 6 \N 6 40:00:00 ["7"] +62 114 2007-08-14 2 6 \N 1 40:00:00 ["7"] +63 115 2013-05-01 2 6 \N 1 40:00:00 ["7"] +64 118 2018-02-12 2 6 \N 1 40:00:00 ["7"] +75 102 2020-01-01 4 6 \N 1 40:00:00 ["7"] +78 110 2020-01-01 2 6 \N 1 40:00:00 ["7"] +80 112 2020-01-01 2 6 2020-05-31 1 40:00:00 ["7"] +83 119 2020-01-01 2 6 \N 1 40:00:00 ["7"] +84 120 2020-01-01 2 6 2019-03-31 1 40:00:00 ["7"] +70 131 1995-07-01 1 5 \N 6 20:00:00 ["6","7"] +57 104 2015-11-15 4 5 \N 1 30:00:00 ["6","7"] +81 116 2020-01-01 2 6 2020-02-28 1 40:00:00 ["7"] +173 111 2020-04-01 2 6 \N 6 40:00:00 ["7"] +79 111 2020-01-01 2 6 2020-03-31 6 40:00:00 ["7"] +93 138 2020-01-01 1 6 2020-06-30 6 40:00:00 ["7"] +99 145 2020-01-01 2 6 \N 6 40:00:00 ["7"] +58 105 2011-10-01 2 6 \N 6 40:00:00 ["7"] +65 122 2015-10-15 2 6 \N 1 40:00:00 ["7"] +76 107 2020-01-01 2 6 2019-07-31 1 40:00:00 ["7"] +86 123 2020-01-01 2 6 2017-03-31 1 40:00:00 ["7"] +100 146 2020-01-01 2 6 \N 1 40:00:00 ["7"] +101 147 2020-01-01 2 6 2020-08-31 1 40:00:00 ["7"] +102 148 2020-01-01 2 6 \N 1 40:00:00 ["7"] +103 149 2020-01-01 2 6 \N 1 40:00:00 ["7"] +104 150 2020-01-01 2 6 2019-07-31 1 40:00:00 ["7"] +107 151 2020-02-01 4 6 \N 6 40:00:00 ["7"] +105 129 2018-11-15 1 6 2019-06-15 6 40:00:00 ["7"] +94 139 2020-01-01 1 6 2020-09-30 6 40:00:00 ["7"] +95 140 2020-01-01 1 6 2020-01-31 6 40:00:00 ["7"] +74 142 2014-04-15 1 6 \N 6 40:00:00 ["7"] +97 143 2020-01-01 1 6 \N 6 40:00:00 ["7"] +98 144 2020-01-01 1 6 2020-03-31 6 40:00:00 ["7"] +96 141 2020-01-01 1 6 2022-08-31 6 40:00:00 ["7"] +92 137 2020-01-01 1 6 2019-07-31 6 40:00:00 ["7"] +66 124 2016-04-01 2 3 2019-05-31 1 12:30:00 ["5","6","7"] +59 106 2015-07-01 2 3 \N 1 12:30:00 ["5","6","7"] +67 125 2003-10-01 4 6 \N 1 20:00:00 ["7"] \. @@ -6899,87 +5996,167 @@ COPY portanova.staffgroups (id, groupname, groupcolor, editoruser_ids, isdefault -- Data for Name: staffreportperiod; Type: TABLE DATA; Schema: portanova; Owner: potlu_user -- -COPY portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) FROM stdin; -1081 29 149 320:00:00 320:00:00 320:00:00 00:00:00 00:00:00 00:00:00 \N -992 27 146 304:00:00 313:20:00 304:00:00 00:00:00 00:00:00 -09:20:00 \N -1082 29 103 320:00:00 320:00:00 320:00:00 00:00:00 00:00:00 00:00:00 \N -1083 29 121 320:00:00 320:00:00 320:00:00 00:00:00 00:00:00 00:00:00 \N -1084 29 125 320:00:00 160:00:00 320:00:00 00:00:00 00:00:00 160:00:00 \N -1085 29 119 320:00:00 320:00:00 320:00:00 00:00:00 00:00:00 00:00:00 \N -1086 29 113 320:00:00 320:00:00 320:00:00 00:00:00 00:00:00 00:00:00 \N -1087 29 147 320:00:00 320:00:00 320:00:00 00:00:00 00:00:00 00:00:00 \N -1088 29 131 320:00:00 160:00:00 320:00:00 00:00:00 00:00:00 160:00:00 \N -1089 29 104 320:00:00 240:00:00 320:00:00 00:00:00 00:00:00 80:00:00 \N -1090 29 151 320:00:00 320:00:00 320:00:00 00:00:00 00:00:00 00:00:00 \N -1091 29 138 320:00:00 320:00:00 320:00:00 00:00:00 00:00:00 00:00:00 \N -1092 29 105 320:00:00 320:00:00 320:00:00 00:00:00 00:00:00 00:00:00 \N -1093 29 134 320:00:00 320:00:00 320:00:00 00:00:00 00:00:00 00:00:00 \N -993 27 132 88:00:00 93:20:00 88:00:00 00:00:00 00:00:00 -05:20:00 \N -994 27 115 320:00:00 320:00:00 320:00:00 00:00:00 00:00:00 00:00:00 \N -995 27 114 320:00:00 320:00:00 320:00:00 00:00:00 00:00:00 00:00:00 \N -996 27 112 304:00:00 313:20:00 304:00:00 00:00:00 00:00:00 -09:20:00 \N -997 27 108 280:00:00 280:00:00 280:00:00 00:00:00 00:00:00 00:00:00 \N -998 27 135 320:00:00 320:00:00 320:00:00 00:00:00 00:00:00 00:00:00 \N -999 27 127 304:00:00 313:20:00 304:00:00 00:00:00 00:00:00 -09:20:00 \N -1000 27 149 304:00:00 313:20:00 304:00:00 00:00:00 00:00:00 -09:20:00 \N -1001 27 103 320:00:00 320:00:00 320:00:00 00:00:00 00:00:00 00:00:00 \N -1002 27 121 304:00:00 313:20:00 304:00:00 00:00:00 00:00:00 -09:20:00 \N -1003 27 125 320:00:00 160:00:00 320:00:00 00:00:00 00:00:00 160:00:00 \N -1004 27 119 304:00:00 313:20:00 304:00:00 00:00:00 00:00:00 -09:20:00 \N -1005 27 113 320:00:00 320:00:00 320:00:00 00:00:00 00:00:00 00:00:00 \N -1006 27 147 304:00:00 313:20:00 304:00:00 00:00:00 00:00:00 -09:20:00 \N -1007 27 131 320:00:00 160:00:00 320:00:00 00:00:00 00:00:00 160:00:00 \N -1008 27 104 320:00:00 240:00:00 320:00:00 00:00:00 00:00:00 80:00:00 \N -1009 27 151 120:00:00 133:20:00 120:00:00 00:00:00 00:00:00 -13:20:00 \N -1010 27 138 304:00:00 313:20:00 304:00:00 00:00:00 00:00:00 -09:20:00 \N -1011 27 105 320:00:00 320:00:00 320:00:00 00:00:00 00:00:00 00:00:00 \N -1012 27 134 304:00:00 313:20:00 304:00:00 00:00:00 00:00:00 -09:20:00 \N -1013 27 144 304:00:00 313:20:00 304:00:00 00:00:00 00:00:00 -09:20:00 \N -1014 27 102 304:00:00 313:20:00 304:00:00 00:00:00 00:00:00 -09:20:00 \N -1015 27 109 320:00:00 320:00:00 320:00:00 00:00:00 00:00:00 00:00:00 \N -1016 27 118 320:00:00 320:00:00 320:00:00 00:00:00 00:00:00 00:00:00 \N -1017 27 133 320:00:00 320:00:00 320:00:00 00:00:00 00:00:00 00:00:00 \N -1018 27 111 304:00:00 313:20:00 304:00:00 00:00:00 00:00:00 -09:20:00 \N -1019 27 128 304:00:00 313:20:00 304:00:00 00:00:00 00:00:00 -09:20:00 \N -1020 27 142 320:00:00 320:00:00 320:00:00 00:00:00 00:00:00 00:00:00 \N -1021 27 136 320:00:00 320:00:00 320:00:00 00:00:00 00:00:00 00:00:00 \N -1022 27 140 184:00:00 186:40:00 184:00:00 00:00:00 00:00:00 -02:40:00 \N -1023 27 139 304:00:00 313:20:00 304:00:00 00:00:00 00:00:00 -09:20:00 \N -1024 27 141 304:00:00 313:20:00 304:00:00 00:00:00 00:00:00 -09:20:00 \N -1025 27 122 320:00:00 320:00:00 320:00:00 00:00:00 00:00:00 00:00:00 \N -1026 27 106 320:00:00 100:00:00 320:00:00 00:00:00 00:00:00 220:00:00 \N -1027 27 110 304:00:00 313:20:00 304:00:00 00:00:00 00:00:00 -09:20:00 \N -1028 27 145 304:00:00 313:20:00 304:00:00 00:00:00 00:00:00 -09:20:00 \N -1029 27 148 304:00:00 313:20:00 304:00:00 00:00:00 00:00:00 -09:20:00 \N -1030 27 130 320:00:00 320:00:00 320:00:00 00:00:00 00:00:00 00:00:00 \N -956 27 129 320:00:00 320:00:00 320:00:00 00:00:00 00:00:00 00:00:00 \N -1032 27 143 304:00:00 313:20:00 304:00:00 00:00:00 00:00:00 -09:20:00 \N -1074 29 146 320:00:00 320:00:00 320:00:00 00:00:00 00:00:00 00:00:00 \N -1075 29 115 320:00:00 320:00:00 320:00:00 00:00:00 00:00:00 00:00:00 \N -1076 29 114 320:00:00 320:00:00 320:00:00 00:00:00 00:00:00 00:00:00 \N -1077 29 112 320:00:00 320:00:00 320:00:00 00:00:00 00:00:00 00:00:00 \N -1078 29 108 320:00:00 320:00:00 320:00:00 00:00:00 00:00:00 00:00:00 \N -1079 29 135 320:00:00 320:00:00 320:00:00 00:00:00 00:00:00 00:00:00 \N -1080 29 127 320:00:00 320:00:00 320:00:00 00:00:00 00:00:00 00:00:00 \N -1094 29 144 216:00:00 213:20:00 216:00:00 00:00:00 00:00:00 02:40:00 \N -1095 29 102 320:00:00 320:00:00 320:00:00 00:00:00 00:00:00 00:00:00 \N -1096 29 109 320:00:00 320:00:00 320:00:00 00:00:00 00:00:00 00:00:00 \N -1097 29 118 320:00:00 320:00:00 320:00:00 00:00:00 00:00:00 00:00:00 \N -1098 29 133 320:00:00 320:00:00 320:00:00 00:00:00 00:00:00 00:00:00 \N -1099 29 111 320:00:00 320:00:00 320:00:00 00:00:00 00:00:00 00:00:00 \N -1100 29 128 320:00:00 320:00:00 320:00:00 00:00:00 00:00:00 00:00:00 \N -1101 29 142 320:00:00 320:00:00 320:00:00 00:00:00 00:00:00 00:00:00 \N -1102 29 136 320:00:00 320:00:00 320:00:00 00:00:00 00:00:00 00:00:00 \N -1103 29 139 320:00:00 320:00:00 320:00:00 00:00:00 00:00:00 00:00:00 \N -1104 29 141 320:00:00 320:00:00 320:00:00 00:00:00 00:00:00 00:00:00 \N -1105 29 122 320:00:00 320:00:00 320:00:00 00:00:00 00:00:00 00:00:00 \N -1106 29 106 320:00:00 100:00:00 320:00:00 00:00:00 00:00:00 220:00:00 \N -1107 29 110 320:00:00 320:00:00 320:00:00 00:00:00 00:00:00 00:00:00 \N -1108 29 145 320:00:00 320:00:00 320:00:00 00:00:00 00:00:00 00:00:00 \N -1109 29 148 320:00:00 320:00:00 320:00:00 00:00:00 00:00:00 00:00:00 \N -1110 29 130 320:00:00 320:00:00 320:00:00 00:00:00 00:00:00 00:00:00 \N -1111 29 129 320:00:00 320:00:00 320:00:00 00:00:00 00:00:00 00:00:00 \N -1112 29 143 320:00:00 320:00:00 320:00:00 00:00:00 00:00:00 00:00:00 \N +COPY portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, payedhours, diffhourspayed) FROM stdin; +1730 27 116 304:00:00 306:40:00 304:00:00 00:00:00 00:00:00 -02:40:00 \N \N +992 27 146 304:00:00 306:40:00 304:00:00 00:00:00 00:00:00 -02:40:00 \N \N +993 27 132 88:00:00 106:40:00 88:00:00 00:00:00 00:00:00 -18:40:00 \N \N +994 27 115 320:00:00 320:00:00 320:00:00 00:00:00 00:00:00 00:00:00 \N \N +995 27 114 320:00:00 320:00:00 320:00:00 00:00:00 00:00:00 00:00:00 \N \N +996 27 112 304:00:00 306:40:00 304:00:00 00:00:00 00:00:00 -02:40:00 \N \N +1086 29 113 320:00:00 320:00:00 320:00:00 00:00:00 00:00:00 00:00:00 \N \N +1087 29 147 320:00:00 320:00:00 320:00:00 00:00:00 00:00:00 00:00:00 \N \N +1088 29 131 320:00:00 160:00:00 320:00:00 00:00:00 00:00:00 160:00:00 \N \N +1089 29 104 320:00:00 240:00:00 320:00:00 00:00:00 00:00:00 80:00:00 \N \N +1090 29 151 320:00:00 320:00:00 320:00:00 00:00:00 00:00:00 00:00:00 \N \N +1091 29 138 320:00:00 320:00:00 320:00:00 00:00:00 00:00:00 00:00:00 \N \N +1092 29 105 320:00:00 320:00:00 320:00:00 00:00:00 00:00:00 00:00:00 \N \N +1093 29 134 320:00:00 320:00:00 320:00:00 00:00:00 00:00:00 00:00:00 \N \N +1094 29 144 216:00:00 240:00:00 216:00:00 00:00:00 00:00:00 -24:00:00 \N \N +1095 29 102 320:00:00 320:00:00 320:00:00 00:00:00 00:00:00 00:00:00 \N \N +1096 29 109 320:00:00 320:00:00 320:00:00 00:00:00 00:00:00 00:00:00 \N \N +1097 29 118 320:00:00 320:00:00 320:00:00 00:00:00 00:00:00 00:00:00 \N \N +1098 29 133 320:00:00 320:00:00 320:00:00 00:00:00 00:00:00 00:00:00 \N \N +1099 29 111 320:00:00 320:00:00 320:00:00 00:00:00 00:00:00 00:00:00 \N \N +1100 29 128 320:00:00 320:00:00 320:00:00 00:00:00 00:00:00 00:00:00 \N \N +1101 29 142 320:00:00 320:00:00 320:00:00 00:00:00 00:00:00 00:00:00 \N \N +1102 29 136 320:00:00 320:00:00 320:00:00 00:00:00 00:00:00 00:00:00 \N \N +1103 29 139 320:00:00 320:00:00 320:00:00 00:00:00 00:00:00 00:00:00 \N \N +1104 29 141 320:00:00 320:00:00 320:00:00 00:00:00 00:00:00 00:00:00 \N \N +1105 29 122 320:00:00 320:00:00 320:00:00 00:00:00 00:00:00 00:00:00 \N \N +1106 29 106 320:00:00 100:00:00 320:00:00 00:00:00 00:00:00 220:00:00 \N \N +1107 29 110 320:00:00 320:00:00 320:00:00 00:00:00 00:00:00 00:00:00 \N \N +1108 29 145 320:00:00 320:00:00 320:00:00 00:00:00 00:00:00 00:00:00 \N \N +1109 29 148 320:00:00 320:00:00 320:00:00 00:00:00 00:00:00 00:00:00 \N \N +1110 29 130 320:00:00 320:00:00 320:00:00 00:00:00 00:00:00 00:00:00 \N \N +1111 29 129 320:00:00 320:00:00 320:00:00 00:00:00 00:00:00 00:00:00 \N \N +1112 29 143 320:00:00 320:00:00 320:00:00 00:00:00 00:00:00 00:00:00 \N \N +1152 30 146 320:00:00 320:00:00 320:00:00 00:00:00 00:00:00 00:00:00 \N \N +1153 30 115 320:00:00 320:00:00 320:00:00 00:00:00 00:00:00 00:00:00 \N \N +1154 30 114 320:00:00 320:00:00 320:00:00 00:00:00 00:00:00 00:00:00 \N \N +1166 30 147 320:00:00 320:00:00 320:00:00 00:00:00 00:00:00 00:00:00 \N \N +1178 30 128 320:00:00 320:00:00 320:00:00 00:00:00 00:00:00 00:00:00 \N \N +1179 30 142 320:00:00 320:00:00 320:00:00 00:00:00 00:00:00 00:00:00 \N \N +1180 30 136 320:00:00 320:00:00 320:00:00 00:00:00 00:00:00 00:00:00 \N \N +1181 30 139 320:00:00 320:00:00 320:00:00 00:00:00 00:00:00 00:00:00 \N \N +1182 30 141 320:00:00 320:00:00 320:00:00 00:00:00 00:00:00 00:00:00 \N \N +1183 30 122 320:00:00 320:00:00 320:00:00 00:00:00 00:00:00 00:00:00 \N \N +1184 30 106 320:00:00 100:00:00 320:00:00 00:00:00 00:00:00 220:00:00 \N \N +1185 30 110 320:00:00 320:00:00 320:00:00 00:00:00 00:00:00 00:00:00 \N \N +1186 30 145 320:00:00 320:00:00 320:00:00 00:00:00 00:00:00 00:00:00 \N \N +1187 30 148 320:00:00 320:00:00 320:00:00 00:00:00 00:00:00 00:00:00 \N \N +1545 \N \N \N \N \N \N \N \N 01:00:00 \N +997 27 108 280:00:00 280:00:00 280:00:00 00:00:00 00:00:00 00:00:00 \N \N +998 27 135 320:00:00 320:00:00 320:00:00 00:00:00 00:00:00 00:00:00 \N \N +1006 27 147 304:00:00 306:40:00 304:00:00 00:00:00 00:00:00 -02:40:00 \N \N +1007 27 131 320:00:00 160:00:00 320:00:00 00:00:00 00:00:00 160:00:00 \N \N +1008 27 104 320:00:00 240:00:00 320:00:00 00:00:00 00:00:00 80:00:00 \N \N +1075 29 115 320:00:00 320:00:00 320:00:00 00:00:00 00:00:00 00:00:00 \N \N +1076 29 114 320:00:00 320:00:00 320:00:00 00:00:00 00:00:00 00:00:00 \N \N +1077 29 112 320:00:00 320:00:00 320:00:00 00:00:00 00:00:00 00:00:00 \N \N +1078 29 108 320:00:00 320:00:00 320:00:00 00:00:00 00:00:00 00:00:00 \N \N +1079 29 135 320:00:00 320:00:00 320:00:00 00:00:00 00:00:00 00:00:00 \N \N +1080 29 127 320:00:00 320:00:00 320:00:00 00:00:00 00:00:00 00:00:00 \N \N +1081 29 149 320:00:00 320:00:00 320:00:00 00:00:00 00:00:00 00:00:00 \N \N +1082 29 103 320:00:00 320:00:00 320:00:00 00:00:00 00:00:00 00:00:00 \N \N +1083 29 121 320:00:00 320:00:00 320:00:00 00:00:00 00:00:00 00:00:00 \N \N +1084 29 125 320:00:00 160:00:00 320:00:00 00:00:00 00:00:00 160:00:00 \N \N +1085 29 119 320:00:00 320:00:00 320:00:00 00:00:00 00:00:00 00:00:00 \N \N +1198 31 103 320:00:00 320:00:00 320:00:00 00:00:00 00:00:00 00:00:00 \N \N +1199 31 121 280:00:00 280:00:00 280:00:00 00:00:00 00:00:00 00:00:00 \N \N +1200 31 117 320:00:00 320:00:00 320:00:00 00:00:00 00:00:00 00:00:00 \N \N +1201 31 125 320:00:00 160:00:00 320:00:00 00:00:00 00:00:00 160:00:00 \N \N +1202 31 119 320:00:00 320:00:00 320:00:00 00:00:00 00:00:00 00:00:00 \N \N +1203 31 113 320:00:00 320:00:00 320:00:00 00:00:00 00:00:00 00:00:00 \N \N +1204 31 147 320:00:00 320:00:00 320:00:00 00:00:00 00:00:00 00:00:00 \N \N +1205 31 131 320:00:00 160:00:00 320:00:00 00:00:00 00:00:00 160:00:00 \N \N +1206 31 104 320:00:00 240:00:00 320:00:00 00:00:00 00:00:00 80:00:00 \N \N +1207 31 151 320:00:00 320:00:00 320:00:00 00:00:00 00:00:00 00:00:00 \N \N +1208 31 138 96:00:00 120:00:00 96:00:00 00:00:00 00:00:00 -24:00:00 \N \N +1209 31 105 320:00:00 320:00:00 320:00:00 00:00:00 00:00:00 00:00:00 \N \N +1009 27 151 120:00:00 160:00:00 120:00:00 00:00:00 00:00:00 -40:00:00 \N \N +1010 27 138 304:00:00 306:40:00 304:00:00 00:00:00 00:00:00 -02:40:00 \N \N +1014 27 102 304:00:00 306:40:00 304:00:00 00:00:00 00:00:00 -02:40:00 \N \N +1015 27 109 320:00:00 320:00:00 320:00:00 00:00:00 00:00:00 00:00:00 \N \N +1016 27 118 320:00:00 320:00:00 320:00:00 00:00:00 00:00:00 00:00:00 \N \N +1017 27 133 320:00:00 320:00:00 320:00:00 00:00:00 00:00:00 00:00:00 \N \N +1018 27 111 306:40:00 306:40:00 306:40:00 00:00:00 00:00:00 00:00:00 \N \N +1019 27 128 304:00:00 306:40:00 304:00:00 00:00:00 00:00:00 -02:40:00 \N \N +1020 27 142 320:00:00 320:00:00 320:00:00 00:00:00 00:00:00 00:00:00 \N \N +1021 27 136 320:00:00 320:00:00 320:00:00 00:00:00 00:00:00 00:00:00 \N \N +1022 27 140 184:00:00 186:40:00 184:00:00 00:00:00 00:00:00 -02:40:00 \N \N +1023 27 139 304:00:00 306:40:00 304:00:00 00:00:00 00:00:00 -02:40:00 \N \N +1024 27 141 304:00:00 306:40:00 304:00:00 00:00:00 00:00:00 -02:40:00 \N \N +1025 27 122 320:00:00 320:00:00 320:00:00 00:00:00 00:00:00 00:00:00 \N \N +1032 27 143 304:00:00 306:40:00 304:00:00 00:00:00 00:00:00 -02:40:00 \N \N +1772 29 116 40:00:00 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 \N \N +1074 29 146 320:00:00 320:00:00 320:00:00 00:00:00 00:00:00 00:00:00 \N \N +999 27 127 304:00:00 306:40:00 304:00:00 00:00:00 00:00:00 -02:40:00 \N \N +1000 27 149 304:00:00 306:40:00 304:00:00 00:00:00 00:00:00 -02:40:00 \N \N +1001 27 103 316:00:00 320:00:00 320:00:00 04:00:00 00:00:00 00:00:00 \N \N +1002 27 121 304:00:00 306:40:00 304:00:00 00:00:00 00:00:00 -02:40:00 \N \N +1003 27 125 160:00:00 160:00:00 160:00:00 00:00:00 00:00:00 00:00:00 \N \N +1004 27 119 304:00:00 306:40:00 304:00:00 00:00:00 00:00:00 -02:40:00 \N \N +1005 27 113 320:00:00 320:00:00 320:00:00 00:00:00 00:00:00 00:00:00 \N \N +1011 27 105 320:00:00 320:00:00 320:00:00 00:00:00 00:00:00 00:00:00 \N \N +1012 27 134 304:00:00 306:40:00 304:00:00 00:00:00 00:00:00 -02:40:00 \N \N +1013 27 144 304:00:00 306:40:00 304:00:00 00:00:00 00:00:00 -02:40:00 \N \N +1026 27 106 320:00:00 100:00:00 320:00:00 00:00:00 00:00:00 220:00:00 \N \N +1027 27 110 304:00:00 306:40:00 304:00:00 00:00:00 00:00:00 -02:40:00 \N \N +1028 27 145 304:00:00 306:40:00 304:00:00 00:00:00 00:00:00 -02:40:00 \N \N +1029 27 148 304:00:00 306:40:00 304:00:00 00:00:00 00:00:00 -02:40:00 \N \N +1030 27 130 320:00:00 320:00:00 320:00:00 00:00:00 00:00:00 00:00:00 \N \N +956 27 129 320:00:00 320:00:00 320:00:00 00:00:00 00:00:00 00:00:00 \N \N +1155 30 112 240:00:00 240:00:00 240:00:00 00:00:00 00:00:00 00:00:00 \N \N +1156 30 108 320:00:00 320:00:00 320:00:00 00:00:00 00:00:00 00:00:00 \N \N +1157 30 135 320:00:00 320:00:00 320:00:00 00:00:00 00:00:00 00:00:00 \N \N +1158 30 127 320:00:00 320:00:00 320:00:00 00:00:00 00:00:00 00:00:00 \N \N +1159 30 149 320:00:00 320:00:00 320:00:00 00:00:00 00:00:00 00:00:00 \N \N +1160 30 103 320:00:00 320:00:00 320:00:00 00:00:00 00:00:00 00:00:00 \N \N +1161 30 121 320:00:00 320:00:00 320:00:00 00:00:00 00:00:00 00:00:00 \N \N +1162 30 117 248:00:00 280:00:00 248:00:00 00:00:00 00:00:00 -32:00:00 \N \N +1163 30 125 320:00:00 160:00:00 320:00:00 00:00:00 00:00:00 160:00:00 \N \N +1164 30 119 320:00:00 320:00:00 320:00:00 00:00:00 00:00:00 00:00:00 \N \N +1165 30 113 320:00:00 320:00:00 320:00:00 00:00:00 00:00:00 00:00:00 \N \N +1188 30 130 320:00:00 320:00:00 320:00:00 00:00:00 00:00:00 00:00:00 \N \N +1189 30 129 320:00:00 320:00:00 320:00:00 00:00:00 00:00:00 00:00:00 \N \N +1190 30 143 320:00:00 320:00:00 320:00:00 00:00:00 00:00:00 00:00:00 \N \N +1191 31 146 320:00:00 320:00:00 320:00:00 00:00:00 00:00:00 00:00:00 \N \N +1192 31 115 320:00:00 320:00:00 320:00:00 00:00:00 00:00:00 00:00:00 \N \N +1193 31 114 320:00:00 320:00:00 320:00:00 00:00:00 00:00:00 00:00:00 \N \N +1194 31 108 320:00:00 320:00:00 320:00:00 00:00:00 00:00:00 00:00:00 \N \N +1195 31 135 320:00:00 320:00:00 320:00:00 00:00:00 00:00:00 00:00:00 \N \N +1196 31 127 320:00:00 320:00:00 320:00:00 00:00:00 00:00:00 00:00:00 \N \N +1197 31 149 320:00:00 320:00:00 320:00:00 00:00:00 00:00:00 00:00:00 \N \N +1167 30 131 320:00:00 160:00:00 320:00:00 00:00:00 00:00:00 160:00:00 \N \N +1168 30 104 320:00:00 240:00:00 320:00:00 00:00:00 00:00:00 80:00:00 \N \N +1169 30 151 320:00:00 320:00:00 320:00:00 00:00:00 00:00:00 00:00:00 \N \N +1170 30 138 320:00:00 320:00:00 320:00:00 00:00:00 00:00:00 00:00:00 \N \N +1171 30 105 320:00:00 320:00:00 320:00:00 00:00:00 00:00:00 00:00:00 \N \N +1172 30 134 320:00:00 320:00:00 320:00:00 00:00:00 00:00:00 00:00:00 \N \N +1173 30 102 320:00:00 320:00:00 320:00:00 00:00:00 00:00:00 00:00:00 \N \N +1174 30 109 320:00:00 320:00:00 320:00:00 00:00:00 00:00:00 00:00:00 \N \N +1175 30 118 320:00:00 320:00:00 320:00:00 00:00:00 00:00:00 00:00:00 \N \N +1176 30 133 320:00:00 320:00:00 320:00:00 00:00:00 00:00:00 00:00:00 \N \N +1177 30 111 320:00:00 320:00:00 320:00:00 00:00:00 00:00:00 00:00:00 \N \N +1210 31 134 320:00:00 320:00:00 320:00:00 00:00:00 00:00:00 00:00:00 \N \N +1211 31 102 320:00:00 320:00:00 320:00:00 00:00:00 00:00:00 00:00:00 \N \N +1212 31 109 320:00:00 320:00:00 320:00:00 00:00:00 00:00:00 00:00:00 \N \N +1213 31 118 320:00:00 320:00:00 320:00:00 00:00:00 00:00:00 00:00:00 \N \N +1214 31 133 320:00:00 320:00:00 320:00:00 00:00:00 00:00:00 00:00:00 \N \N +1215 31 111 320:00:00 320:00:00 320:00:00 00:00:00 00:00:00 00:00:00 \N \N +1216 31 128 320:00:00 320:00:00 320:00:00 00:00:00 00:00:00 00:00:00 \N \N +1217 31 142 320:00:00 320:00:00 320:00:00 00:00:00 00:00:00 00:00:00 \N \N +1218 31 136 320:00:00 320:00:00 320:00:00 00:00:00 00:00:00 00:00:00 \N \N +1219 31 139 320:00:00 320:00:00 320:00:00 00:00:00 00:00:00 00:00:00 \N \N +1220 31 141 320:00:00 320:00:00 320:00:00 00:00:00 00:00:00 00:00:00 \N \N +1221 31 122 320:00:00 320:00:00 320:00:00 00:00:00 00:00:00 00:00:00 \N \N +1222 31 106 320:00:00 100:00:00 320:00:00 00:00:00 00:00:00 220:00:00 \N \N +1223 31 110 320:00:00 320:00:00 320:00:00 00:00:00 00:00:00 00:00:00 \N \N +1224 31 145 320:00:00 320:00:00 320:00:00 00:00:00 00:00:00 00:00:00 \N \N +1225 31 148 320:00:00 320:00:00 320:00:00 00:00:00 00:00:00 00:00:00 \N \N +1226 31 130 320:00:00 320:00:00 320:00:00 00:00:00 00:00:00 00:00:00 \N \N +1227 31 129 320:00:00 320:00:00 320:00:00 00:00:00 00:00:00 00:00:00 \N \N +1228 31 143 320:00:00 320:00:00 320:00:00 00:00:00 00:00:00 00:00:00 \N \N \. @@ -6987,4324 +6164,8621 @@ COPY portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, cont -- Data for Name: staffreportperioddays; Type: TABLE DATA; Schema: portanova; Owner: potlu_user -- -COPY portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) FROM stdin; -988797 146 2020-01-22 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -988798 146 2020-01-23 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -988799 146 2020-01-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -988800 146 2020-01-25 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -988801 146 2020-01-26 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -988802 146 2020-01-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -988803 146 2020-01-28 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -988804 146 2020-01-29 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -988805 146 2020-01-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -993102 115 2020-01-23 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -993103 115 2020-01-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -993104 115 2020-01-25 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -993105 115 2020-01-26 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -993106 115 2020-01-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -993107 115 2020-01-28 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -993131 115 2020-02-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -993132 115 2020-02-22 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -993133 115 2020-02-23 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -995247 114 2020-01-16 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -995248 114 2020-01-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -995249 114 2020-01-18 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -995250 114 2020-01-19 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -995251 114 2020-01-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -995252 114 2020-01-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -995253 114 2020-01-22 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -995254 114 2020-01-23 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -995255 114 2020-01-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -995256 114 2020-01-25 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -995257 114 2020-01-26 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -995258 114 2020-01-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -995259 114 2020-01-28 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -995260 114 2020-01-29 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -995261 114 2020-01-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -995262 114 2020-01-31 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -995263 114 2020-02-01 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -995264 114 2020-02-02 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -995265 114 2020-02-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -995266 114 2020-02-04 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1079166 146 2020-03-01 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1079167 146 2020-03-02 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079168 146 2020-03-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079169 146 2020-03-04 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -995267 114 2020-02-05 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -995268 114 2020-02-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -995269 114 2020-02-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -995270 114 2020-02-08 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -995271 114 2020-02-09 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -995272 114 2020-02-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -995273 114 2020-02-11 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -995274 114 2020-02-12 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -995275 114 2020-02-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -995276 114 2020-02-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -997427 112 2020-02-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -997428 112 2020-02-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -997429 112 2020-02-15 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -997430 112 2020-02-16 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -997431 112 2020-02-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -997432 112 2020-02-18 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -997433 112 2020-02-19 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -997434 112 2020-02-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -997435 112 2020-02-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -997436 112 2020-02-22 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -997437 112 2020-02-23 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -999560 108 2020-01-25 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -999561 108 2020-01-26 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -999562 108 2020-01-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -999563 108 2020-01-28 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -999564 108 2020-01-29 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -999565 108 2020-01-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -999566 108 2020-01-31 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -999567 108 2020-02-01 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -999568 108 2020-02-02 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -999569 108 2020-02-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -999570 108 2020-02-04 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -999571 108 2020-02-05 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -999572 108 2020-02-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -999573 108 2020-02-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1079170 146 2020-03-05 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079171 146 2020-03-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079172 146 2020-03-07 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1079173 146 2020-03-08 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -999574 108 2020-02-08 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -999575 108 2020-02-09 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -999581 108 2020-02-15 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1001724 135 2020-02-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1001725 135 2020-02-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1001726 135 2020-02-08 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1001727 135 2020-02-09 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1001728 135 2020-02-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1001729 135 2020-02-11 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1001730 135 2020-02-12 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1001731 135 2020-02-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1001732 135 2020-02-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1001733 135 2020-02-15 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1001734 135 2020-02-16 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1001735 135 2020-02-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1001736 135 2020-02-18 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1001737 135 2020-02-19 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1001738 135 2020-02-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1001739 135 2020-02-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1001740 135 2020-02-22 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1001741 135 2020-02-23 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1003860 127 2020-01-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1003861 127 2020-01-22 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1003862 127 2020-01-23 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1003863 127 2020-01-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1003864 127 2020-01-25 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1003865 127 2020-01-26 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1003866 127 2020-01-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1003867 127 2020-01-28 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1003868 127 2020-01-29 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1003869 127 2020-01-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1003870 127 2020-01-31 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1003871 127 2020-02-01 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1003872 127 2020-02-02 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1003873 127 2020-02-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1006019 149 2020-01-28 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1006020 149 2020-01-29 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1079174 146 2020-03-09 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079175 146 2020-03-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079176 146 2020-03-11 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079177 146 2020-03-12 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1006021 149 2020-01-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1006022 149 2020-01-31 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1006023 149 2020-02-01 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1006024 149 2020-02-02 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1006025 149 2020-02-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1006026 149 2020-02-04 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1006027 149 2020-02-05 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1006028 149 2020-02-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1006029 149 2020-02-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1006030 149 2020-02-08 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1006031 149 2020-02-09 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1006032 149 2020-02-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1006033 149 2020-02-11 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1006034 149 2020-02-12 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1006035 149 2020-02-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1006036 149 2020-02-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1006037 149 2020-02-15 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1006038 149 2020-02-16 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1006039 149 2020-02-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1006040 149 2020-02-18 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1006041 149 2020-02-19 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1006042 149 2020-02-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1006043 149 2020-02-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1006044 149 2020-02-22 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1006045 149 2020-02-23 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1008165 103 2020-01-22 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1008166 103 2020-01-23 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1008167 103 2020-01-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1008168 103 2020-01-25 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1008169 103 2020-01-26 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1008170 103 2020-01-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1008171 103 2020-01-28 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1008172 103 2020-01-29 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1008173 103 2020-01-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1008174 103 2020-01-31 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1010312 121 2020-01-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1079178 146 2020-03-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079179 146 2020-03-14 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1079180 146 2020-03-15 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1079181 146 2020-03-16 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079182 146 2020-03-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1010313 121 2020-01-18 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1010314 121 2020-01-19 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1010315 121 2020-01-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1010316 121 2020-01-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1010317 121 2020-01-22 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1010318 121 2020-01-23 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1010319 121 2020-01-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1010320 121 2020-01-25 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1010321 121 2020-01-26 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1010322 121 2020-01-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1010323 121 2020-01-28 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1010324 121 2020-01-29 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1010325 121 2020-01-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1010326 121 2020-01-31 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1010327 121 2020-02-01 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1010328 121 2020-02-02 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1010329 121 2020-02-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1010330 121 2020-02-04 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1010331 121 2020-02-05 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1010332 121 2020-02-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1010333 121 2020-02-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1010334 121 2020-02-08 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1010335 121 2020-02-09 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1010336 121 2020-02-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1010337 121 2020-02-11 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1010338 121 2020-02-12 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1010339 121 2020-02-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1010340 121 2020-02-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1010341 121 2020-02-15 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1010342 121 2020-02-16 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1010343 121 2020-02-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1010344 121 2020-02-18 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1010345 121 2020-02-19 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1010346 121 2020-02-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1010347 121 2020-02-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1079183 146 2020-03-18 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079184 146 2020-03-19 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079185 146 2020-03-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079186 146 2020-03-21 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1079187 146 2020-03-22 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1010348 121 2020-02-22 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1010349 121 2020-02-23 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1012469 125 2020-01-22 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1012470 125 2020-01-23 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1012471 125 2020-01-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1012472 125 2020-01-25 \N \N \N \N \N 00:00:00 03:20:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1012473 125 2020-01-26 \N \N \N \N \N 00:00:00 03:20:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1012474 125 2020-01-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1012475 125 2020-01-28 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1012476 125 2020-01-29 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1012477 125 2020-01-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1012478 125 2020-01-31 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1014612 119 2020-01-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1014613 119 2020-01-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1014614 119 2020-01-15 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1014615 119 2020-01-16 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1014616 119 2020-01-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1014617 119 2020-01-18 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1014618 119 2020-01-19 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1014619 119 2020-01-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1014620 119 2020-01-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1014621 119 2020-01-22 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1014622 119 2020-01-23 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1014623 119 2020-01-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1014624 119 2020-01-25 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1014625 119 2020-01-26 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1014626 119 2020-01-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1014627 119 2020-01-28 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1014628 119 2020-01-29 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1014629 119 2020-01-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1014630 119 2020-01-31 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1014631 119 2020-02-01 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1014632 119 2020-02-02 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1014633 119 2020-02-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1014634 119 2020-02-04 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1079188 146 2020-03-23 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079189 146 2020-03-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079190 146 2020-03-25 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079191 146 2020-03-26 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1014635 119 2020-02-05 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1014636 119 2020-02-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1014637 119 2020-02-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1014638 119 2020-02-08 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1014639 119 2020-02-09 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1014640 119 2020-02-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1014641 119 2020-02-11 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1014642 119 2020-02-12 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1014643 119 2020-02-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1014644 119 2020-02-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1014645 119 2020-02-15 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1014646 119 2020-02-16 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1014647 119 2020-02-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1014648 119 2020-02-18 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1014649 119 2020-02-19 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1014650 119 2020-02-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1014651 119 2020-02-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1014652 119 2020-02-22 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1014653 119 2020-02-23 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1016773 113 2020-01-22 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1016774 113 2020-01-23 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1016775 113 2020-01-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1016776 113 2020-01-25 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1016777 113 2020-01-26 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1016778 113 2020-01-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1016779 113 2020-01-28 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1016780 113 2020-01-29 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1016781 113 2020-01-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1016782 113 2020-01-31 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1018917 147 2020-01-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1018918 147 2020-01-15 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1018919 147 2020-01-16 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1018920 147 2020-01-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1018921 147 2020-01-18 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1018922 147 2020-01-19 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1018923 147 2020-01-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1079192 146 2020-03-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079193 146 2020-03-28 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1079194 146 2020-03-29 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1079195 146 2020-03-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079196 146 2020-03-31 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1018924 147 2020-01-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1018925 147 2020-01-22 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1018926 147 2020-01-23 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1018927 147 2020-01-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1018928 147 2020-01-25 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1018929 147 2020-01-26 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1018930 147 2020-01-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1018931 147 2020-01-28 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1018932 147 2020-01-29 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1018933 147 2020-01-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1018934 147 2020-01-31 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1018935 147 2020-02-01 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1018936 147 2020-02-02 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1018937 147 2020-02-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1018938 147 2020-02-04 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1018939 147 2020-02-05 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1018940 147 2020-02-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1018941 147 2020-02-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1018942 147 2020-02-08 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1018943 147 2020-02-09 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1018944 147 2020-02-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1018945 147 2020-02-11 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1018946 147 2020-02-12 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1018947 147 2020-02-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1018948 147 2020-02-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1018949 147 2020-02-15 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1018950 147 2020-02-16 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1018951 147 2020-02-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1018952 147 2020-02-18 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1018953 147 2020-02-19 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1018954 147 2020-02-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1021078 131 2020-01-23 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1021079 131 2020-01-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1021080 131 2020-01-25 \N \N \N \N \N 00:00:00 03:20:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1021081 131 2020-01-26 \N \N \N \N \N 00:00:00 03:20:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1079197 146 2020-04-01 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079198 146 2020-04-02 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079199 146 2020-04-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079200 146 2020-04-04 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1079201 146 2020-04-05 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1021082 131 2020-01-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1021083 131 2020-01-28 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1021107 131 2020-02-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1021108 131 2020-02-22 \N \N \N \N \N 00:00:00 03:20:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1021109 131 2020-02-23 \N \N \N \N \N 00:00:00 03:20:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1023223 104 2020-01-16 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 05:00:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1023224 104 2020-01-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 05:00:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1023225 104 2020-01-18 \N \N \N \N \N 00:00:00 05:00:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1023226 104 2020-01-19 \N \N \N \N \N 00:00:00 05:00:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1023227 104 2020-01-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 05:00:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1023228 104 2020-01-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 05:00:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1023229 104 2020-01-22 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 05:00:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1023230 104 2020-01-23 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 05:00:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1023231 104 2020-01-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 05:00:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1023232 104 2020-01-25 \N \N \N \N \N 00:00:00 05:00:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1023233 104 2020-01-26 \N \N \N \N \N 00:00:00 05:00:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1023234 104 2020-01-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 05:00:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1023235 104 2020-01-28 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 05:00:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1023236 104 2020-01-29 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 05:00:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1023237 104 2020-01-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 05:00:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1023238 104 2020-01-31 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 05:00:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1023239 104 2020-02-01 \N \N \N \N \N 00:00:00 05:00:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1023240 104 2020-02-02 \N \N \N \N \N 00:00:00 05:00:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1023241 104 2020-02-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 05:00:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1023242 104 2020-02-04 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 05:00:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1023243 104 2020-02-05 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 05:00:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1023244 104 2020-02-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 05:00:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1023245 104 2020-02-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 05:00:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1023246 104 2020-02-08 \N \N \N \N \N 00:00:00 05:00:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1023247 104 2020-02-09 \N \N \N \N \N 00:00:00 05:00:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1023248 104 2020-02-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 05:00:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1023249 104 2020-02-11 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 05:00:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1023250 104 2020-02-12 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 05:00:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1023251 104 2020-02-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 05:00:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1023252 104 2020-02-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 05:00:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1027530 138 2020-01-19 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1079202 146 2020-04-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079203 146 2020-04-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079204 146 2020-04-08 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079205 146 2020-04-09 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1027531 138 2020-01-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1027532 138 2020-01-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1027533 138 2020-01-22 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1027534 138 2020-01-23 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1027535 138 2020-01-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1027536 138 2020-01-25 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1027537 138 2020-01-26 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1027538 138 2020-01-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1027539 138 2020-01-28 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1027540 138 2020-01-29 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1027541 138 2020-01-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1027542 138 2020-01-31 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1027543 138 2020-02-01 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1027544 138 2020-02-02 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1027545 138 2020-02-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1027546 138 2020-02-04 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1027547 138 2020-02-05 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1027548 138 2020-02-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1027549 138 2020-02-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1027550 138 2020-02-08 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1027551 138 2020-02-09 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1027557 138 2020-02-15 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1029700 105 2020-02-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1029701 105 2020-02-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1029702 105 2020-02-08 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1029703 105 2020-02-09 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1029704 105 2020-02-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1029705 105 2020-02-11 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1029706 105 2020-02-12 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1029707 105 2020-02-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1029708 105 2020-02-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1029709 105 2020-02-15 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1029710 105 2020-02-16 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1029711 105 2020-02-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1029712 105 2020-02-18 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1029713 105 2020-02-19 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1079206 146 2020-04-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079207 146 2020-04-11 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1079208 146 2020-04-12 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1079209 146 2020-04-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079210 146 2020-04-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1029714 105 2020-02-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1029715 105 2020-02-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1029716 105 2020-02-22 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1029717 105 2020-02-23 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1031836 134 2020-01-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1031837 134 2020-01-22 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1031838 134 2020-01-23 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1031839 134 2020-01-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1031840 134 2020-01-25 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1031841 134 2020-01-26 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1031842 134 2020-01-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1031843 134 2020-01-28 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1031844 134 2020-01-29 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1031845 134 2020-01-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1031846 134 2020-01-31 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1031847 134 2020-02-01 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1031848 134 2020-02-02 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1031849 134 2020-02-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1033995 144 2020-01-28 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1033996 144 2020-01-29 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1033997 144 2020-01-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1033998 144 2020-01-31 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1033999 144 2020-02-01 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1034000 144 2020-02-02 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1034001 144 2020-02-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1034002 144 2020-02-04 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1034003 144 2020-02-05 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1034004 144 2020-02-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1034005 144 2020-02-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1034006 144 2020-02-08 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1034007 144 2020-02-09 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1034008 144 2020-02-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1034009 144 2020-02-11 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1034010 144 2020-02-12 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1034011 144 2020-02-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1079211 146 2020-04-15 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079212 146 2020-04-16 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079213 146 2020-04-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079214 146 2020-04-18 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1079215 146 2020-04-19 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1034012 144 2020-02-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1034013 144 2020-02-15 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1034014 144 2020-02-16 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1034015 144 2020-02-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1034016 144 2020-02-18 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1034017 144 2020-02-19 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1034018 144 2020-02-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1034019 144 2020-02-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1034020 144 2020-02-22 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1034021 144 2020-02-23 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1036141 102 2020-01-22 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1036142 102 2020-01-23 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1036143 102 2020-01-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1036144 102 2020-01-25 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1036145 102 2020-01-26 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1036146 102 2020-01-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1036147 102 2020-01-28 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1036148 102 2020-01-29 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1036149 102 2020-01-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1036150 102 2020-01-31 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1038288 109 2020-01-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1038289 109 2020-01-18 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1038290 109 2020-01-19 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1038291 109 2020-01-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1038292 109 2020-01-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1038293 109 2020-01-22 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1038294 109 2020-01-23 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1038295 109 2020-01-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1038296 109 2020-01-25 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1038297 109 2020-01-26 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1038298 109 2020-01-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1038299 109 2020-01-28 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1038300 109 2020-01-29 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1038301 109 2020-01-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1038302 109 2020-01-31 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1038303 109 2020-02-01 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1038304 109 2020-02-02 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1079216 115 2020-02-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079217 115 2020-02-25 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079218 115 2020-02-26 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079219 115 2020-02-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1038305 109 2020-02-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1038306 109 2020-02-04 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1038307 109 2020-02-05 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1038308 109 2020-02-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1038309 109 2020-02-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1038310 109 2020-02-08 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1038311 109 2020-02-09 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1038312 109 2020-02-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1038313 109 2020-02-11 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1038314 109 2020-02-12 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1038315 109 2020-02-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1038316 109 2020-02-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1038317 109 2020-02-15 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1038318 109 2020-02-16 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1038319 109 2020-02-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1038320 109 2020-02-18 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1038321 109 2020-02-19 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1038322 109 2020-02-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1038323 109 2020-02-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1038324 109 2020-02-22 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1038325 109 2020-02-23 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1040445 118 2020-01-22 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1040446 118 2020-01-23 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1040447 118 2020-01-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1040448 118 2020-01-25 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1040449 118 2020-01-26 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1040450 118 2020-01-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1040451 118 2020-01-28 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1040452 118 2020-01-29 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1040453 118 2020-01-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1040454 118 2020-01-31 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1042588 133 2020-01-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1042589 133 2020-01-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1042590 133 2020-01-15 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1079220 115 2020-02-28 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079221 115 2020-02-29 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1079222 115 2020-03-01 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1079223 115 2020-03-02 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079224 115 2020-03-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1042591 133 2020-01-16 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1042592 133 2020-01-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1042593 133 2020-01-18 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1042594 133 2020-01-19 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1042595 133 2020-01-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1042596 133 2020-01-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1042597 133 2020-01-22 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1042598 133 2020-01-23 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1042599 133 2020-01-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1042600 133 2020-01-25 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1042601 133 2020-01-26 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1042602 133 2020-01-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1042603 133 2020-01-28 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1042604 133 2020-01-29 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1042605 133 2020-01-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1042606 133 2020-01-31 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1042607 133 2020-02-01 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1042608 133 2020-02-02 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1042609 133 2020-02-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1042610 133 2020-02-04 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1042611 133 2020-02-05 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1042612 133 2020-02-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1042613 133 2020-02-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1042614 133 2020-02-08 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1042615 133 2020-02-09 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1042616 133 2020-02-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1042617 133 2020-02-11 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1042618 133 2020-02-12 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1042619 133 2020-02-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1042620 133 2020-02-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1042621 133 2020-02-15 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1042622 133 2020-02-16 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1042623 133 2020-02-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1042624 133 2020-02-18 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1042625 133 2020-02-19 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1079225 115 2020-03-04 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079226 115 2020-03-05 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079227 115 2020-03-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079228 115 2020-03-07 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1079229 115 2020-03-08 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1042626 133 2020-02-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1042627 133 2020-02-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1042628 133 2020-02-22 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1042629 133 2020-02-23 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1044749 111 2020-01-22 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1044750 111 2020-01-23 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1044751 111 2020-01-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1044752 111 2020-01-25 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1044753 111 2020-01-26 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1044754 111 2020-01-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1044755 111 2020-01-28 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1044756 111 2020-01-29 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1044757 111 2020-01-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1044758 111 2020-01-31 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1046893 128 2020-01-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1046894 128 2020-01-15 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1046895 128 2020-01-16 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1046896 128 2020-01-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1046897 128 2020-01-18 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1046898 128 2020-01-19 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1046899 128 2020-01-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1046900 128 2020-01-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1046901 128 2020-01-22 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1046902 128 2020-01-23 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1046903 128 2020-01-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1046904 128 2020-01-25 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1046905 128 2020-01-26 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1046906 128 2020-01-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1046907 128 2020-01-28 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1046908 128 2020-01-29 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1046909 128 2020-01-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1046910 128 2020-01-31 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1046911 128 2020-02-01 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1046912 128 2020-02-02 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1046913 128 2020-02-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1079230 115 2020-03-09 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079231 115 2020-03-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079232 115 2020-03-11 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079233 115 2020-03-12 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1046914 128 2020-02-04 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1046915 128 2020-02-05 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1046916 128 2020-02-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1046917 128 2020-02-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1046918 128 2020-02-08 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1046919 128 2020-02-09 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1046920 128 2020-02-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1046921 128 2020-02-11 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1046922 128 2020-02-12 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1046923 128 2020-02-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1046924 128 2020-02-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1046925 128 2020-02-15 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1046926 128 2020-02-16 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1046927 128 2020-02-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1046928 128 2020-02-18 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1046929 128 2020-02-19 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1046930 128 2020-02-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1049054 142 2020-01-23 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1049055 142 2020-01-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1049056 142 2020-01-25 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1049057 142 2020-01-26 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1049058 142 2020-01-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1049059 142 2020-01-28 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1049083 142 2020-02-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1049084 142 2020-02-22 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1049085 142 2020-02-23 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1051199 136 2020-01-16 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1051200 136 2020-01-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1051201 136 2020-01-18 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1051202 136 2020-01-19 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1051203 136 2020-01-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1051204 136 2020-01-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1051205 136 2020-01-22 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1051206 136 2020-01-23 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1051207 136 2020-01-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1051208 136 2020-01-25 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1051209 136 2020-01-26 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1079234 115 2020-03-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079235 115 2020-03-14 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1079236 115 2020-03-15 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1079237 115 2020-03-16 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1051210 136 2020-01-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1051211 136 2020-01-28 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1051212 136 2020-01-29 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1051213 136 2020-01-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1051214 136 2020-01-31 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1051215 136 2020-02-01 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1051216 136 2020-02-02 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1051217 136 2020-02-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1051218 136 2020-02-04 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1051219 136 2020-02-05 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1051220 136 2020-02-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1051221 136 2020-02-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1051222 136 2020-02-08 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1051223 136 2020-02-09 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1051224 136 2020-02-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1051225 136 2020-02-11 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1051226 136 2020-02-12 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1051227 136 2020-02-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1051228 136 2020-02-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1055506 139 2020-01-19 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1055507 139 2020-01-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1055508 139 2020-01-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1055509 139 2020-01-22 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1055510 139 2020-01-23 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1055511 139 2020-01-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1055512 139 2020-01-25 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1055513 139 2020-01-26 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1055514 139 2020-01-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1055515 139 2020-01-28 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1055516 139 2020-01-29 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1055517 139 2020-01-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1055518 139 2020-01-31 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1055519 139 2020-02-01 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1055520 139 2020-02-02 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1079238 115 2020-03-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079239 115 2020-03-18 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079240 115 2020-03-19 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079241 115 2020-03-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079242 115 2020-03-21 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1079243 115 2020-03-22 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1055521 139 2020-02-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1055522 139 2020-02-04 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1055523 139 2020-02-05 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1055524 139 2020-02-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1055525 139 2020-02-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1055526 139 2020-02-08 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1055527 139 2020-02-09 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1055533 139 2020-02-15 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1057676 141 2020-02-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1057677 141 2020-02-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1057678 141 2020-02-08 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1057679 141 2020-02-09 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1057680 141 2020-02-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1057681 141 2020-02-11 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1057682 141 2020-02-12 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1057683 141 2020-02-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1057684 141 2020-02-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1057685 141 2020-02-15 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1057686 141 2020-02-16 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1057687 141 2020-02-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1057688 141 2020-02-18 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1057689 141 2020-02-19 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1057690 141 2020-02-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1057691 141 2020-02-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1057692 141 2020-02-22 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1057693 141 2020-02-23 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1059812 122 2020-01-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1059813 122 2020-01-22 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1059814 122 2020-01-23 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1059815 122 2020-01-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1059816 122 2020-01-25 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1059817 122 2020-01-26 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1059818 122 2020-01-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1059819 122 2020-01-28 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1059820 122 2020-01-29 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1059821 122 2020-01-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1059822 122 2020-01-31 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1079244 115 2020-03-23 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079245 115 2020-03-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079246 115 2020-03-25 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079247 115 2020-03-26 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1059823 122 2020-02-01 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1059824 122 2020-02-02 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1059825 122 2020-02-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1061971 106 2020-01-28 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 02:05:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1061972 106 2020-01-29 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 02:05:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1061973 106 2020-01-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 02:05:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1061974 106 2020-01-31 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 02:05:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1061975 106 2020-02-01 \N \N \N \N \N 00:00:00 02:05:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1061976 106 2020-02-02 \N \N \N \N \N 00:00:00 02:05:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1061977 106 2020-02-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 02:05:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1061978 106 2020-02-04 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 02:05:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1061979 106 2020-02-05 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 02:05:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1061980 106 2020-02-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 02:05:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1061981 106 2020-02-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 02:05:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1061982 106 2020-02-08 \N \N \N \N \N 00:00:00 02:05:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1061983 106 2020-02-09 \N \N \N \N \N 00:00:00 02:05:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1061984 106 2020-02-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 02:05:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1061985 106 2020-02-11 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 02:05:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1061986 106 2020-02-12 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 02:05:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1061987 106 2020-02-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 02:05:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1061988 106 2020-02-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 02:05:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1061989 106 2020-02-15 \N \N \N \N \N 00:00:00 02:05:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1061990 106 2020-02-16 \N \N \N \N \N 00:00:00 02:05:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1061991 106 2020-02-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 02:05:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1061992 106 2020-02-18 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 02:05:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1061993 106 2020-02-19 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 02:05:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1061994 106 2020-02-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 02:05:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1061995 106 2020-02-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 02:05:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1061996 106 2020-02-22 \N \N \N \N \N 00:00:00 02:05:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1061997 106 2020-02-23 \N \N \N \N \N 00:00:00 02:05:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1064117 110 2020-01-22 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1064118 110 2020-01-23 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1064119 110 2020-01-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1064120 110 2020-01-25 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1064121 110 2020-01-26 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1064122 110 2020-01-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1079248 115 2020-03-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079249 115 2020-03-28 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1079250 115 2020-03-29 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1079251 115 2020-03-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079252 115 2020-03-31 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1064123 110 2020-01-28 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1064124 110 2020-01-29 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1064125 110 2020-01-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1064126 110 2020-01-31 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1066264 145 2020-01-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1066265 145 2020-01-18 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1066266 145 2020-01-19 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1066267 145 2020-01-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1066268 145 2020-01-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1066269 145 2020-01-22 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1066270 145 2020-01-23 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1066271 145 2020-01-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1066272 145 2020-01-25 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1066273 145 2020-01-26 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1066274 145 2020-01-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1066275 145 2020-01-28 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1066276 145 2020-01-29 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1066277 145 2020-01-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1066278 145 2020-01-31 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1066279 145 2020-02-01 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1066280 145 2020-02-02 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1066281 145 2020-02-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1066282 145 2020-02-04 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1066283 145 2020-02-05 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1066284 145 2020-02-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1066285 145 2020-02-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1066286 145 2020-02-08 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1066287 145 2020-02-09 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1066288 145 2020-02-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1066289 145 2020-02-11 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1066290 145 2020-02-12 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1066291 145 2020-02-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1066292 145 2020-02-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1066293 145 2020-02-15 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1066294 145 2020-02-16 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1079253 115 2020-04-01 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079254 115 2020-04-02 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079255 115 2020-04-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079256 115 2020-04-04 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1066295 145 2020-02-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1066296 145 2020-02-18 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1066297 145 2020-02-19 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1066298 145 2020-02-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1066299 145 2020-02-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1066300 145 2020-02-22 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1066301 145 2020-02-23 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1068421 148 2020-01-22 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1068422 148 2020-01-23 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1068423 148 2020-01-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1068424 148 2020-01-25 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1068425 148 2020-01-26 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1068426 148 2020-01-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1068427 148 2020-01-28 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1068428 148 2020-01-29 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1068429 148 2020-01-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1068430 148 2020-01-31 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1070564 130 2020-01-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1070565 130 2020-01-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1070566 130 2020-01-15 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1070567 130 2020-01-16 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1070568 130 2020-01-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1070569 130 2020-01-18 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1070570 130 2020-01-19 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1070571 130 2020-01-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1070572 130 2020-01-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1070573 130 2020-01-22 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1070574 130 2020-01-23 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1070575 130 2020-01-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1070576 130 2020-01-25 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1070577 130 2020-01-26 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1070578 130 2020-01-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1070579 130 2020-01-28 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1070580 130 2020-01-29 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1070581 130 2020-01-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1079257 115 2020-04-05 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1079258 115 2020-04-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079259 115 2020-04-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079260 115 2020-04-08 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079261 115 2020-04-09 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1070582 130 2020-01-31 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1070583 130 2020-02-01 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1070584 130 2020-02-02 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1070585 130 2020-02-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1070586 130 2020-02-04 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1070587 130 2020-02-05 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1070588 130 2020-02-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1070589 130 2020-02-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1070590 130 2020-02-08 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1070591 130 2020-02-09 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1070592 130 2020-02-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1070593 130 2020-02-11 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1070594 130 2020-02-12 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1070595 130 2020-02-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1070596 130 2020-02-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1070597 130 2020-02-15 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1070598 130 2020-02-16 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1070599 130 2020-02-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1070600 130 2020-02-18 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1070601 130 2020-02-19 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1070602 130 2020-02-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1070603 130 2020-02-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1070604 130 2020-02-22 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1070605 130 2020-02-23 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -914490 129 2020-01-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -914491 129 2020-01-28 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -914492 129 2020-01-29 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -914493 129 2020-01-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -914494 129 2020-01-31 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -914495 129 2020-02-01 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -914496 129 2020-02-02 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -914497 129 2020-02-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -914498 129 2020-02-04 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -914499 129 2020-02-05 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1079262 115 2020-04-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079263 115 2020-04-11 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1079264 115 2020-04-12 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1079265 115 2020-04-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079266 115 2020-04-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -914500 129 2020-02-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -914501 129 2020-02-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -914502 129 2020-02-08 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -914503 129 2020-02-09 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -914504 129 2020-02-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -914505 129 2020-02-11 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -914506 129 2020-02-12 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -914507 129 2020-02-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -914508 129 2020-02-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -914509 129 2020-02-15 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -914510 129 2020-02-16 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -914511 129 2020-02-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -914512 129 2020-02-18 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -914513 129 2020-02-19 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -914514 129 2020-02-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -914515 129 2020-02-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -914516 129 2020-02-22 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1074877 143 2020-01-22 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1074878 143 2020-01-23 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1074879 143 2020-01-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1074880 143 2020-01-25 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1074881 143 2020-01-26 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1074882 143 2020-01-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1074883 143 2020-01-28 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1074884 143 2020-01-29 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1074885 143 2020-01-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1074886 143 2020-01-31 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1079160 146 2020-02-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079161 146 2020-02-25 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079162 146 2020-02-26 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079163 146 2020-02-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079164 146 2020-02-28 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079165 146 2020-02-29 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1079267 115 2020-04-15 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079268 115 2020-04-16 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079269 115 2020-04-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079270 115 2020-04-18 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1079271 115 2020-04-19 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1079272 114 2020-02-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079273 114 2020-02-25 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079274 114 2020-02-26 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079275 114 2020-02-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079276 114 2020-02-28 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079277 114 2020-02-29 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1079278 114 2020-03-01 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -988776 146 2020-01-01 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -988777 146 2020-01-02 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -988778 146 2020-01-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -988779 146 2020-01-04 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -988780 146 2020-01-05 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -988781 146 2020-01-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -988782 146 2020-01-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -988783 146 2020-01-08 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -988784 146 2020-01-09 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -988785 146 2020-01-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -988786 146 2020-01-11 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -988787 146 2020-01-12 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1079279 114 2020-03-02 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079280 114 2020-03-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079281 114 2020-03-04 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079282 114 2020-03-05 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079283 114 2020-03-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -988788 146 2020-01-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -988789 146 2020-01-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1079284 114 2020-03-07 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -988790 146 2020-01-15 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -988791 146 2020-01-16 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1079285 114 2020-03-08 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -988792 146 2020-01-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -988793 146 2020-01-18 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1079286 114 2020-03-09 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -988794 146 2020-01-19 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -988795 146 2020-01-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -988796 146 2020-01-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -988806 146 2020-01-31 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -988807 146 2020-02-01 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -988808 146 2020-02-02 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -988809 146 2020-02-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -988810 146 2020-02-04 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -988811 146 2020-02-05 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -988812 146 2020-02-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -988813 146 2020-02-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -988814 146 2020-02-08 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -988815 146 2020-02-09 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -988816 146 2020-02-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -988817 146 2020-02-11 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -988818 146 2020-02-12 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -988819 146 2020-02-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -988820 146 2020-02-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -988821 146 2020-02-15 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -988822 146 2020-02-16 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -988823 146 2020-02-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -988824 146 2020-02-18 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1079287 114 2020-03-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -988825 146 2020-02-19 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -988826 146 2020-02-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1079288 114 2020-03-11 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -988827 146 2020-02-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -988828 146 2020-02-22 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1079289 114 2020-03-12 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -988829 146 2020-02-23 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1079290 114 2020-03-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079291 114 2020-03-14 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1079292 114 2020-03-15 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1079293 114 2020-03-16 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079294 114 2020-03-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079295 114 2020-03-18 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079296 114 2020-03-19 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079297 114 2020-03-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079298 114 2020-03-21 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1079299 114 2020-03-22 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1079300 114 2020-03-23 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079301 114 2020-03-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079302 114 2020-03-25 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079303 114 2020-03-26 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079304 114 2020-03-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079305 114 2020-03-28 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1079306 114 2020-03-29 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1079307 114 2020-03-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079308 114 2020-03-31 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079309 114 2020-04-01 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079310 114 2020-04-02 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079311 114 2020-04-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079312 114 2020-04-04 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1079313 114 2020-04-05 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1079314 114 2020-04-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079315 114 2020-04-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079316 114 2020-04-08 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079317 114 2020-04-09 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079318 114 2020-04-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079319 114 2020-04-11 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1079320 114 2020-04-12 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1079321 114 2020-04-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079322 114 2020-04-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079323 114 2020-04-15 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079324 114 2020-04-16 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079325 114 2020-04-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079326 114 2020-04-18 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1079327 114 2020-04-19 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1079328 112 2020-02-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079329 112 2020-02-25 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079330 112 2020-02-26 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079331 112 2020-02-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079332 112 2020-02-28 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079333 112 2020-02-29 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1079334 112 2020-03-01 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1079335 112 2020-03-02 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079336 112 2020-03-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079337 112 2020-03-04 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079338 112 2020-03-05 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079339 112 2020-03-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079340 112 2020-03-07 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1079341 112 2020-03-08 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1079342 112 2020-03-09 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079343 112 2020-03-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079344 112 2020-03-11 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079345 112 2020-03-12 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079346 112 2020-03-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079347 112 2020-03-14 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1079348 112 2020-03-15 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1079349 112 2020-03-16 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079350 112 2020-03-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079351 112 2020-03-18 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079352 112 2020-03-19 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079353 112 2020-03-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079354 112 2020-03-21 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1079355 112 2020-03-22 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1079356 112 2020-03-23 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079357 112 2020-03-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079358 112 2020-03-25 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079359 112 2020-03-26 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079360 112 2020-03-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079361 112 2020-03-28 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1079362 112 2020-03-29 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1079363 112 2020-03-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079364 112 2020-03-31 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079365 112 2020-04-01 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079366 112 2020-04-02 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079367 112 2020-04-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079368 112 2020-04-04 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1079369 112 2020-04-05 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1079370 112 2020-04-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079371 112 2020-04-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079372 112 2020-04-08 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079373 112 2020-04-09 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079374 112 2020-04-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079375 112 2020-04-11 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1079376 112 2020-04-12 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1079377 112 2020-04-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079378 112 2020-04-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079379 112 2020-04-15 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079380 112 2020-04-16 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079381 112 2020-04-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079382 112 2020-04-18 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1079383 112 2020-04-19 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1079384 108 2020-02-24 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1079385 108 2020-02-25 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1079386 108 2020-02-26 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1079387 108 2020-02-27 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1079388 108 2020-02-28 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1079389 108 2020-02-29 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1079390 108 2020-03-01 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1079391 108 2020-03-02 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1079392 108 2020-03-03 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1079393 108 2020-03-04 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1079394 108 2020-03-05 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1079395 108 2020-03-06 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1079396 108 2020-03-07 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1079397 108 2020-03-08 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1079398 108 2020-03-09 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1079399 108 2020-03-10 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1079400 108 2020-03-11 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1079401 108 2020-03-12 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1079402 108 2020-03-13 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1079403 108 2020-03-14 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1079404 108 2020-03-15 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1079405 108 2020-03-16 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1079406 108 2020-03-17 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1079407 108 2020-03-18 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1079408 108 2020-03-19 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1079409 108 2020-03-20 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1079410 108 2020-03-21 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1079411 108 2020-03-22 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1079412 108 2020-03-23 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1079413 108 2020-03-24 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1079414 108 2020-03-25 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1079415 108 2020-03-26 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1079416 108 2020-03-27 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1079417 108 2020-03-28 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1079418 108 2020-03-29 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1079419 108 2020-03-30 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1079420 108 2020-03-31 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1079421 108 2020-04-01 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1079422 108 2020-04-02 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1079423 108 2020-04-03 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1079424 108 2020-04-04 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1079425 108 2020-04-05 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1079426 108 2020-04-06 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1079427 108 2020-04-07 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1079428 108 2020-04-08 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1079429 108 2020-04-09 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1079430 108 2020-04-10 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1079431 108 2020-04-11 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1079432 108 2020-04-12 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1079433 108 2020-04-13 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1079434 108 2020-04-14 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1079435 108 2020-04-15 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1079436 108 2020-04-16 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1079437 108 2020-04-17 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1079438 108 2020-04-18 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1079439 108 2020-04-19 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1079440 135 2020-02-24 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1079441 135 2020-02-25 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1079442 135 2020-02-26 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1079443 135 2020-02-27 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1079444 135 2020-02-28 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1079445 135 2020-02-29 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1079446 135 2020-03-01 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1079447 135 2020-03-02 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1079448 135 2020-03-03 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1079449 135 2020-03-04 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1079450 135 2020-03-05 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1079451 135 2020-03-06 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1079452 135 2020-03-07 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1079453 135 2020-03-08 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1079454 135 2020-03-09 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1079455 135 2020-03-10 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1079456 135 2020-03-11 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1079457 135 2020-03-12 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1079458 135 2020-03-13 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1079459 135 2020-03-14 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1079460 135 2020-03-15 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1079461 135 2020-03-16 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1079462 135 2020-03-17 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1079463 135 2020-03-18 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1079464 135 2020-03-19 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1079465 135 2020-03-20 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1079466 135 2020-03-21 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1079467 135 2020-03-22 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1079468 135 2020-03-23 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1079469 135 2020-03-24 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1079470 135 2020-03-25 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1079471 135 2020-03-26 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1079472 135 2020-03-27 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1079473 135 2020-03-28 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1079474 135 2020-03-29 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1079475 135 2020-03-30 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1079476 135 2020-03-31 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1079477 135 2020-04-01 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1079478 135 2020-04-02 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1079479 135 2020-04-03 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1079480 135 2020-04-04 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1079481 135 2020-04-05 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1079482 135 2020-04-06 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1079483 135 2020-04-07 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1079484 135 2020-04-08 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1079485 135 2020-04-09 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1079486 135 2020-04-10 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1079487 135 2020-04-11 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1079488 135 2020-04-12 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1079489 135 2020-04-13 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1079490 135 2020-04-14 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1079491 135 2020-04-15 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1079492 135 2020-04-16 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1079493 135 2020-04-17 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1079494 135 2020-04-18 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1079495 135 2020-04-19 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1079496 127 2020-02-24 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1079497 127 2020-02-25 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1079498 127 2020-02-26 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1079499 127 2020-02-27 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1079500 127 2020-02-28 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1079501 127 2020-02-29 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1079502 127 2020-03-01 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1079503 127 2020-03-02 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1079504 127 2020-03-03 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1079505 127 2020-03-04 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1079506 127 2020-03-05 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1079507 127 2020-03-06 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1079508 127 2020-03-07 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1079509 127 2020-03-08 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1079510 127 2020-03-09 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1079511 127 2020-03-10 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1079512 127 2020-03-11 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1079513 127 2020-03-12 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1079514 127 2020-03-13 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1079515 127 2020-03-14 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1079516 127 2020-03-15 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1079517 127 2020-03-16 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1079518 127 2020-03-17 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1079519 127 2020-03-18 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1079520 127 2020-03-19 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1079521 127 2020-03-20 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1079522 127 2020-03-21 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1079523 127 2020-03-22 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1079524 127 2020-03-23 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1079525 127 2020-03-24 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1079526 127 2020-03-25 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1079527 127 2020-03-26 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1079528 127 2020-03-27 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1079529 127 2020-03-28 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1079530 127 2020-03-29 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1079531 127 2020-03-30 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1079532 127 2020-03-31 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1079533 127 2020-04-01 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1079534 127 2020-04-02 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1079535 127 2020-04-03 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1079536 127 2020-04-04 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1079537 127 2020-04-05 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1079538 127 2020-04-06 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1079539 127 2020-04-07 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1079540 127 2020-04-08 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1079541 127 2020-04-09 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1079542 127 2020-04-10 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1079543 127 2020-04-11 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1079544 127 2020-04-12 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1079545 127 2020-04-13 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1079546 127 2020-04-14 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1079547 127 2020-04-15 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1079548 127 2020-04-16 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1079549 127 2020-04-17 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1079550 127 2020-04-18 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1079551 127 2020-04-19 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1079552 149 2020-02-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079553 149 2020-02-25 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079554 149 2020-02-26 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079555 149 2020-02-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079556 149 2020-02-28 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079557 149 2020-02-29 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1079558 149 2020-03-01 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1079559 149 2020-03-02 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079560 149 2020-03-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079561 149 2020-03-04 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079562 149 2020-03-05 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079563 149 2020-03-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079564 149 2020-03-07 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1079565 149 2020-03-08 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1079566 149 2020-03-09 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079567 149 2020-03-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079568 149 2020-03-11 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079569 149 2020-03-12 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079570 149 2020-03-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079571 149 2020-03-14 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1079572 149 2020-03-15 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1079573 149 2020-03-16 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079574 149 2020-03-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079575 149 2020-03-18 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079576 149 2020-03-19 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079577 149 2020-03-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079578 149 2020-03-21 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1079579 149 2020-03-22 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1079580 149 2020-03-23 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079581 149 2020-03-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -990928 132 2020-01-01 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -990929 132 2020-01-02 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -990930 132 2020-01-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -990931 132 2020-01-04 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -990932 132 2020-01-05 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -990933 132 2020-01-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -990934 132 2020-01-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -990935 132 2020-01-08 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -990936 132 2020-01-09 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -990937 132 2020-01-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -990938 132 2020-01-11 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -990939 132 2020-01-12 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -990940 132 2020-01-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -990941 132 2020-01-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -990942 132 2020-01-15 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1079582 149 2020-03-25 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079583 149 2020-03-26 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079584 149 2020-03-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079585 149 2020-03-28 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1079586 149 2020-03-29 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1079587 149 2020-03-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079588 149 2020-03-31 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079589 149 2020-04-01 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079590 149 2020-04-02 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079591 149 2020-04-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079592 149 2020-04-04 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1079593 149 2020-04-05 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1079594 149 2020-04-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079595 149 2020-04-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079596 149 2020-04-08 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079597 149 2020-04-09 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079598 149 2020-04-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079599 149 2020-04-11 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1079600 149 2020-04-12 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1079601 149 2020-04-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079602 149 2020-04-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079603 149 2020-04-15 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079604 149 2020-04-16 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079605 149 2020-04-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079606 149 2020-04-18 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1079607 149 2020-04-19 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1079608 103 2020-02-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079609 103 2020-02-25 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079610 103 2020-02-26 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079611 103 2020-02-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079612 103 2020-02-28 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079613 103 2020-02-29 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1079614 103 2020-03-01 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1079615 103 2020-03-02 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079616 103 2020-03-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079617 103 2020-03-04 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079618 103 2020-03-05 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079619 103 2020-03-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079620 103 2020-03-07 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1079621 103 2020-03-08 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1079622 103 2020-03-09 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079623 103 2020-03-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079624 103 2020-03-11 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079625 103 2020-03-12 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079626 103 2020-03-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079627 103 2020-03-14 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1079628 103 2020-03-15 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1079629 103 2020-03-16 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079630 103 2020-03-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079631 103 2020-03-18 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079632 103 2020-03-19 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079633 103 2020-03-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079634 103 2020-03-21 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1079635 103 2020-03-22 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1079636 103 2020-03-23 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079637 103 2020-03-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079638 103 2020-03-25 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079639 103 2020-03-26 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079640 103 2020-03-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079641 103 2020-03-28 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1079642 103 2020-03-29 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1079643 103 2020-03-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079644 103 2020-03-31 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079645 103 2020-04-01 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079646 103 2020-04-02 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079647 103 2020-04-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079648 103 2020-04-04 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1079649 103 2020-04-05 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1079650 103 2020-04-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079651 103 2020-04-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079652 103 2020-04-08 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079653 103 2020-04-09 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079654 103 2020-04-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079655 103 2020-04-11 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1079656 103 2020-04-12 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1079657 103 2020-04-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079658 103 2020-04-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079659 103 2020-04-15 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079660 103 2020-04-16 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079661 103 2020-04-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079662 103 2020-04-18 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1079663 103 2020-04-19 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1079664 121 2020-02-24 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1079665 121 2020-02-25 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1079666 121 2020-02-26 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1079667 121 2020-02-27 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1079668 121 2020-02-28 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1079669 121 2020-02-29 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1079670 121 2020-03-01 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1079671 121 2020-03-02 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1079672 121 2020-03-03 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1079673 121 2020-03-04 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1079674 121 2020-03-05 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1079675 121 2020-03-06 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1079676 121 2020-03-07 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1079677 121 2020-03-08 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1079678 121 2020-03-09 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1079679 121 2020-03-10 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1079680 121 2020-03-11 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1079681 121 2020-03-12 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1079682 121 2020-03-13 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1079683 121 2020-03-14 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1079684 121 2020-03-15 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1079685 121 2020-03-16 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1079686 121 2020-03-17 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1079687 121 2020-03-18 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1079688 121 2020-03-19 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1079689 121 2020-03-20 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1079690 121 2020-03-21 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1079691 121 2020-03-22 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1079692 121 2020-03-23 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1079693 121 2020-03-24 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1079694 121 2020-03-25 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1079695 121 2020-03-26 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1079696 121 2020-03-27 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1079697 121 2020-03-28 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1079698 121 2020-03-29 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1079699 121 2020-03-30 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1079700 121 2020-03-31 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1079701 121 2020-04-01 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1079702 121 2020-04-02 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1079703 121 2020-04-03 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1079704 121 2020-04-04 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1079705 121 2020-04-05 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1079706 121 2020-04-06 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1079707 121 2020-04-07 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1079708 121 2020-04-08 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1079709 121 2020-04-09 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1079710 121 2020-04-10 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1079711 121 2020-04-11 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1079712 121 2020-04-12 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1079713 121 2020-04-13 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1079714 121 2020-04-14 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1079715 121 2020-04-15 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1079716 121 2020-04-16 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1079717 121 2020-04-17 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1079718 121 2020-04-18 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1079719 121 2020-04-19 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1079720 125 2020-02-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079721 125 2020-02-25 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079722 125 2020-02-26 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079723 125 2020-02-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079724 125 2020-02-28 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079725 125 2020-02-29 \N \N \N \N \N 00:00:00 03:20:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1079726 125 2020-03-01 \N \N \N \N \N 00:00:00 03:20:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1079727 125 2020-03-02 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079728 125 2020-03-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079729 125 2020-03-04 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079730 125 2020-03-05 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079731 125 2020-03-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079732 125 2020-03-07 \N \N \N \N \N 00:00:00 03:20:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1079733 125 2020-03-08 \N \N \N \N \N 00:00:00 03:20:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1079734 125 2020-03-09 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079735 125 2020-03-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079736 125 2020-03-11 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079737 125 2020-03-12 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079738 125 2020-03-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079739 125 2020-03-14 \N \N \N \N \N 00:00:00 03:20:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1079740 125 2020-03-15 \N \N \N \N \N 00:00:00 03:20:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1079741 125 2020-03-16 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079742 125 2020-03-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079743 125 2020-03-18 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079744 125 2020-03-19 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079745 125 2020-03-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079746 125 2020-03-21 \N \N \N \N \N 00:00:00 03:20:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1079747 125 2020-03-22 \N \N \N \N \N 00:00:00 03:20:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1079748 125 2020-03-23 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079749 125 2020-03-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079750 125 2020-03-25 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079751 125 2020-03-26 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079752 125 2020-03-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079753 125 2020-03-28 \N \N \N \N \N 00:00:00 03:20:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1079754 125 2020-03-29 \N \N \N \N \N 00:00:00 03:20:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1079755 125 2020-03-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079756 125 2020-03-31 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079757 125 2020-04-01 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079758 125 2020-04-02 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079759 125 2020-04-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079760 125 2020-04-04 \N \N \N \N \N 00:00:00 03:20:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1079761 125 2020-04-05 \N \N \N \N \N 00:00:00 03:20:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1079762 125 2020-04-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079763 125 2020-04-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079764 125 2020-04-08 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079765 125 2020-04-09 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079766 125 2020-04-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079767 125 2020-04-11 \N \N \N \N \N 00:00:00 03:20:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1079768 125 2020-04-12 \N \N \N \N \N 00:00:00 03:20:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1079769 125 2020-04-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079770 125 2020-04-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079771 125 2020-04-15 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079772 125 2020-04-16 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079773 125 2020-04-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079774 125 2020-04-18 \N \N \N \N \N 00:00:00 03:20:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1079775 125 2020-04-19 \N \N \N \N \N 00:00:00 03:20:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1079776 119 2020-02-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079777 119 2020-02-25 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079778 119 2020-02-26 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079779 119 2020-02-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079780 119 2020-02-28 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079781 119 2020-02-29 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1079782 119 2020-03-01 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1079783 119 2020-03-02 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079784 119 2020-03-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079785 119 2020-03-04 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079786 119 2020-03-05 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079787 119 2020-03-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079788 119 2020-03-07 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1079789 119 2020-03-08 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1079790 119 2020-03-09 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079791 119 2020-03-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079792 119 2020-03-11 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079793 119 2020-03-12 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079794 119 2020-03-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079795 119 2020-03-14 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1079796 119 2020-03-15 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1079797 119 2020-03-16 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079798 119 2020-03-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079799 119 2020-03-18 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079800 119 2020-03-19 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079801 119 2020-03-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079802 119 2020-03-21 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1079803 119 2020-03-22 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1079804 119 2020-03-23 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079805 119 2020-03-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079806 119 2020-03-25 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079807 119 2020-03-26 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079808 119 2020-03-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079809 119 2020-03-28 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1079810 119 2020-03-29 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1079811 119 2020-03-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079812 119 2020-03-31 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079813 119 2020-04-01 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079814 119 2020-04-02 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079815 119 2020-04-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079816 119 2020-04-04 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1079817 119 2020-04-05 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1079818 119 2020-04-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079819 119 2020-04-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079820 119 2020-04-08 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079821 119 2020-04-09 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079822 119 2020-04-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079823 119 2020-04-11 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1079824 119 2020-04-12 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1079825 119 2020-04-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079826 119 2020-04-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079827 119 2020-04-15 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079828 119 2020-04-16 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079829 119 2020-04-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079830 119 2020-04-18 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1079831 119 2020-04-19 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1079832 113 2020-02-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079833 113 2020-02-25 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079834 113 2020-02-26 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079835 113 2020-02-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079836 113 2020-02-28 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079837 113 2020-02-29 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1079838 113 2020-03-01 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1079839 113 2020-03-02 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079840 113 2020-03-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079841 113 2020-03-04 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -993134 115 2019-12-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -993135 115 2019-12-31 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1079842 113 2020-03-05 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079843 113 2020-03-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079844 113 2020-03-07 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1079845 113 2020-03-08 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1079846 113 2020-03-09 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079847 113 2020-03-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079848 113 2020-03-11 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079849 113 2020-03-12 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079850 113 2020-03-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079851 113 2020-03-14 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1079852 113 2020-03-15 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1079853 113 2020-03-16 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079854 113 2020-03-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079855 113 2020-03-18 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079856 113 2020-03-19 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079857 113 2020-03-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079858 113 2020-03-21 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1079859 113 2020-03-22 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1079860 113 2020-03-23 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079861 113 2020-03-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079862 113 2020-03-25 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079863 113 2020-03-26 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079864 113 2020-03-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079865 113 2020-03-28 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1079866 113 2020-03-29 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1079867 113 2020-03-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079868 113 2020-03-31 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079869 113 2020-04-01 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079870 113 2020-04-02 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079871 113 2020-04-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079872 113 2020-04-04 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1079873 113 2020-04-05 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1079874 113 2020-04-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079875 113 2020-04-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079876 113 2020-04-08 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079877 113 2020-04-09 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079878 113 2020-04-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079879 113 2020-04-11 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1079880 113 2020-04-12 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1079881 113 2020-04-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079882 113 2020-04-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079883 113 2020-04-15 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079884 113 2020-04-16 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079885 113 2020-04-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079886 113 2020-04-18 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1079887 113 2020-04-19 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1079888 147 2020-02-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -993080 115 2020-01-01 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -993081 115 2020-01-02 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -993082 115 2020-01-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -993083 115 2020-01-04 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -993084 115 2020-01-05 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -993085 115 2020-01-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -993086 115 2020-01-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -993087 115 2020-01-08 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -993088 115 2020-01-09 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -993089 115 2020-01-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -993090 115 2020-01-11 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -993091 115 2020-01-12 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -993092 115 2020-01-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -993093 115 2020-01-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1079889 147 2020-02-25 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079890 147 2020-02-26 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079891 147 2020-02-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079892 147 2020-02-28 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -993094 115 2020-01-15 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -993095 115 2020-01-16 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1079893 147 2020-02-29 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -993096 115 2020-01-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -993097 115 2020-01-18 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1079894 147 2020-03-01 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -993098 115 2020-01-19 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -993099 115 2020-01-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1079895 147 2020-03-02 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -993100 115 2020-01-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -993101 115 2020-01-22 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1079896 147 2020-03-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -993108 115 2020-01-29 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -993109 115 2020-01-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -993110 115 2020-01-31 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -993111 115 2020-02-01 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -993112 115 2020-02-02 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -993113 115 2020-02-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -993114 115 2020-02-04 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -993115 115 2020-02-05 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -993116 115 2020-02-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -993117 115 2020-02-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -993118 115 2020-02-08 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -993119 115 2020-02-09 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -993120 115 2020-02-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -993121 115 2020-02-11 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -993122 115 2020-02-12 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1079897 147 2020-03-04 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -993123 115 2020-02-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -993124 115 2020-02-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1079898 147 2020-03-05 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -993125 115 2020-02-15 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -993126 115 2020-02-16 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1079899 147 2020-03-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -993127 115 2020-02-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -993128 115 2020-02-18 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1079900 147 2020-03-07 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -993129 115 2020-02-19 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -993130 115 2020-02-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1079901 147 2020-03-08 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1079902 147 2020-03-09 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079903 147 2020-03-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079904 147 2020-03-11 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079905 147 2020-03-12 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079906 147 2020-03-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079907 147 2020-03-14 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1079908 147 2020-03-15 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1079909 147 2020-03-16 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079910 147 2020-03-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079911 147 2020-03-18 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079912 147 2020-03-19 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079913 147 2020-03-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079914 147 2020-03-21 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1079915 147 2020-03-22 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1079916 147 2020-03-23 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079917 147 2020-03-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079918 147 2020-03-25 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079919 147 2020-03-26 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079920 147 2020-03-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079921 147 2020-03-28 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1079922 147 2020-03-29 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1079923 147 2020-03-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079924 147 2020-03-31 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079925 147 2020-04-01 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079926 147 2020-04-02 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079927 147 2020-04-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079928 147 2020-04-04 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1079929 147 2020-04-05 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1079930 147 2020-04-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079931 147 2020-04-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079932 147 2020-04-08 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079933 147 2020-04-09 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079934 147 2020-04-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079935 147 2020-04-11 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1079936 147 2020-04-12 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1079937 147 2020-04-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079938 147 2020-04-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079939 147 2020-04-15 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079940 147 2020-04-16 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079941 147 2020-04-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079942 147 2020-04-18 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1079943 147 2020-04-19 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1079944 131 2020-02-24 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1079945 131 2020-02-25 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1079946 131 2020-02-26 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1079947 131 2020-02-27 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1079948 131 2020-02-28 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1079949 131 2020-02-29 \N \N \N \N \N 00:00:00 03:20:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1079950 131 2020-03-01 \N \N \N \N \N 00:00:00 03:20:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1079951 131 2020-03-02 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1079952 131 2020-03-03 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1079953 131 2020-03-04 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1079954 131 2020-03-05 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1079955 131 2020-03-06 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1079956 131 2020-03-07 \N \N \N \N \N 00:00:00 03:20:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1079957 131 2020-03-08 \N \N \N \N \N 00:00:00 03:20:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1079958 131 2020-03-09 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1079959 131 2020-03-10 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1079960 131 2020-03-11 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1079961 131 2020-03-12 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1079962 131 2020-03-13 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1079963 131 2020-03-14 \N \N \N \N \N 00:00:00 03:20:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1079964 131 2020-03-15 \N \N \N \N \N 00:00:00 03:20:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1079965 131 2020-03-16 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1079966 131 2020-03-17 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1079967 131 2020-03-18 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1079968 131 2020-03-19 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1079969 131 2020-03-20 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1079970 131 2020-03-21 \N \N \N \N \N 00:00:00 03:20:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1079971 131 2020-03-22 \N \N \N \N \N 00:00:00 03:20:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1079972 131 2020-03-23 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1079973 131 2020-03-24 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1079974 131 2020-03-25 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1079975 131 2020-03-26 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1079976 131 2020-03-27 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1079977 131 2020-03-28 \N \N \N \N \N 00:00:00 03:20:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1079978 131 2020-03-29 \N \N \N \N \N 00:00:00 03:20:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1079979 131 2020-03-30 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1079980 131 2020-03-31 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1079981 131 2020-04-01 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1079982 131 2020-04-02 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1079983 131 2020-04-03 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1079984 131 2020-04-04 \N \N \N \N \N 00:00:00 03:20:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1079985 131 2020-04-05 \N \N \N \N \N 00:00:00 03:20:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1079986 131 2020-04-06 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1079987 131 2020-04-07 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1079988 131 2020-04-08 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1079989 131 2020-04-09 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1079990 131 2020-04-10 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1079991 131 2020-04-11 \N \N \N \N \N 00:00:00 03:20:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1079992 131 2020-04-12 \N \N \N \N \N 00:00:00 03:20:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1079993 131 2020-04-13 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1079994 131 2020-04-14 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1079995 131 2020-04-15 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1079996 131 2020-04-16 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1079997 131 2020-04-17 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1079998 131 2020-04-18 \N \N \N \N \N 00:00:00 03:20:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1079999 131 2020-04-19 \N \N \N \N \N 00:00:00 03:20:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080000 104 2020-02-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 05:00:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1080001 104 2020-02-25 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 05:00:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1080002 104 2020-02-26 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 05:00:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1080003 104 2020-02-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 05:00:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1080004 104 2020-02-28 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 05:00:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1080005 104 2020-02-29 \N \N \N \N \N 00:00:00 05:00:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080006 104 2020-03-01 \N \N \N \N \N 00:00:00 05:00:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080007 104 2020-03-02 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 05:00:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1080008 104 2020-03-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 05:00:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1080009 104 2020-03-04 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 05:00:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1080010 104 2020-03-05 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 05:00:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1080011 104 2020-03-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 05:00:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1080012 104 2020-03-07 \N \N \N \N \N 00:00:00 05:00:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080013 104 2020-03-08 \N \N \N \N \N 00:00:00 05:00:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080014 104 2020-03-09 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 05:00:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1080015 104 2020-03-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 05:00:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1080016 104 2020-03-11 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 05:00:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1080017 104 2020-03-12 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 05:00:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1080018 104 2020-03-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 05:00:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1080019 104 2020-03-14 \N \N \N \N \N 00:00:00 05:00:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080020 104 2020-03-15 \N \N \N \N \N 00:00:00 05:00:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080021 104 2020-03-16 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 05:00:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1080022 104 2020-03-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 05:00:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1080023 104 2020-03-18 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 05:00:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1080024 104 2020-03-19 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 05:00:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1080025 104 2020-03-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 05:00:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1080026 104 2020-03-21 \N \N \N \N \N 00:00:00 05:00:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080027 104 2020-03-22 \N \N \N \N \N 00:00:00 05:00:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080028 104 2020-03-23 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 05:00:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1080029 104 2020-03-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 05:00:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1080030 104 2020-03-25 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 05:00:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1080031 104 2020-03-26 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 05:00:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1080032 104 2020-03-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 05:00:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1080033 104 2020-03-28 \N \N \N \N \N 00:00:00 05:00:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080034 104 2020-03-29 \N \N \N \N \N 00:00:00 05:00:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080035 104 2020-03-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 05:00:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1080036 104 2020-03-31 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 05:00:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1080037 104 2020-04-01 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 05:00:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1080038 104 2020-04-02 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 05:00:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1080039 104 2020-04-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 05:00:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1080040 104 2020-04-04 \N \N \N \N \N 00:00:00 05:00:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080041 104 2020-04-05 \N \N \N \N \N 00:00:00 05:00:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080042 104 2020-04-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 05:00:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1080043 104 2020-04-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 05:00:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1080044 104 2020-04-08 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 05:00:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1080045 104 2020-04-09 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 05:00:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1080046 104 2020-04-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 05:00:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1080047 104 2020-04-11 \N \N \N \N \N 00:00:00 05:00:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080048 104 2020-04-12 \N \N \N \N \N 00:00:00 05:00:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080049 104 2020-04-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 05:00:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1080050 104 2020-04-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 05:00:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1080051 104 2020-04-15 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 05:00:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1080052 104 2020-04-16 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 05:00:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1080053 104 2020-04-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 05:00:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1080054 104 2020-04-18 \N \N \N \N \N 00:00:00 05:00:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080055 104 2020-04-19 \N \N \N \N \N 00:00:00 05:00:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080056 151 2020-02-24 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080057 151 2020-02-25 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080058 151 2020-02-26 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080059 151 2020-02-27 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080060 151 2020-02-28 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080061 151 2020-02-29 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080062 151 2020-03-01 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080063 151 2020-03-02 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080064 151 2020-03-03 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080065 151 2020-03-04 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080066 151 2020-03-05 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080067 151 2020-03-06 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080068 151 2020-03-07 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080069 151 2020-03-08 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080070 151 2020-03-09 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080071 151 2020-03-10 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080072 151 2020-03-11 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080073 151 2020-03-12 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080074 151 2020-03-13 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080075 151 2020-03-14 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080076 151 2020-03-15 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080077 151 2020-03-16 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080078 151 2020-03-17 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080079 151 2020-03-18 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080080 151 2020-03-19 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080081 151 2020-03-20 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080082 151 2020-03-21 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080083 151 2020-03-22 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080084 151 2020-03-23 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080085 151 2020-03-24 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080086 151 2020-03-25 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080087 151 2020-03-26 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080088 151 2020-03-27 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080089 151 2020-03-28 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080090 151 2020-03-29 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080091 151 2020-03-30 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080092 151 2020-03-31 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080093 151 2020-04-01 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080094 151 2020-04-02 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080095 151 2020-04-03 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080096 151 2020-04-04 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080097 151 2020-04-05 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080098 151 2020-04-06 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080099 151 2020-04-07 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080100 151 2020-04-08 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080101 151 2020-04-09 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080102 151 2020-04-10 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080103 151 2020-04-11 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080104 151 2020-04-12 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080105 151 2020-04-13 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080106 151 2020-04-14 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080107 151 2020-04-15 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080108 151 2020-04-16 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080109 151 2020-04-17 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080110 151 2020-04-18 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080111 151 2020-04-19 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080112 138 2020-02-24 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080113 138 2020-02-25 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080114 138 2020-02-26 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080115 138 2020-02-27 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080116 138 2020-02-28 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080117 138 2020-02-29 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080118 138 2020-03-01 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080119 138 2020-03-02 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080120 138 2020-03-03 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080121 138 2020-03-04 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080122 138 2020-03-05 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080123 138 2020-03-06 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080124 138 2020-03-07 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080125 138 2020-03-08 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080126 138 2020-03-09 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080127 138 2020-03-10 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080128 138 2020-03-11 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080129 138 2020-03-12 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080130 138 2020-03-13 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080131 138 2020-03-14 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080132 138 2020-03-15 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080133 138 2020-03-16 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080134 138 2020-03-17 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080135 138 2020-03-18 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080136 138 2020-03-19 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080137 138 2020-03-20 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080138 138 2020-03-21 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080139 138 2020-03-22 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080140 138 2020-03-23 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080141 138 2020-03-24 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080142 138 2020-03-25 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080143 138 2020-03-26 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080144 138 2020-03-27 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080145 138 2020-03-28 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080146 138 2020-03-29 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080147 138 2020-03-30 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080148 138 2020-03-31 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080149 138 2020-04-01 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080150 138 2020-04-02 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080151 138 2020-04-03 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080152 138 2020-04-04 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080153 138 2020-04-05 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080154 138 2020-04-06 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080155 138 2020-04-07 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080156 138 2020-04-08 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080157 138 2020-04-09 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080158 138 2020-04-10 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080159 138 2020-04-11 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080160 138 2020-04-12 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080161 138 2020-04-13 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080162 138 2020-04-14 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080163 138 2020-04-15 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080164 138 2020-04-16 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080165 138 2020-04-17 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080166 138 2020-04-18 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080167 138 2020-04-19 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080168 105 2020-02-24 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080169 105 2020-02-25 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080170 105 2020-02-26 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080171 105 2020-02-27 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080172 105 2020-02-28 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080173 105 2020-02-29 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080174 105 2020-03-01 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080175 105 2020-03-02 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080176 105 2020-03-03 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080177 105 2020-03-04 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080178 105 2020-03-05 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080179 105 2020-03-06 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080180 105 2020-03-07 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080181 105 2020-03-08 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080182 105 2020-03-09 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080183 105 2020-03-10 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080184 105 2020-03-11 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080185 105 2020-03-12 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080186 105 2020-03-13 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080187 105 2020-03-14 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080188 105 2020-03-15 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080189 105 2020-03-16 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080190 105 2020-03-17 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080191 105 2020-03-18 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080192 105 2020-03-19 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080193 105 2020-03-20 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080194 105 2020-03-21 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080195 105 2020-03-22 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080196 105 2020-03-23 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080197 105 2020-03-24 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080198 105 2020-03-25 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080199 105 2020-03-26 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080200 105 2020-03-27 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080201 105 2020-03-28 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080202 105 2020-03-29 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080203 105 2020-03-30 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080204 105 2020-03-31 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080205 105 2020-04-01 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080206 105 2020-04-02 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080207 105 2020-04-03 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080208 105 2020-04-04 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080209 105 2020-04-05 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080210 105 2020-04-06 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080211 105 2020-04-07 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080212 105 2020-04-08 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080213 105 2020-04-09 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080214 105 2020-04-10 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080215 105 2020-04-11 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080216 105 2020-04-12 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080217 105 2020-04-13 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080218 105 2020-04-14 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080219 105 2020-04-15 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080220 105 2020-04-16 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080221 105 2020-04-17 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080222 105 2020-04-18 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080223 105 2020-04-19 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080224 134 2020-02-24 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080225 134 2020-02-25 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080226 134 2020-02-26 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080227 134 2020-02-27 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080228 134 2020-02-28 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080229 134 2020-02-29 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080230 134 2020-03-01 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080231 134 2020-03-02 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080232 134 2020-03-03 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080233 134 2020-03-04 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080234 134 2020-03-05 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080235 134 2020-03-06 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080236 134 2020-03-07 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080237 134 2020-03-08 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080238 134 2020-03-09 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080239 134 2020-03-10 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080240 134 2020-03-11 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080241 134 2020-03-12 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080242 134 2020-03-13 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080243 134 2020-03-14 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080244 134 2020-03-15 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080245 134 2020-03-16 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080246 134 2020-03-17 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080247 134 2020-03-18 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080248 134 2020-03-19 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080249 134 2020-03-20 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080250 134 2020-03-21 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080251 134 2020-03-22 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080252 134 2020-03-23 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080253 134 2020-03-24 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080254 134 2020-03-25 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080255 134 2020-03-26 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080256 134 2020-03-27 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080257 134 2020-03-28 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080258 134 2020-03-29 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080259 134 2020-03-30 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080260 134 2020-03-31 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080261 134 2020-04-01 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080262 134 2020-04-02 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080263 134 2020-04-03 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080264 134 2020-04-04 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080265 134 2020-04-05 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080266 134 2020-04-06 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080267 134 2020-04-07 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080268 134 2020-04-08 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080269 134 2020-04-09 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080270 134 2020-04-10 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080271 134 2020-04-11 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080272 134 2020-04-12 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080273 134 2020-04-13 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080274 134 2020-04-14 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080275 134 2020-04-15 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080276 134 2020-04-16 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080277 134 2020-04-17 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080278 134 2020-04-18 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080279 134 2020-04-19 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080280 144 2020-02-24 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080281 144 2020-02-25 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080282 144 2020-02-26 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080283 144 2020-02-27 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080284 144 2020-02-28 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080285 144 2020-02-29 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080286 144 2020-03-01 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080287 144 2020-03-02 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080288 144 2020-03-03 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080289 144 2020-03-04 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080290 144 2020-03-05 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080291 144 2020-03-06 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080292 144 2020-03-07 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080293 144 2020-03-08 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080294 144 2020-03-09 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080295 144 2020-03-10 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080296 144 2020-03-11 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080297 144 2020-03-12 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080298 144 2020-03-13 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080299 144 2020-03-14 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080300 144 2020-03-15 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080301 144 2020-03-16 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080302 144 2020-03-17 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080303 144 2020-03-18 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080304 144 2020-03-19 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080305 144 2020-03-20 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080306 144 2020-03-21 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080307 144 2020-03-22 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080308 144 2020-03-23 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080309 144 2020-03-24 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080310 144 2020-03-25 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080311 144 2020-03-26 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080312 144 2020-03-27 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080313 144 2020-03-28 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080314 144 2020-03-29 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080315 144 2020-03-30 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080316 144 2020-03-31 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080317 102 2020-02-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1080318 102 2020-02-25 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1080319 102 2020-02-26 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1080320 102 2020-02-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1080321 102 2020-02-28 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1080322 102 2020-02-29 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080323 102 2020-03-01 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080324 102 2020-03-02 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1080325 102 2020-03-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1080326 102 2020-03-04 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1080327 102 2020-03-05 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1080328 102 2020-03-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1080329 102 2020-03-07 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080330 102 2020-03-08 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080331 102 2020-03-09 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1080332 102 2020-03-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1080333 102 2020-03-11 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1080334 102 2020-03-12 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1080335 102 2020-03-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1080336 102 2020-03-14 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080337 102 2020-03-15 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080338 102 2020-03-16 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1080339 102 2020-03-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1080340 102 2020-03-18 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1080341 102 2020-03-19 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1080342 102 2020-03-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1080343 102 2020-03-21 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080344 102 2020-03-22 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080345 102 2020-03-23 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1080346 102 2020-03-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1080347 102 2020-03-25 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1080348 102 2020-03-26 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1080349 102 2020-03-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1080350 102 2020-03-28 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080351 102 2020-03-29 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080352 102 2020-03-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1080353 102 2020-03-31 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1080354 102 2020-04-01 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1080355 102 2020-04-02 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1080356 102 2020-04-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1080357 102 2020-04-04 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080358 102 2020-04-05 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080359 102 2020-04-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1080360 102 2020-04-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1080361 102 2020-04-08 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1080362 102 2020-04-09 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1080363 102 2020-04-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1080364 102 2020-04-11 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080365 102 2020-04-12 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080366 102 2020-04-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1080367 102 2020-04-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1080368 102 2020-04-15 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1080369 102 2020-04-16 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1080370 102 2020-04-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1080371 102 2020-04-18 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080372 102 2020-04-19 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080373 109 2020-02-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1080374 109 2020-02-25 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1080375 109 2020-02-26 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1080376 109 2020-02-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1080377 109 2020-02-28 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1080378 109 2020-02-29 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080379 109 2020-03-01 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080380 109 2020-03-02 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1080381 109 2020-03-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1080382 109 2020-03-04 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1080383 109 2020-03-05 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1080384 109 2020-03-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1080385 109 2020-03-07 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080386 109 2020-03-08 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080387 109 2020-03-09 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1080388 109 2020-03-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1080389 109 2020-03-11 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1080390 109 2020-03-12 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1080391 109 2020-03-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1080392 109 2020-03-14 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080393 109 2020-03-15 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080394 109 2020-03-16 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1080395 109 2020-03-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1080396 109 2020-03-18 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1080397 109 2020-03-19 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1080398 109 2020-03-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1080399 109 2020-03-21 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080400 109 2020-03-22 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080401 109 2020-03-23 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1080402 109 2020-03-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1080403 109 2020-03-25 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1080404 109 2020-03-26 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1080405 109 2020-03-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1080406 109 2020-03-28 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080407 109 2020-03-29 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080408 109 2020-03-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1080409 109 2020-03-31 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1080410 109 2020-04-01 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1080411 109 2020-04-02 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1080412 109 2020-04-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1080413 109 2020-04-04 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080414 109 2020-04-05 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080415 109 2020-04-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1080416 109 2020-04-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1080417 109 2020-04-08 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1080418 109 2020-04-09 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1080419 109 2020-04-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1080420 109 2020-04-11 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080421 109 2020-04-12 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080422 109 2020-04-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1080423 109 2020-04-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1080424 109 2020-04-15 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1080425 109 2020-04-16 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1080426 109 2020-04-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1080427 109 2020-04-18 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080428 109 2020-04-19 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080429 118 2020-02-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1080430 118 2020-02-25 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1080431 118 2020-02-26 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1080432 118 2020-02-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1080433 118 2020-02-28 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1080434 118 2020-02-29 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080435 118 2020-03-01 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080436 118 2020-03-02 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1080437 118 2020-03-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1080438 118 2020-03-04 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1080439 118 2020-03-05 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1080440 118 2020-03-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1080441 118 2020-03-07 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080442 118 2020-03-08 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080443 118 2020-03-09 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1080444 118 2020-03-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1080445 118 2020-03-11 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1080446 118 2020-03-12 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1080447 118 2020-03-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1080448 118 2020-03-14 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080449 118 2020-03-15 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080450 118 2020-03-16 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -995286 114 2019-12-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -995287 114 2019-12-31 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1080451 118 2020-03-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1080452 118 2020-03-18 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1080453 118 2020-03-19 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1080454 118 2020-03-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1080455 118 2020-03-21 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080456 118 2020-03-22 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080457 118 2020-03-23 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1080458 118 2020-03-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1080459 118 2020-03-25 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1080460 118 2020-03-26 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1080461 118 2020-03-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1080462 118 2020-03-28 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080463 118 2020-03-29 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080464 118 2020-03-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1080465 118 2020-03-31 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1080466 118 2020-04-01 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1080467 118 2020-04-02 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1080468 118 2020-04-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1080469 118 2020-04-04 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080470 118 2020-04-05 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080471 118 2020-04-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1080472 118 2020-04-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1080473 118 2020-04-08 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1080474 118 2020-04-09 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1080475 118 2020-04-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1080476 118 2020-04-11 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080477 118 2020-04-12 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080478 118 2020-04-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1080479 118 2020-04-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1080480 118 2020-04-15 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1080481 118 2020-04-16 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1080482 118 2020-04-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1080483 118 2020-04-18 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080484 118 2020-04-19 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080485 133 2020-02-24 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080486 133 2020-02-25 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080487 133 2020-02-26 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080488 133 2020-02-27 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080489 133 2020-02-28 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080490 133 2020-02-29 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080491 133 2020-03-01 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080492 133 2020-03-02 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080493 133 2020-03-03 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080494 133 2020-03-04 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080495 133 2020-03-05 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080496 133 2020-03-06 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080497 133 2020-03-07 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080498 133 2020-03-08 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080499 133 2020-03-09 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080500 133 2020-03-10 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080501 133 2020-03-11 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080502 133 2020-03-12 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080503 133 2020-03-13 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080504 133 2020-03-14 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080505 133 2020-03-15 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080506 133 2020-03-16 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080507 133 2020-03-17 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080508 133 2020-03-18 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080509 133 2020-03-19 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080510 133 2020-03-20 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080511 133 2020-03-21 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080512 133 2020-03-22 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080513 133 2020-03-23 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080514 133 2020-03-24 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080515 133 2020-03-25 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080516 133 2020-03-26 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080517 133 2020-03-27 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080518 133 2020-03-28 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080519 133 2020-03-29 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080520 133 2020-03-30 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080521 133 2020-03-31 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080522 133 2020-04-01 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080523 133 2020-04-02 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080524 133 2020-04-03 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080525 133 2020-04-04 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080526 133 2020-04-05 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080527 133 2020-04-06 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080528 133 2020-04-07 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080529 133 2020-04-08 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080530 133 2020-04-09 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080531 133 2020-04-10 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080532 133 2020-04-11 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080533 133 2020-04-12 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080534 133 2020-04-13 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080535 133 2020-04-14 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080536 133 2020-04-15 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080537 133 2020-04-16 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080538 133 2020-04-17 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080539 133 2020-04-18 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080540 133 2020-04-19 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080541 111 2020-02-24 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080542 111 2020-02-25 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080543 111 2020-02-26 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080544 111 2020-02-27 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080545 111 2020-02-28 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080546 111 2020-02-29 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080547 111 2020-03-01 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080548 111 2020-03-02 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080549 111 2020-03-03 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080550 111 2020-03-04 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080551 111 2020-03-05 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080552 111 2020-03-06 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080553 111 2020-03-07 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080554 111 2020-03-08 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080555 111 2020-03-09 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080556 111 2020-03-10 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080557 111 2020-03-11 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080558 111 2020-03-12 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080559 111 2020-03-13 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080560 111 2020-03-14 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080561 111 2020-03-15 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080562 111 2020-03-16 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080563 111 2020-03-17 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080564 111 2020-03-18 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080565 111 2020-03-19 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080566 111 2020-03-20 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080567 111 2020-03-21 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080568 111 2020-03-22 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080569 111 2020-03-23 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080570 111 2020-03-24 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080571 111 2020-03-25 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080572 111 2020-03-26 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080573 111 2020-03-27 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080574 111 2020-03-28 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080575 111 2020-03-29 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080576 111 2020-03-30 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080577 111 2020-03-31 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080578 111 2020-04-01 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080579 111 2020-04-02 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080580 111 2020-04-03 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080581 111 2020-04-04 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080582 111 2020-04-05 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080583 111 2020-04-06 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080584 111 2020-04-07 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080585 111 2020-04-08 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080586 111 2020-04-09 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080587 111 2020-04-10 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080588 111 2020-04-11 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080589 111 2020-04-12 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080590 111 2020-04-13 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080591 111 2020-04-14 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080592 111 2020-04-15 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080593 111 2020-04-16 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080594 111 2020-04-17 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080595 111 2020-04-18 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080596 111 2020-04-19 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080597 128 2020-02-24 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080598 128 2020-02-25 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080599 128 2020-02-26 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -995232 114 2020-01-01 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1080600 128 2020-02-27 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -995233 114 2020-01-02 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -995234 114 2020-01-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1080601 128 2020-02-28 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -995235 114 2020-01-04 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1080602 128 2020-02-29 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080603 128 2020-03-01 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080604 128 2020-03-02 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080605 128 2020-03-03 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080606 128 2020-03-04 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080607 128 2020-03-05 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080608 128 2020-03-06 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080609 128 2020-03-07 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080610 128 2020-03-08 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080611 128 2020-03-09 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080612 128 2020-03-10 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080613 128 2020-03-11 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -995236 114 2020-01-05 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -995237 114 2020-01-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1080614 128 2020-03-12 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -995238 114 2020-01-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -995239 114 2020-01-08 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1080615 128 2020-03-13 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -995240 114 2020-01-09 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -995241 114 2020-01-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1080616 128 2020-03-14 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -995242 114 2020-01-11 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -995243 114 2020-01-12 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1080617 128 2020-03-15 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -995244 114 2020-01-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -995245 114 2020-01-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -995246 114 2020-01-15 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -995277 114 2020-02-15 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1080618 128 2020-03-16 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -995278 114 2020-02-16 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -995279 114 2020-02-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1080619 128 2020-03-17 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -995280 114 2020-02-18 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -995281 114 2020-02-19 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1080620 128 2020-03-18 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -995282 114 2020-02-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -995283 114 2020-02-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1080621 128 2020-03-19 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -995284 114 2020-02-22 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -995285 114 2020-02-23 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1080622 128 2020-03-20 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080623 128 2020-03-21 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080624 128 2020-03-22 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080625 128 2020-03-23 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080626 128 2020-03-24 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080627 128 2020-03-25 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080628 128 2020-03-26 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080629 128 2020-03-27 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080630 128 2020-03-28 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080631 128 2020-03-29 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080632 128 2020-03-30 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080633 128 2020-03-31 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080634 128 2020-04-01 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080635 128 2020-04-02 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080636 128 2020-04-03 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080637 128 2020-04-04 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080638 128 2020-04-05 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080639 128 2020-04-06 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080640 128 2020-04-07 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080641 128 2020-04-08 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080642 128 2020-04-09 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080643 128 2020-04-10 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080644 128 2020-04-11 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080645 128 2020-04-12 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080646 128 2020-04-13 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080647 128 2020-04-14 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080648 128 2020-04-15 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080649 128 2020-04-16 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080650 128 2020-04-17 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080651 128 2020-04-18 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080652 128 2020-04-19 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080653 142 2020-02-24 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080654 142 2020-02-25 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080655 142 2020-02-26 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080656 142 2020-02-27 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080657 142 2020-02-28 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080658 142 2020-02-29 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080659 142 2020-03-01 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080660 142 2020-03-02 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080661 142 2020-03-03 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080662 142 2020-03-04 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080663 142 2020-03-05 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080664 142 2020-03-06 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080665 142 2020-03-07 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080666 142 2020-03-08 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080667 142 2020-03-09 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080668 142 2020-03-10 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080669 142 2020-03-11 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080670 142 2020-03-12 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080671 142 2020-03-13 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080672 142 2020-03-14 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080673 142 2020-03-15 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080674 142 2020-03-16 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080675 142 2020-03-17 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080676 142 2020-03-18 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080677 142 2020-03-19 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080678 142 2020-03-20 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080679 142 2020-03-21 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080680 142 2020-03-22 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080681 142 2020-03-23 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080682 142 2020-03-24 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080683 142 2020-03-25 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080684 142 2020-03-26 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080685 142 2020-03-27 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080686 142 2020-03-28 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080687 142 2020-03-29 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080688 142 2020-03-30 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080689 142 2020-03-31 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080690 142 2020-04-01 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080691 142 2020-04-02 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080692 142 2020-04-03 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080693 142 2020-04-04 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080694 142 2020-04-05 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080695 142 2020-04-06 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080696 142 2020-04-07 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080697 142 2020-04-08 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080698 142 2020-04-09 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080699 142 2020-04-10 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080700 142 2020-04-11 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080701 142 2020-04-12 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080702 142 2020-04-13 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080703 142 2020-04-14 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080704 142 2020-04-15 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080705 142 2020-04-16 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080706 142 2020-04-17 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080707 142 2020-04-18 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080708 142 2020-04-19 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080709 136 2020-02-24 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080710 136 2020-02-25 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080711 136 2020-02-26 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080712 136 2020-02-27 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080713 136 2020-02-28 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080714 136 2020-02-29 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080715 136 2020-03-01 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080716 136 2020-03-02 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080717 136 2020-03-03 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080718 136 2020-03-04 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080719 136 2020-03-05 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080720 136 2020-03-06 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080721 136 2020-03-07 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080722 136 2020-03-08 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080723 136 2020-03-09 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080724 136 2020-03-10 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080725 136 2020-03-11 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080726 136 2020-03-12 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080727 136 2020-03-13 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080728 136 2020-03-14 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080729 136 2020-03-15 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080730 136 2020-03-16 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080731 136 2020-03-17 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080732 136 2020-03-18 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080733 136 2020-03-19 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080734 136 2020-03-20 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080735 136 2020-03-21 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080736 136 2020-03-22 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080737 136 2020-03-23 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080738 136 2020-03-24 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080739 136 2020-03-25 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080740 136 2020-03-26 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080741 136 2020-03-27 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080742 136 2020-03-28 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080743 136 2020-03-29 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080744 136 2020-03-30 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080745 136 2020-03-31 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080746 136 2020-04-01 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080747 136 2020-04-02 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080748 136 2020-04-03 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080749 136 2020-04-04 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080750 136 2020-04-05 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080751 136 2020-04-06 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080752 136 2020-04-07 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080753 136 2020-04-08 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080754 136 2020-04-09 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080755 136 2020-04-10 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080756 136 2020-04-11 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080757 136 2020-04-12 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080758 136 2020-04-13 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080759 136 2020-04-14 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080760 136 2020-04-15 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080761 136 2020-04-16 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080762 136 2020-04-17 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080763 136 2020-04-18 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080764 136 2020-04-19 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080765 139 2020-02-24 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080766 139 2020-02-25 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080767 139 2020-02-26 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080768 139 2020-02-27 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080769 139 2020-02-28 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080770 139 2020-02-29 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080771 139 2020-03-01 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080772 139 2020-03-02 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080773 139 2020-03-03 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080774 139 2020-03-04 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080775 139 2020-03-05 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080776 139 2020-03-06 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080777 139 2020-03-07 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080778 139 2020-03-08 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080779 139 2020-03-09 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080780 139 2020-03-10 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080781 139 2020-03-11 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080782 139 2020-03-12 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080783 139 2020-03-13 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080784 139 2020-03-14 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080785 139 2020-03-15 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080786 139 2020-03-16 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080787 139 2020-03-17 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080788 139 2020-03-18 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080789 139 2020-03-19 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080790 139 2020-03-20 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080791 139 2020-03-21 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080792 139 2020-03-22 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080793 139 2020-03-23 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080794 139 2020-03-24 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080795 139 2020-03-25 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080796 139 2020-03-26 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080797 139 2020-03-27 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080798 139 2020-03-28 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080799 139 2020-03-29 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080800 139 2020-03-30 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080801 139 2020-03-31 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080802 139 2020-04-01 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080803 139 2020-04-02 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080804 139 2020-04-03 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080805 139 2020-04-04 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080806 139 2020-04-05 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080807 139 2020-04-06 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080808 139 2020-04-07 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080809 139 2020-04-08 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080810 139 2020-04-09 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080811 139 2020-04-10 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080812 139 2020-04-11 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080813 139 2020-04-12 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080814 139 2020-04-13 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080815 139 2020-04-14 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080816 139 2020-04-15 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080817 139 2020-04-16 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080818 139 2020-04-17 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080819 139 2020-04-18 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080820 139 2020-04-19 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080821 141 2020-02-24 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080822 141 2020-02-25 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080823 141 2020-02-26 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080824 141 2020-02-27 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080825 141 2020-02-28 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080826 141 2020-02-29 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080827 141 2020-03-01 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080828 141 2020-03-02 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080829 141 2020-03-03 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080830 141 2020-03-04 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080831 141 2020-03-05 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080832 141 2020-03-06 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080833 141 2020-03-07 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080834 141 2020-03-08 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080835 141 2020-03-09 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080836 141 2020-03-10 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080837 141 2020-03-11 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080838 141 2020-03-12 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080839 141 2020-03-13 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080840 141 2020-03-14 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080841 141 2020-03-15 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080842 141 2020-03-16 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080843 141 2020-03-17 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080844 141 2020-03-18 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080845 141 2020-03-19 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080846 141 2020-03-20 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080847 141 2020-03-21 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080848 141 2020-03-22 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080849 141 2020-03-23 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080850 141 2020-03-24 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080851 141 2020-03-25 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080852 141 2020-03-26 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080853 141 2020-03-27 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080854 141 2020-03-28 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080855 141 2020-03-29 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080856 141 2020-03-30 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080857 141 2020-03-31 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080858 141 2020-04-01 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080859 141 2020-04-02 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080860 141 2020-04-03 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080861 141 2020-04-04 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080862 141 2020-04-05 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080863 141 2020-04-06 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080864 141 2020-04-07 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080865 141 2020-04-08 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080866 141 2020-04-09 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080867 141 2020-04-10 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080868 141 2020-04-11 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080869 141 2020-04-12 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080870 141 2020-04-13 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080871 141 2020-04-14 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080872 141 2020-04-15 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080873 141 2020-04-16 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080874 141 2020-04-17 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080875 141 2020-04-18 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080876 141 2020-04-19 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080877 122 2020-02-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1080878 122 2020-02-25 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1080879 122 2020-02-26 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1080880 122 2020-02-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1080881 122 2020-02-28 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1080882 122 2020-02-29 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080883 122 2020-03-01 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080884 122 2020-03-02 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1080885 122 2020-03-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1080886 122 2020-03-04 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1080887 122 2020-03-05 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1080888 122 2020-03-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1080889 122 2020-03-07 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080890 122 2020-03-08 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080891 122 2020-03-09 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1080892 122 2020-03-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1080893 122 2020-03-11 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1080894 122 2020-03-12 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1080895 122 2020-03-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1080896 122 2020-03-14 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080897 122 2020-03-15 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080898 122 2020-03-16 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1080899 122 2020-03-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1080900 122 2020-03-18 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1080901 122 2020-03-19 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1080902 122 2020-03-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1080903 122 2020-03-21 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080904 122 2020-03-22 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080905 122 2020-03-23 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1080906 122 2020-03-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1080907 122 2020-03-25 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1080908 122 2020-03-26 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1080909 122 2020-03-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1080910 122 2020-03-28 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080911 122 2020-03-29 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080912 122 2020-03-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1080913 122 2020-03-31 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1080914 122 2020-04-01 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1080915 122 2020-04-02 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1080916 122 2020-04-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1080917 122 2020-04-04 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080918 122 2020-04-05 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080919 122 2020-04-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1080920 122 2020-04-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1080921 122 2020-04-08 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1080922 122 2020-04-09 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1080923 122 2020-04-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1080924 122 2020-04-11 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080925 122 2020-04-12 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080926 122 2020-04-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1080927 122 2020-04-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1080928 122 2020-04-15 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1080929 122 2020-04-16 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1080930 122 2020-04-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1080931 122 2020-04-18 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080932 122 2020-04-19 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080933 106 2020-02-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 02:05:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1080934 106 2020-02-25 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 02:05:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1080935 106 2020-02-26 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 02:05:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1080936 106 2020-02-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 02:05:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1080937 106 2020-02-28 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 02:05:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1080938 106 2020-02-29 \N \N \N \N \N 00:00:00 02:05:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080939 106 2020-03-01 \N \N \N \N \N 00:00:00 02:05:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080940 106 2020-03-02 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 02:05:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1080941 106 2020-03-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 02:05:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1080942 106 2020-03-04 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 02:05:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1080943 106 2020-03-05 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 02:05:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1080944 106 2020-03-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 02:05:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1080945 106 2020-03-07 \N \N \N \N \N 00:00:00 02:05:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080946 106 2020-03-08 \N \N \N \N \N 00:00:00 02:05:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080947 106 2020-03-09 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 02:05:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1080948 106 2020-03-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 02:05:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1080949 106 2020-03-11 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 02:05:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1080950 106 2020-03-12 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 02:05:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1080951 106 2020-03-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 02:05:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1080952 106 2020-03-14 \N \N \N \N \N 00:00:00 02:05:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080953 106 2020-03-15 \N \N \N \N \N 00:00:00 02:05:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080954 106 2020-03-16 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 02:05:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1080955 106 2020-03-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 02:05:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1080956 106 2020-03-18 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 02:05:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1080957 106 2020-03-19 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 02:05:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1080958 106 2020-03-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 02:05:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1080959 106 2020-03-21 \N \N \N \N \N 00:00:00 02:05:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080960 106 2020-03-22 \N \N \N \N \N 00:00:00 02:05:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080961 106 2020-03-23 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 02:05:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1080962 106 2020-03-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 02:05:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1080963 106 2020-03-25 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 02:05:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1080964 106 2020-03-26 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 02:05:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1080965 106 2020-03-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 02:05:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1080966 106 2020-03-28 \N \N \N \N \N 00:00:00 02:05:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080967 106 2020-03-29 \N \N \N \N \N 00:00:00 02:05:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080968 106 2020-03-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 02:05:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1080969 106 2020-03-31 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 02:05:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1080970 106 2020-04-01 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 02:05:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1080971 106 2020-04-02 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 02:05:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1080972 106 2020-04-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 02:05:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1080973 106 2020-04-04 \N \N \N \N \N 00:00:00 02:05:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080974 106 2020-04-05 \N \N \N \N \N 00:00:00 02:05:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080975 106 2020-04-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 02:05:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1080976 106 2020-04-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 02:05:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1080977 106 2020-04-08 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 02:05:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1080978 106 2020-04-09 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 02:05:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1080979 106 2020-04-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 02:05:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1080980 106 2020-04-11 \N \N \N \N \N 00:00:00 02:05:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080981 106 2020-04-12 \N \N \N \N \N 00:00:00 02:05:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080982 106 2020-04-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 02:05:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1080983 106 2020-04-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 02:05:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1080984 106 2020-04-15 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 02:05:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1080985 106 2020-04-16 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 02:05:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1080986 106 2020-04-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 02:05:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1080987 106 2020-04-18 \N \N \N \N \N 00:00:00 02:05:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080988 106 2020-04-19 \N \N \N \N \N 00:00:00 02:05:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080989 110 2020-02-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1080990 110 2020-02-25 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1080991 110 2020-02-26 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1080992 110 2020-02-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1080993 110 2020-02-28 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1080994 110 2020-02-29 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080995 110 2020-03-01 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080996 110 2020-03-02 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1080997 110 2020-03-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1080998 110 2020-03-04 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1080999 110 2020-03-05 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1081000 110 2020-03-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1081001 110 2020-03-07 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1081002 110 2020-03-08 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1081003 110 2020-03-09 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1081004 110 2020-03-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1081005 110 2020-03-11 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1081006 110 2020-03-12 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1081007 110 2020-03-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1081008 110 2020-03-14 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1081009 110 2020-03-15 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1081010 110 2020-03-16 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1081011 110 2020-03-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1081012 110 2020-03-18 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1081013 110 2020-03-19 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1081014 110 2020-03-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1081015 110 2020-03-21 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1081016 110 2020-03-22 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1081017 110 2020-03-23 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1081018 110 2020-03-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1081019 110 2020-03-25 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1081020 110 2020-03-26 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1081021 110 2020-03-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1081022 110 2020-03-28 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1081023 110 2020-03-29 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1081024 110 2020-03-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1081025 110 2020-03-31 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1081026 110 2020-04-01 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1081027 110 2020-04-02 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1081028 110 2020-04-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1081029 110 2020-04-04 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1081030 110 2020-04-05 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1081031 110 2020-04-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1081032 110 2020-04-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1081033 110 2020-04-08 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1081034 110 2020-04-09 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1081035 110 2020-04-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1081036 110 2020-04-11 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1081037 110 2020-04-12 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1081038 110 2020-04-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1081039 110 2020-04-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1081040 110 2020-04-15 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1081041 110 2020-04-16 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1081042 110 2020-04-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1081043 110 2020-04-18 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1081044 110 2020-04-19 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1081045 145 2020-02-24 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1081046 145 2020-02-25 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1081047 145 2020-02-26 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1081048 145 2020-02-27 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1081049 145 2020-02-28 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1081050 145 2020-02-29 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1081051 145 2020-03-01 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1081052 145 2020-03-02 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1081053 145 2020-03-03 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1081054 145 2020-03-04 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1081055 145 2020-03-05 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1081056 145 2020-03-06 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1081057 145 2020-03-07 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1081058 145 2020-03-08 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1081059 145 2020-03-09 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1081060 145 2020-03-10 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1081061 145 2020-03-11 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1081062 145 2020-03-12 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1081063 145 2020-03-13 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1081064 145 2020-03-14 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1081065 145 2020-03-15 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1081066 145 2020-03-16 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1081067 145 2020-03-17 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1081068 145 2020-03-18 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1081069 145 2020-03-19 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1081070 145 2020-03-20 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1081071 145 2020-03-21 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1081072 145 2020-03-22 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1081073 145 2020-03-23 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1081074 145 2020-03-24 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1081075 145 2020-03-25 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1081076 145 2020-03-26 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1081077 145 2020-03-27 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1081078 145 2020-03-28 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1081079 145 2020-03-29 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1081080 145 2020-03-30 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1081081 145 2020-03-31 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1081082 145 2020-04-01 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1081083 145 2020-04-02 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1081084 145 2020-04-03 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1081085 145 2020-04-04 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1081086 145 2020-04-05 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1081087 145 2020-04-06 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1081088 145 2020-04-07 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1081089 145 2020-04-08 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1081090 145 2020-04-09 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1081091 145 2020-04-10 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1081092 145 2020-04-11 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1081093 145 2020-04-12 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1081094 145 2020-04-13 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1081095 145 2020-04-14 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1081096 145 2020-04-15 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1081097 145 2020-04-16 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1081098 145 2020-04-17 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1081099 145 2020-04-18 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1081100 145 2020-04-19 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1081101 148 2020-02-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1081102 148 2020-02-25 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1081103 148 2020-02-26 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1081104 148 2020-02-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1081105 148 2020-02-28 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1081106 148 2020-02-29 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1081107 148 2020-03-01 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1081108 148 2020-03-02 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1081109 148 2020-03-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1081110 148 2020-03-04 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1081111 148 2020-03-05 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1081112 148 2020-03-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1081113 148 2020-03-07 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1081114 148 2020-03-08 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1081115 148 2020-03-09 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1081116 148 2020-03-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1081117 148 2020-03-11 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1081118 148 2020-03-12 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1081119 148 2020-03-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1081120 148 2020-03-14 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1081121 148 2020-03-15 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1081122 148 2020-03-16 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1081123 148 2020-03-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1081124 148 2020-03-18 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1081125 148 2020-03-19 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1081126 148 2020-03-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1081127 148 2020-03-21 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1081128 148 2020-03-22 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1081129 148 2020-03-23 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1081130 148 2020-03-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1081131 148 2020-03-25 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1081132 148 2020-03-26 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1081133 148 2020-03-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1081134 148 2020-03-28 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1081135 148 2020-03-29 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1081136 148 2020-03-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1081137 148 2020-03-31 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1081138 148 2020-04-01 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1081139 148 2020-04-02 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1081140 148 2020-04-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1081141 148 2020-04-04 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1081142 148 2020-04-05 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1081143 148 2020-04-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1081144 148 2020-04-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1081145 148 2020-04-08 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1081146 148 2020-04-09 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1081147 148 2020-04-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1081148 148 2020-04-11 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1081149 148 2020-04-12 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1081150 148 2020-04-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1081151 148 2020-04-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1081152 148 2020-04-15 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1081153 148 2020-04-16 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1081154 148 2020-04-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1081155 148 2020-04-18 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1081156 148 2020-04-19 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1081157 130 2020-02-24 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1081158 130 2020-02-25 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1081159 130 2020-02-26 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1081160 130 2020-02-27 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1081161 130 2020-02-28 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1081162 130 2020-02-29 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1081163 130 2020-03-01 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1081164 130 2020-03-02 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1081165 130 2020-03-03 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1081166 130 2020-03-04 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1081167 130 2020-03-05 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1081168 130 2020-03-06 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1081169 130 2020-03-07 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1081170 130 2020-03-08 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1081171 130 2020-03-09 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1081172 130 2020-03-10 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1081173 130 2020-03-11 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1081174 130 2020-03-12 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1081175 130 2020-03-13 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1081176 130 2020-03-14 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1081177 130 2020-03-15 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1081178 130 2020-03-16 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1081179 130 2020-03-17 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1081180 130 2020-03-18 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1081181 130 2020-03-19 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1081182 130 2020-03-20 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1081183 130 2020-03-21 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1081184 130 2020-03-22 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1081185 130 2020-03-23 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1081186 130 2020-03-24 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1081187 130 2020-03-25 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1081188 130 2020-03-26 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1081189 130 2020-03-27 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1081190 130 2020-03-28 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1081191 130 2020-03-29 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1081192 130 2020-03-30 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1081193 130 2020-03-31 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1081194 130 2020-04-01 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1081195 130 2020-04-02 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1081196 130 2020-04-03 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1081197 130 2020-04-04 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1081198 130 2020-04-05 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1081199 130 2020-04-06 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1081200 130 2020-04-07 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1081201 130 2020-04-08 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1081202 130 2020-04-09 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1081203 130 2020-04-10 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1081204 130 2020-04-11 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1081205 130 2020-04-12 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1081206 130 2020-04-13 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1081207 130 2020-04-14 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1081208 130 2020-04-15 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1081209 130 2020-04-16 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1081210 130 2020-04-17 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1081211 130 2020-04-18 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1081212 130 2020-04-19 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1081213 129 2020-02-24 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1081214 129 2020-02-25 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1081215 129 2020-02-26 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1081216 129 2020-02-27 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1081217 129 2020-02-28 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1081218 129 2020-02-29 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1081219 129 2020-03-01 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1081220 129 2020-03-02 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1081221 129 2020-03-03 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1081222 129 2020-03-04 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1081223 129 2020-03-05 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1081224 129 2020-03-06 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1081225 129 2020-03-07 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1081226 129 2020-03-08 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1081227 129 2020-03-09 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1081228 129 2020-03-10 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1081229 129 2020-03-11 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1081230 129 2020-03-12 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1081231 129 2020-03-13 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1081232 129 2020-03-14 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1081233 129 2020-03-15 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1081234 129 2020-03-16 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1081235 129 2020-03-17 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1081236 129 2020-03-18 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1081237 129 2020-03-19 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1081238 129 2020-03-20 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1081239 129 2020-03-21 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1081240 129 2020-03-22 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1081241 129 2020-03-23 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1081242 129 2020-03-24 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1081243 129 2020-03-25 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1081244 129 2020-03-26 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1081245 129 2020-03-27 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1081246 129 2020-03-28 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1081247 129 2020-03-29 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1081248 129 2020-03-30 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1081249 129 2020-03-31 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1081250 129 2020-04-01 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1081251 129 2020-04-02 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1081252 129 2020-04-03 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1081253 129 2020-04-04 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1081254 129 2020-04-05 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1081255 129 2020-04-06 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1081256 129 2020-04-07 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1081257 129 2020-04-08 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1081258 129 2020-04-09 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1081259 129 2020-04-10 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1081260 129 2020-04-11 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1081261 129 2020-04-12 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1081262 129 2020-04-13 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1081263 129 2020-04-14 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1081264 129 2020-04-15 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1081265 129 2020-04-16 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1081266 129 2020-04-17 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1081267 129 2020-04-18 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1081268 129 2020-04-19 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1081269 143 2020-02-24 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1081270 143 2020-02-25 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1081271 143 2020-02-26 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1081272 143 2020-02-27 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1081273 143 2020-02-28 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1081274 143 2020-02-29 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1081275 143 2020-03-01 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1081276 143 2020-03-02 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1081277 143 2020-03-03 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1081278 143 2020-03-04 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1081279 143 2020-03-05 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1081280 143 2020-03-06 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1081281 143 2020-03-07 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1081282 143 2020-03-08 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1081283 143 2020-03-09 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1081284 143 2020-03-10 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1081285 143 2020-03-11 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1081286 143 2020-03-12 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1081287 143 2020-03-13 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1081288 143 2020-03-14 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1081289 143 2020-03-15 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1081290 143 2020-03-16 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1081291 143 2020-03-17 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1081292 143 2020-03-18 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1081293 143 2020-03-19 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1081294 143 2020-03-20 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1081295 143 2020-03-21 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1081296 143 2020-03-22 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1081297 143 2020-03-23 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1081298 143 2020-03-24 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1081299 143 2020-03-25 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1081300 143 2020-03-26 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1081301 143 2020-03-27 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1081302 143 2020-03-28 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1081303 143 2020-03-29 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1081304 143 2020-03-30 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1081305 143 2020-03-31 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1081306 143 2020-04-01 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1081307 143 2020-04-02 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1081308 143 2020-04-03 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1081309 143 2020-04-04 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1081310 143 2020-04-05 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1081311 143 2020-04-06 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1081312 143 2020-04-07 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1081313 143 2020-04-08 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1081314 143 2020-04-09 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1081315 143 2020-04-10 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1081316 143 2020-04-11 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -997384 112 2020-01-01 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -997385 112 2020-01-02 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1081317 143 2020-04-12 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -997386 112 2020-01-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -997387 112 2020-01-04 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1081318 143 2020-04-13 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -997388 112 2020-01-05 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -997389 112 2020-01-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1081319 143 2020-04-14 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -997390 112 2020-01-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -997391 112 2020-01-08 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1081320 143 2020-04-15 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -997392 112 2020-01-09 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -997393 112 2020-01-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1081321 143 2020-04-16 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -997394 112 2020-01-11 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -997395 112 2020-01-12 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1081322 143 2020-04-17 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -997396 112 2020-01-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -997397 112 2020-01-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1081323 143 2020-04-18 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -997398 112 2020-01-15 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -997399 112 2020-01-16 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1081324 143 2020-04-19 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -997400 112 2020-01-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -997401 112 2020-01-18 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -997402 112 2020-01-19 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -997403 112 2020-01-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -997404 112 2020-01-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -997405 112 2020-01-22 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -997406 112 2020-01-23 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -997407 112 2020-01-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -997408 112 2020-01-25 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -997409 112 2020-01-26 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -997410 112 2020-01-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -997411 112 2020-01-28 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -997412 112 2020-01-29 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -997413 112 2020-01-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -997414 112 2020-01-31 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -997415 112 2020-02-01 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -997416 112 2020-02-02 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -997417 112 2020-02-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -997418 112 2020-02-04 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -997419 112 2020-02-05 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -997420 112 2020-02-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -997421 112 2020-02-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -997422 112 2020-02-08 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -997423 112 2020-02-09 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -997424 112 2020-02-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -997425 112 2020-02-11 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -997426 112 2020-02-12 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -999541 108 2020-01-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -999542 108 2020-01-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -999543 108 2020-01-08 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -999544 108 2020-01-09 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -999545 108 2020-01-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -999546 108 2020-01-11 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -999547 108 2020-01-12 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -999548 108 2020-01-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -999549 108 2020-01-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -999550 108 2020-01-15 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -999551 108 2020-01-16 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -999552 108 2020-01-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -999553 108 2020-01-18 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -999554 108 2020-01-19 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -999555 108 2020-01-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -999556 108 2020-01-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -999557 108 2020-01-22 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -999558 108 2020-01-23 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -999559 108 2020-01-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -999576 108 2020-02-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -999577 108 2020-02-11 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -999578 108 2020-02-12 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -999579 108 2020-02-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -999580 108 2020-02-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -999582 108 2020-02-16 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -999583 108 2020-02-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -999584 108 2020-02-18 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -999585 108 2020-02-19 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -999586 108 2020-02-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -999587 108 2020-02-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -999588 108 2020-02-22 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -999589 108 2020-02-23 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1001742 135 2019-12-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1001743 135 2019-12-31 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1001688 135 2020-01-01 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1001689 135 2020-01-02 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1001690 135 2020-01-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1001691 135 2020-01-04 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1001692 135 2020-01-05 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1001693 135 2020-01-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1001694 135 2020-01-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1001695 135 2020-01-08 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1001696 135 2020-01-09 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1001697 135 2020-01-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1001698 135 2020-01-11 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1001699 135 2020-01-12 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1001700 135 2020-01-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1001701 135 2020-01-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1001702 135 2020-01-15 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1001703 135 2020-01-16 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1001704 135 2020-01-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1001705 135 2020-01-18 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1001706 135 2020-01-19 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1001707 135 2020-01-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1001708 135 2020-01-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1001709 135 2020-01-22 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1001710 135 2020-01-23 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1001711 135 2020-01-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1001712 135 2020-01-25 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1001713 135 2020-01-26 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1001714 135 2020-01-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1001715 135 2020-01-28 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1001716 135 2020-01-29 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1001717 135 2020-01-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1001718 135 2020-01-31 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1001719 135 2020-02-01 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1001720 135 2020-02-02 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1001721 135 2020-02-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1001722 135 2020-02-04 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1001723 135 2020-02-05 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1003840 127 2020-01-01 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1003841 127 2020-01-02 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1003842 127 2020-01-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1003843 127 2020-01-04 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1003844 127 2020-01-05 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1003845 127 2020-01-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1003846 127 2020-01-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1003847 127 2020-01-08 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1003848 127 2020-01-09 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1003849 127 2020-01-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1003850 127 2020-01-11 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1003851 127 2020-01-12 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1003852 127 2020-01-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1003853 127 2020-01-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1003854 127 2020-01-15 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1003855 127 2020-01-16 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1003856 127 2020-01-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1003857 127 2020-01-18 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1003858 127 2020-01-19 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1003859 127 2020-01-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1003874 127 2020-02-04 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1003875 127 2020-02-05 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1003876 127 2020-02-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1003877 127 2020-02-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1003878 127 2020-02-08 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1003879 127 2020-02-09 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1003880 127 2020-02-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1003881 127 2020-02-11 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1003882 127 2020-02-12 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1003883 127 2020-02-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1003884 127 2020-02-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1003885 127 2020-02-15 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1003886 127 2020-02-16 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1003887 127 2020-02-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1003888 127 2020-02-18 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1003889 127 2020-02-19 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1003890 127 2020-02-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1003891 127 2020-02-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1003892 127 2020-02-22 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1003893 127 2020-02-23 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1005992 149 2020-01-01 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1005993 149 2020-01-02 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1005994 149 2020-01-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1005995 149 2020-01-04 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1005996 149 2020-01-05 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1005997 149 2020-01-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1005998 149 2020-01-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1005999 149 2020-01-08 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1006000 149 2020-01-09 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1006001 149 2020-01-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1006002 149 2020-01-11 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1006003 149 2020-01-12 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1006004 149 2020-01-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1006005 149 2020-01-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1006006 149 2020-01-15 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1006007 149 2020-01-16 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1006008 149 2020-01-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1006009 149 2020-01-18 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1006010 149 2020-01-19 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1006011 149 2020-01-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1006012 149 2020-01-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1006013 149 2020-01-22 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1006014 149 2020-01-23 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1006015 149 2020-01-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1006016 149 2020-01-25 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1006017 149 2020-01-26 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1006018 149 2020-01-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1008198 103 2019-12-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1008199 103 2019-12-31 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1008144 103 2020-01-01 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1008145 103 2020-01-02 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1008146 103 2020-01-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1008147 103 2020-01-04 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1008148 103 2020-01-05 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1008149 103 2020-01-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1008150 103 2020-01-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1008151 103 2020-01-08 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1008152 103 2020-01-09 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1008153 103 2020-01-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1008154 103 2020-01-11 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1008155 103 2020-01-12 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1008156 103 2020-01-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1008157 103 2020-01-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1008158 103 2020-01-15 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1008159 103 2020-01-16 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1008160 103 2020-01-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1008161 103 2020-01-18 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1008162 103 2020-01-19 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1008163 103 2020-01-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1008164 103 2020-01-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1008175 103 2020-02-01 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1008176 103 2020-02-02 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1008177 103 2020-02-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1008178 103 2020-02-04 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1008179 103 2020-02-05 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1008180 103 2020-02-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1008181 103 2020-02-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1008182 103 2020-02-08 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1008183 103 2020-02-09 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1008184 103 2020-02-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1008185 103 2020-02-11 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1008186 103 2020-02-12 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1008187 103 2020-02-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1008188 103 2020-02-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1008189 103 2020-02-15 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1008190 103 2020-02-16 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1008191 103 2020-02-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1008192 103 2020-02-18 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1008193 103 2020-02-19 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1008194 103 2020-02-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1008195 103 2020-02-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1008196 103 2020-02-22 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1008197 103 2020-02-23 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1010296 121 2020-01-01 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1010297 121 2020-01-02 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1010298 121 2020-01-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1010299 121 2020-01-04 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1010300 121 2020-01-05 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1010301 121 2020-01-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1010302 121 2020-01-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1010303 121 2020-01-08 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1010304 121 2020-01-09 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1010305 121 2020-01-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1010306 121 2020-01-11 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1010307 121 2020-01-12 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1010308 121 2020-01-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1010309 121 2020-01-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1010310 121 2020-01-15 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1010311 121 2020-01-16 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1012502 125 2019-12-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1012503 125 2019-12-31 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1012448 125 2020-01-01 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1012449 125 2020-01-02 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1012450 125 2020-01-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1012451 125 2020-01-04 \N \N \N \N \N 00:00:00 03:20:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1012452 125 2020-01-05 \N \N \N \N \N 00:00:00 03:20:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1012453 125 2020-01-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1012454 125 2020-01-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1012455 125 2020-01-08 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1012456 125 2020-01-09 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1012457 125 2020-01-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1012458 125 2020-01-11 \N \N \N \N \N 00:00:00 03:20:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1012459 125 2020-01-12 \N \N \N \N \N 00:00:00 03:20:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1012460 125 2020-01-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1012461 125 2020-01-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1012462 125 2020-01-15 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1012463 125 2020-01-16 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1012464 125 2020-01-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1012465 125 2020-01-18 \N \N \N \N \N 00:00:00 03:20:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1012466 125 2020-01-19 \N \N \N \N \N 00:00:00 03:20:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1012467 125 2020-01-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1012468 125 2020-01-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1012479 125 2020-02-01 \N \N \N \N \N 00:00:00 03:20:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1012480 125 2020-02-02 \N \N \N \N \N 00:00:00 03:20:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1012481 125 2020-02-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1012482 125 2020-02-04 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1012483 125 2020-02-05 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1012484 125 2020-02-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1012485 125 2020-02-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1012486 125 2020-02-08 \N \N \N \N \N 00:00:00 03:20:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1012487 125 2020-02-09 \N \N \N \N \N 00:00:00 03:20:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1012488 125 2020-02-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1012489 125 2020-02-11 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1012490 125 2020-02-12 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1012491 125 2020-02-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1012492 125 2020-02-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1012493 125 2020-02-15 \N \N \N \N \N 00:00:00 03:20:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1012494 125 2020-02-16 \N \N \N \N \N 00:00:00 03:20:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1012495 125 2020-02-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1012496 125 2020-02-18 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1012497 125 2020-02-19 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1012498 125 2020-02-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1012499 125 2020-02-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1012500 125 2020-02-22 \N \N \N \N \N 00:00:00 03:20:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1012501 125 2020-02-23 \N \N \N \N \N 00:00:00 03:20:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1014600 119 2020-01-01 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1014601 119 2020-01-02 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1014602 119 2020-01-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1014603 119 2020-01-04 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1014604 119 2020-01-05 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1014605 119 2020-01-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1014606 119 2020-01-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1014607 119 2020-01-08 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1014608 119 2020-01-09 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1014609 119 2020-01-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1014610 119 2020-01-11 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1014611 119 2020-01-12 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1016806 113 2019-12-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1016807 113 2019-12-31 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1016752 113 2020-01-01 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1016753 113 2020-01-02 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1016754 113 2020-01-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1016755 113 2020-01-04 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1016756 113 2020-01-05 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1016757 113 2020-01-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1016758 113 2020-01-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1016759 113 2020-01-08 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1016760 113 2020-01-09 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1016761 113 2020-01-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1016762 113 2020-01-11 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1016763 113 2020-01-12 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1016764 113 2020-01-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1016765 113 2020-01-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1016766 113 2020-01-15 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1016767 113 2020-01-16 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1016768 113 2020-01-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1016769 113 2020-01-18 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1016770 113 2020-01-19 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1016771 113 2020-01-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1016772 113 2020-01-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1016783 113 2020-02-01 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1016784 113 2020-02-02 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1016785 113 2020-02-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1016786 113 2020-02-04 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1016787 113 2020-02-05 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1016788 113 2020-02-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1016789 113 2020-02-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1016790 113 2020-02-08 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1016791 113 2020-02-09 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1016792 113 2020-02-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1016793 113 2020-02-11 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1016794 113 2020-02-12 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1016795 113 2020-02-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1016796 113 2020-02-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1016797 113 2020-02-15 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1016798 113 2020-02-16 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1016799 113 2020-02-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1016800 113 2020-02-18 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1016801 113 2020-02-19 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1016802 113 2020-02-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1016803 113 2020-02-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1016804 113 2020-02-22 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1016805 113 2020-02-23 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1018904 147 2020-01-01 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1018905 147 2020-01-02 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1018906 147 2020-01-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1018907 147 2020-01-04 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1018908 147 2020-01-05 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1018909 147 2020-01-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1018910 147 2020-01-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1018911 147 2020-01-08 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1018912 147 2020-01-09 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1018913 147 2020-01-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1018914 147 2020-01-11 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1018915 147 2020-01-12 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1018916 147 2020-01-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1018955 147 2020-02-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1018956 147 2020-02-22 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1018957 147 2020-02-23 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1021110 131 2019-12-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1021111 131 2019-12-31 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1021056 131 2020-01-01 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1021057 131 2020-01-02 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1021058 131 2020-01-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1021059 131 2020-01-04 \N \N \N \N \N 00:00:00 03:20:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1021060 131 2020-01-05 \N \N \N \N \N 00:00:00 03:20:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1021061 131 2020-01-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1021062 131 2020-01-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1021063 131 2020-01-08 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1021064 131 2020-01-09 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1021065 131 2020-01-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1021066 131 2020-01-11 \N \N \N \N \N 00:00:00 03:20:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1021067 131 2020-01-12 \N \N \N \N \N 00:00:00 03:20:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1021068 131 2020-01-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1021069 131 2020-01-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1021070 131 2020-01-15 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1021071 131 2020-01-16 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1021072 131 2020-01-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1021073 131 2020-01-18 \N \N \N \N \N 00:00:00 03:20:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1021074 131 2020-01-19 \N \N \N \N \N 00:00:00 03:20:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1021075 131 2020-01-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1021076 131 2020-01-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1021077 131 2020-01-22 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1021084 131 2020-01-29 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1021085 131 2020-01-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1021086 131 2020-01-31 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1021087 131 2020-02-01 \N \N \N \N \N 00:00:00 03:20:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1021088 131 2020-02-02 \N \N \N \N \N 00:00:00 03:20:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1021089 131 2020-02-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1021090 131 2020-02-04 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1021091 131 2020-02-05 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1021092 131 2020-02-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1021093 131 2020-02-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1021094 131 2020-02-08 \N \N \N \N \N 00:00:00 03:20:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1021095 131 2020-02-09 \N \N \N \N \N 00:00:00 03:20:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1021096 131 2020-02-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1021097 131 2020-02-11 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1021098 131 2020-02-12 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1021099 131 2020-02-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1021100 131 2020-02-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1021101 131 2020-02-15 \N \N \N \N \N 00:00:00 03:20:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1021102 131 2020-02-16 \N \N \N \N \N 00:00:00 03:20:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1021103 131 2020-02-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1021104 131 2020-02-18 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1021105 131 2020-02-19 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1021106 131 2020-02-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1023262 104 2019-12-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 05:00:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1023263 104 2019-12-31 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 05:00:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1023208 104 2020-01-01 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 05:00:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1023209 104 2020-01-02 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 05:00:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1023210 104 2020-01-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 05:00:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1023211 104 2020-01-04 \N \N \N \N \N 00:00:00 05:00:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1023212 104 2020-01-05 \N \N \N \N \N 00:00:00 05:00:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1023213 104 2020-01-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 05:00:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1023214 104 2020-01-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 05:00:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1023215 104 2020-01-08 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 05:00:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1023216 104 2020-01-09 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 05:00:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1023217 104 2020-01-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 05:00:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1023218 104 2020-01-11 \N \N \N \N \N 00:00:00 05:00:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1023219 104 2020-01-12 \N \N \N \N \N 00:00:00 05:00:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1023220 104 2020-01-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 05:00:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1023221 104 2020-01-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 05:00:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1023222 104 2020-01-15 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 05:00:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1023253 104 2020-02-15 \N \N \N \N \N 00:00:00 05:00:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1023254 104 2020-02-16 \N \N \N \N \N 00:00:00 05:00:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1023255 104 2020-02-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 05:00:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1023256 104 2020-02-18 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 05:00:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1023257 104 2020-02-19 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 05:00:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1023258 104 2020-02-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 05:00:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1023259 104 2020-02-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 05:00:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1023260 104 2020-02-22 \N \N \N \N \N 00:00:00 05:00:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1023261 104 2020-02-23 \N \N \N \N \N 00:00:00 05:00:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1025391 151 2020-02-01 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1025392 151 2020-02-02 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1025393 151 2020-02-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1025394 151 2020-02-04 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1025395 151 2020-02-05 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1025396 151 2020-02-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1025397 151 2020-02-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1025398 151 2020-02-08 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1025399 151 2020-02-09 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1025400 151 2020-02-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1025401 151 2020-02-11 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1025402 151 2020-02-12 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1025403 151 2020-02-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1025404 151 2020-02-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1025405 151 2020-02-15 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1025406 151 2020-02-16 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1025407 151 2020-02-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1025408 151 2020-02-18 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1025409 151 2020-02-19 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1025410 151 2020-02-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1025411 151 2020-02-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1025412 151 2020-02-22 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1025413 151 2020-02-23 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1027512 138 2020-01-01 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1027513 138 2020-01-02 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1027514 138 2020-01-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1027515 138 2020-01-04 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1027516 138 2020-01-05 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1027517 138 2020-01-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1027518 138 2020-01-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1027519 138 2020-01-08 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1027520 138 2020-01-09 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1027521 138 2020-01-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1027522 138 2020-01-11 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1027523 138 2020-01-12 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1027524 138 2020-01-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1027525 138 2020-01-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1027526 138 2020-01-15 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1027527 138 2020-01-16 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1027528 138 2020-01-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1027529 138 2020-01-18 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1027552 138 2020-02-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1027553 138 2020-02-11 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1027554 138 2020-02-12 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1027555 138 2020-02-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1027556 138 2020-02-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1027558 138 2020-02-16 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1027559 138 2020-02-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1027560 138 2020-02-18 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1027561 138 2020-02-19 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1027562 138 2020-02-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1027563 138 2020-02-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1027564 138 2020-02-22 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1027565 138 2020-02-23 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1029718 105 2019-12-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1029719 105 2019-12-31 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1029664 105 2020-01-01 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1029665 105 2020-01-02 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1029666 105 2020-01-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1029667 105 2020-01-04 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1029668 105 2020-01-05 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1029669 105 2020-01-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1029670 105 2020-01-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1029671 105 2020-01-08 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1029672 105 2020-01-09 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1029673 105 2020-01-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1029674 105 2020-01-11 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1029675 105 2020-01-12 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1029676 105 2020-01-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1029677 105 2020-01-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1029678 105 2020-01-15 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1029679 105 2020-01-16 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1029680 105 2020-01-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1029681 105 2020-01-18 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1029682 105 2020-01-19 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1029683 105 2020-01-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1029684 105 2020-01-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1029685 105 2020-01-22 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1029686 105 2020-01-23 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1029687 105 2020-01-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1029688 105 2020-01-25 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1029689 105 2020-01-26 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1029690 105 2020-01-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1029691 105 2020-01-28 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1029692 105 2020-01-29 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1029693 105 2020-01-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1029694 105 2020-01-31 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1029695 105 2020-02-01 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1029696 105 2020-02-02 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1029697 105 2020-02-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1029698 105 2020-02-04 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1029699 105 2020-02-05 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1031816 134 2020-01-01 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1031817 134 2020-01-02 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1031818 134 2020-01-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1031819 134 2020-01-04 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1031820 134 2020-01-05 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1031821 134 2020-01-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1031822 134 2020-01-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1031823 134 2020-01-08 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1031824 134 2020-01-09 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1031825 134 2020-01-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1031826 134 2020-01-11 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1031827 134 2020-01-12 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1031828 134 2020-01-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1031829 134 2020-01-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1031830 134 2020-01-15 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1031831 134 2020-01-16 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1031832 134 2020-01-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1031833 134 2020-01-18 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1031834 134 2020-01-19 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1031835 134 2020-01-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1031850 134 2020-02-04 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1031851 134 2020-02-05 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1031852 134 2020-02-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1031853 134 2020-02-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1031854 134 2020-02-08 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1031855 134 2020-02-09 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1031856 134 2020-02-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1031857 134 2020-02-11 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1031858 134 2020-02-12 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1031859 134 2020-02-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1031860 134 2020-02-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1031861 134 2020-02-15 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1031862 134 2020-02-16 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1031863 134 2020-02-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1031864 134 2020-02-18 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1031865 134 2020-02-19 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1031866 134 2020-02-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1031867 134 2020-02-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1031868 134 2020-02-22 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1031869 134 2020-02-23 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1033968 144 2020-01-01 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1033969 144 2020-01-02 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1033970 144 2020-01-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1033971 144 2020-01-04 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1033972 144 2020-01-05 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1033973 144 2020-01-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1033974 144 2020-01-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1033975 144 2020-01-08 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1033976 144 2020-01-09 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1033977 144 2020-01-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1033978 144 2020-01-11 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1033979 144 2020-01-12 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1033980 144 2020-01-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1033981 144 2020-01-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1033982 144 2020-01-15 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1033983 144 2020-01-16 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1033984 144 2020-01-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1033985 144 2020-01-18 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1033986 144 2020-01-19 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1033987 144 2020-01-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1033988 144 2020-01-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1033989 144 2020-01-22 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1033990 144 2020-01-23 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1033991 144 2020-01-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1033992 144 2020-01-25 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1033993 144 2020-01-26 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1033994 144 2020-01-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1036120 102 2020-01-01 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1036121 102 2020-01-02 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1036122 102 2020-01-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1036123 102 2020-01-04 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1036124 102 2020-01-05 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1036125 102 2020-01-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1036126 102 2020-01-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1036127 102 2020-01-08 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1036128 102 2020-01-09 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1036129 102 2020-01-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1036130 102 2020-01-11 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1036131 102 2020-01-12 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1036132 102 2020-01-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1036133 102 2020-01-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1036134 102 2020-01-15 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1036135 102 2020-01-16 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1036136 102 2020-01-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1036137 102 2020-01-18 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1036138 102 2020-01-19 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1036139 102 2020-01-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1036140 102 2020-01-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1036151 102 2020-02-01 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1036152 102 2020-02-02 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1036153 102 2020-02-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1036154 102 2020-02-04 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1036155 102 2020-02-05 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1036156 102 2020-02-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1036157 102 2020-02-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1036158 102 2020-02-08 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1036159 102 2020-02-09 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1036160 102 2020-02-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1036161 102 2020-02-11 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1036162 102 2020-02-12 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1036163 102 2020-02-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1036164 102 2020-02-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1036165 102 2020-02-15 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1036166 102 2020-02-16 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1036167 102 2020-02-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1036168 102 2020-02-18 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1036169 102 2020-02-19 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1036170 102 2020-02-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1036171 102 2020-02-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1036172 102 2020-02-22 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1036173 102 2020-02-23 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1038326 109 2019-12-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1038327 109 2019-12-31 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1038272 109 2020-01-01 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1038273 109 2020-01-02 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1038274 109 2020-01-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1038275 109 2020-01-04 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1038276 109 2020-01-05 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1038277 109 2020-01-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1038278 109 2020-01-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1038279 109 2020-01-08 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1038280 109 2020-01-09 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1038281 109 2020-01-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1038282 109 2020-01-11 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1038283 109 2020-01-12 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1038284 109 2020-01-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1038285 109 2020-01-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1038286 109 2020-01-15 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1038287 109 2020-01-16 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1040478 118 2019-12-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1040479 118 2019-12-31 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1040424 118 2020-01-01 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1040425 118 2020-01-02 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1040426 118 2020-01-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1040427 118 2020-01-04 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1040428 118 2020-01-05 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1040429 118 2020-01-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1040430 118 2020-01-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1040431 118 2020-01-08 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1040432 118 2020-01-09 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1040433 118 2020-01-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1040434 118 2020-01-11 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1040435 118 2020-01-12 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1040436 118 2020-01-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1040437 118 2020-01-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1040438 118 2020-01-15 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1040439 118 2020-01-16 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1040440 118 2020-01-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1040441 118 2020-01-18 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1040442 118 2020-01-19 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1040443 118 2020-01-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1040444 118 2020-01-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1040455 118 2020-02-01 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1040456 118 2020-02-02 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1040457 118 2020-02-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1040458 118 2020-02-04 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1040459 118 2020-02-05 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1040460 118 2020-02-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1040461 118 2020-02-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1040462 118 2020-02-08 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1040463 118 2020-02-09 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1040464 118 2020-02-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1040465 118 2020-02-11 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1040466 118 2020-02-12 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1040467 118 2020-02-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1040468 118 2020-02-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1040469 118 2020-02-15 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1040470 118 2020-02-16 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1040471 118 2020-02-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1040472 118 2020-02-18 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1040473 118 2020-02-19 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1040474 118 2020-02-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1040475 118 2020-02-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1040476 118 2020-02-22 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1040477 118 2020-02-23 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1042630 133 2019-12-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1042631 133 2019-12-31 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1042576 133 2020-01-01 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1042577 133 2020-01-02 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1042578 133 2020-01-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1042579 133 2020-01-04 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1042580 133 2020-01-05 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1042581 133 2020-01-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1042582 133 2020-01-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1042583 133 2020-01-08 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1042584 133 2020-01-09 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1042585 133 2020-01-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1042586 133 2020-01-11 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1042587 133 2020-01-12 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1044728 111 2020-01-01 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1044729 111 2020-01-02 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1044730 111 2020-01-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1044731 111 2020-01-04 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1044732 111 2020-01-05 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1044733 111 2020-01-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1044734 111 2020-01-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1044735 111 2020-01-08 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1044736 111 2020-01-09 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1044737 111 2020-01-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1044738 111 2020-01-11 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1044739 111 2020-01-12 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1044740 111 2020-01-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1044741 111 2020-01-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1044742 111 2020-01-15 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1044743 111 2020-01-16 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1044744 111 2020-01-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1044745 111 2020-01-18 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1044746 111 2020-01-19 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1044747 111 2020-01-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1044748 111 2020-01-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1044759 111 2020-02-01 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1044760 111 2020-02-02 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1044761 111 2020-02-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1044762 111 2020-02-04 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1044763 111 2020-02-05 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1044764 111 2020-02-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1044765 111 2020-02-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1044766 111 2020-02-08 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1044767 111 2020-02-09 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1044768 111 2020-02-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1044769 111 2020-02-11 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1044770 111 2020-02-12 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1044771 111 2020-02-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1044772 111 2020-02-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1044773 111 2020-02-15 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1044774 111 2020-02-16 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1044775 111 2020-02-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1044776 111 2020-02-18 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1044777 111 2020-02-19 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1044778 111 2020-02-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1044779 111 2020-02-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1044780 111 2020-02-22 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1044781 111 2020-02-23 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1046880 128 2020-01-01 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1046881 128 2020-01-02 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1046882 128 2020-01-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1046883 128 2020-01-04 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1046884 128 2020-01-05 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1046885 128 2020-01-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1046886 128 2020-01-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1046887 128 2020-01-08 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1046888 128 2020-01-09 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1046889 128 2020-01-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1046890 128 2020-01-11 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1046891 128 2020-01-12 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1046892 128 2020-01-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1046931 128 2020-02-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1046932 128 2020-02-22 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1046933 128 2020-02-23 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1049086 142 2019-12-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1049087 142 2019-12-31 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1049032 142 2020-01-01 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1049033 142 2020-01-02 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1049034 142 2020-01-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1049035 142 2020-01-04 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1049036 142 2020-01-05 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1049037 142 2020-01-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1049038 142 2020-01-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1049039 142 2020-01-08 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1049040 142 2020-01-09 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1049041 142 2020-01-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1049042 142 2020-01-11 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1049043 142 2020-01-12 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1049044 142 2020-01-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1049045 142 2020-01-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1049046 142 2020-01-15 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1049047 142 2020-01-16 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1049048 142 2020-01-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1049049 142 2020-01-18 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1049050 142 2020-01-19 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1049051 142 2020-01-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1049052 142 2020-01-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1049053 142 2020-01-22 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1049060 142 2020-01-29 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1049061 142 2020-01-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1049062 142 2020-01-31 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1049063 142 2020-02-01 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1049064 142 2020-02-02 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1049065 142 2020-02-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1049066 142 2020-02-04 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1049067 142 2020-02-05 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1049068 142 2020-02-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1049069 142 2020-02-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1049070 142 2020-02-08 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1049071 142 2020-02-09 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1049072 142 2020-02-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1049073 142 2020-02-11 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1049074 142 2020-02-12 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1049075 142 2020-02-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1049076 142 2020-02-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1049077 142 2020-02-15 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1049078 142 2020-02-16 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1049079 142 2020-02-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1049080 142 2020-02-18 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1049081 142 2020-02-19 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1049082 142 2020-02-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1051238 136 2019-12-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1051239 136 2019-12-31 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1051184 136 2020-01-01 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1051185 136 2020-01-02 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1051186 136 2020-01-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1051187 136 2020-01-04 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1051188 136 2020-01-05 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1051189 136 2020-01-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1051190 136 2020-01-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1051191 136 2020-01-08 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1051192 136 2020-01-09 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1051193 136 2020-01-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1051194 136 2020-01-11 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1051195 136 2020-01-12 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1051196 136 2020-01-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1051197 136 2020-01-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1051198 136 2020-01-15 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1051229 136 2020-02-15 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1051230 136 2020-02-16 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1051231 136 2020-02-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1051232 136 2020-02-18 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1051233 136 2020-02-19 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1051234 136 2020-02-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1051235 136 2020-02-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1051236 136 2020-02-22 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1051237 136 2020-02-23 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1053336 140 2020-01-01 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1053337 140 2020-01-02 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1053338 140 2020-01-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1053339 140 2020-01-04 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1053340 140 2020-01-05 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1053341 140 2020-01-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1053342 140 2020-01-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1053343 140 2020-01-08 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1053344 140 2020-01-09 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1053345 140 2020-01-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1053346 140 2020-01-11 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1053347 140 2020-01-12 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1053348 140 2020-01-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1053349 140 2020-01-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1053350 140 2020-01-15 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1053351 140 2020-01-16 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1053352 140 2020-01-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1053353 140 2020-01-18 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1053354 140 2020-01-19 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1053355 140 2020-01-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1053356 140 2020-01-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1053357 140 2020-01-22 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1053358 140 2020-01-23 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1053359 140 2020-01-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1053360 140 2020-01-25 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1053361 140 2020-01-26 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1053362 140 2020-01-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1053363 140 2020-01-28 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1053364 140 2020-01-29 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1053365 140 2020-01-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1053366 140 2020-01-31 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1055488 139 2020-01-01 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1055489 139 2020-01-02 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1055490 139 2020-01-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1055491 139 2020-01-04 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1055492 139 2020-01-05 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1055493 139 2020-01-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1055494 139 2020-01-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1055495 139 2020-01-08 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1055496 139 2020-01-09 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1055497 139 2020-01-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1055498 139 2020-01-11 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1055499 139 2020-01-12 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1055500 139 2020-01-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1055501 139 2020-01-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1055502 139 2020-01-15 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1055503 139 2020-01-16 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1055504 139 2020-01-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1055505 139 2020-01-18 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1055528 139 2020-02-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1055529 139 2020-02-11 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1055530 139 2020-02-12 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1055531 139 2020-02-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1055532 139 2020-02-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1055534 139 2020-02-16 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1055535 139 2020-02-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1055536 139 2020-02-18 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1055537 139 2020-02-19 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1055538 139 2020-02-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1055539 139 2020-02-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1055540 139 2020-02-22 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1055541 139 2020-02-23 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1057640 141 2020-01-01 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1057641 141 2020-01-02 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1057642 141 2020-01-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1057643 141 2020-01-04 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1057644 141 2020-01-05 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1057645 141 2020-01-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1057646 141 2020-01-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1057647 141 2020-01-08 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1057648 141 2020-01-09 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1057649 141 2020-01-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1057650 141 2020-01-11 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1057651 141 2020-01-12 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1057652 141 2020-01-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1057653 141 2020-01-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1057654 141 2020-01-15 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1057655 141 2020-01-16 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1057656 141 2020-01-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1057657 141 2020-01-18 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1057658 141 2020-01-19 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1057659 141 2020-01-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1057660 141 2020-01-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1057661 141 2020-01-22 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1057662 141 2020-01-23 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1057663 141 2020-01-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1057664 141 2020-01-25 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1057665 141 2020-01-26 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1057666 141 2020-01-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1057667 141 2020-01-28 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1057668 141 2020-01-29 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1057669 141 2020-01-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1057670 141 2020-01-31 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1057671 141 2020-02-01 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1057672 141 2020-02-02 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1057673 141 2020-02-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1057674 141 2020-02-04 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1057675 141 2020-02-05 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1059846 122 2019-12-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1059847 122 2019-12-31 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1059792 122 2020-01-01 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1059793 122 2020-01-02 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1059794 122 2020-01-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1059795 122 2020-01-04 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1059796 122 2020-01-05 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1059797 122 2020-01-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1059798 122 2020-01-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1059799 122 2020-01-08 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1059800 122 2020-01-09 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1059801 122 2020-01-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1059802 122 2020-01-11 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1059803 122 2020-01-12 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1059804 122 2020-01-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1059805 122 2020-01-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1059806 122 2020-01-15 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1059807 122 2020-01-16 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1059808 122 2020-01-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1059809 122 2020-01-18 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1059810 122 2020-01-19 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1059811 122 2020-01-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1059826 122 2020-02-04 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1059827 122 2020-02-05 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1059828 122 2020-02-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1059829 122 2020-02-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1059830 122 2020-02-08 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1059831 122 2020-02-09 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1059832 122 2020-02-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1059833 122 2020-02-11 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1059834 122 2020-02-12 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1059835 122 2020-02-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1059836 122 2020-02-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1059837 122 2020-02-15 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1059838 122 2020-02-16 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1059839 122 2020-02-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1059840 122 2020-02-18 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1059841 122 2020-02-19 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1059842 122 2020-02-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1059843 122 2020-02-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1059844 122 2020-02-22 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1059845 122 2020-02-23 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1061998 106 2019-12-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 02:05:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1061999 106 2019-12-31 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 02:05:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1061944 106 2020-01-01 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 02:05:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1061945 106 2020-01-02 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 02:05:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1061946 106 2020-01-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 02:05:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1061947 106 2020-01-04 \N \N \N \N \N 00:00:00 02:05:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1061948 106 2020-01-05 \N \N \N \N \N 00:00:00 02:05:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1061949 106 2020-01-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 02:05:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1061950 106 2020-01-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 02:05:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1061951 106 2020-01-08 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 02:05:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1061952 106 2020-01-09 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 02:05:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1061953 106 2020-01-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 02:05:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1061954 106 2020-01-11 \N \N \N \N \N 00:00:00 02:05:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1061955 106 2020-01-12 \N \N \N \N \N 00:00:00 02:05:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1061956 106 2020-01-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 02:05:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1061957 106 2020-01-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 02:05:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1061958 106 2020-01-15 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 02:05:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1061959 106 2020-01-16 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 02:05:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1061960 106 2020-01-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 02:05:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1061961 106 2020-01-18 \N \N \N \N \N 00:00:00 02:05:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1061962 106 2020-01-19 \N \N \N \N \N 00:00:00 02:05:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1061963 106 2020-01-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 02:05:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1061964 106 2020-01-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 02:05:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1061965 106 2020-01-22 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 02:05:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1061966 106 2020-01-23 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 02:05:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1061967 106 2020-01-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 02:05:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1061968 106 2020-01-25 \N \N \N \N \N 00:00:00 02:05:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1061969 106 2020-01-26 \N \N \N \N \N 00:00:00 02:05:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1061970 106 2020-01-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 02:05:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1064096 110 2020-01-01 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1064097 110 2020-01-02 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1064098 110 2020-01-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1064099 110 2020-01-04 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1064100 110 2020-01-05 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1064101 110 2020-01-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1064102 110 2020-01-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1064103 110 2020-01-08 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1064104 110 2020-01-09 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1064105 110 2020-01-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1064106 110 2020-01-11 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1064107 110 2020-01-12 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1064108 110 2020-01-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1064109 110 2020-01-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1064110 110 2020-01-15 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1064111 110 2020-01-16 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1064112 110 2020-01-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1064113 110 2020-01-18 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1064114 110 2020-01-19 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1064115 110 2020-01-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1064116 110 2020-01-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1064127 110 2020-02-01 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1064128 110 2020-02-02 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1064129 110 2020-02-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1064130 110 2020-02-04 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1064131 110 2020-02-05 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1064132 110 2020-02-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1064133 110 2020-02-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1064134 110 2020-02-08 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1064135 110 2020-02-09 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1064136 110 2020-02-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1064137 110 2020-02-11 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1064138 110 2020-02-12 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1064139 110 2020-02-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1064140 110 2020-02-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1064141 110 2020-02-15 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1064142 110 2020-02-16 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1064143 110 2020-02-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1064144 110 2020-02-18 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1064145 110 2020-02-19 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1064146 110 2020-02-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1064147 110 2020-02-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1064148 110 2020-02-22 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1064149 110 2020-02-23 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1066248 145 2020-01-01 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1066249 145 2020-01-02 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1066250 145 2020-01-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1066251 145 2020-01-04 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1066252 145 2020-01-05 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1066253 145 2020-01-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1066254 145 2020-01-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1066255 145 2020-01-08 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1066256 145 2020-01-09 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1066257 145 2020-01-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1066258 145 2020-01-11 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1066259 145 2020-01-12 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1066260 145 2020-01-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1066261 145 2020-01-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1066262 145 2020-01-15 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1066263 145 2020-01-16 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1068400 148 2020-01-01 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1068401 148 2020-01-02 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1068402 148 2020-01-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1068403 148 2020-01-04 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1068404 148 2020-01-05 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1068405 148 2020-01-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1068406 148 2020-01-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1068407 148 2020-01-08 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1068408 148 2020-01-09 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1068409 148 2020-01-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1068410 148 2020-01-11 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1068411 148 2020-01-12 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1068412 148 2020-01-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1068413 148 2020-01-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1068414 148 2020-01-15 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1068415 148 2020-01-16 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1068416 148 2020-01-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1068417 148 2020-01-18 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1068418 148 2020-01-19 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1068419 148 2020-01-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1068420 148 2020-01-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1068431 148 2020-02-01 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1068432 148 2020-02-02 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1068433 148 2020-02-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1068434 148 2020-02-04 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1068435 148 2020-02-05 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1068436 148 2020-02-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1068437 148 2020-02-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1068438 148 2020-02-08 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1068439 148 2020-02-09 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1068440 148 2020-02-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1068441 148 2020-02-11 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1068442 148 2020-02-12 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1068443 148 2020-02-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1068444 148 2020-02-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1068445 148 2020-02-15 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1068446 148 2020-02-16 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1068447 148 2020-02-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1068448 148 2020-02-18 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1068449 148 2020-02-19 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1068450 148 2020-02-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1068451 148 2020-02-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1068452 148 2020-02-22 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1068453 148 2020-02-23 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1070606 130 2019-12-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1070607 130 2019-12-31 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1070552 130 2020-01-01 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1070553 130 2020-01-02 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1070554 130 2020-01-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1070555 130 2020-01-04 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1070556 130 2020-01-05 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1070557 130 2020-01-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1070558 130 2020-01-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1070559 130 2020-01-08 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1070560 130 2020-01-09 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1070561 130 2020-01-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1070562 130 2020-01-11 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1070563 130 2020-01-12 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -914518 129 2019-12-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -914519 129 2019-12-31 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -914464 129 2020-01-01 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -914465 129 2020-01-02 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -914466 129 2020-01-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -914467 129 2020-01-04 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -914468 129 2020-01-05 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -914469 129 2020-01-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -914470 129 2020-01-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -914471 129 2020-01-08 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -914472 129 2020-01-09 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -914473 129 2020-01-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -914474 129 2020-01-11 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -914475 129 2020-01-12 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -914476 129 2020-01-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -914477 129 2020-01-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -914478 129 2020-01-15 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -914481 129 2020-01-18 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -914479 129 2020-01-16 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -914480 129 2020-01-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -914482 129 2020-01-19 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -914483 129 2020-01-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -914484 129 2020-01-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -914485 129 2020-01-22 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -914486 129 2020-01-23 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -914487 129 2020-01-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -914488 129 2020-01-25 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -914489 129 2020-01-26 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -914517 129 2020-02-23 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1074856 143 2020-01-01 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1074857 143 2020-01-02 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1074858 143 2020-01-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1074859 143 2020-01-04 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1074860 143 2020-01-05 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1074861 143 2020-01-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1074862 143 2020-01-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1074863 143 2020-01-08 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1074864 143 2020-01-09 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1074865 143 2020-01-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1074866 143 2020-01-11 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1074867 143 2020-01-12 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1074868 143 2020-01-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1074869 143 2020-01-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1074870 143 2020-01-15 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1074871 143 2020-01-16 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1074872 143 2020-01-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1074873 143 2020-01-18 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1074874 143 2020-01-19 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1074875 143 2020-01-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1074876 143 2020-01-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1074887 143 2020-02-01 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1074888 143 2020-02-02 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1074889 143 2020-02-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1074890 143 2020-02-04 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1074891 143 2020-02-05 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1074892 143 2020-02-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1074893 143 2020-02-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1074894 143 2020-02-08 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1074895 143 2020-02-09 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1074896 143 2020-02-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1074897 143 2020-02-11 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1074898 143 2020-02-12 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1074899 143 2020-02-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1074900 143 2020-02-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1074901 143 2020-02-15 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1074902 143 2020-02-16 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1074903 143 2020-02-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1074904 143 2020-02-18 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1074905 143 2020-02-19 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1074906 143 2020-02-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1074907 143 2020-02-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1074908 143 2020-02-22 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1074909 143 2020-02-23 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +COPY portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) FROM stdin; +1115017 116 2020-01-01 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1115018 116 2020-01-02 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1115019 116 2020-01-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1115020 116 2020-01-04 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +1115021 116 2020-01-05 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1115022 116 2020-01-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1115023 116 2020-01-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1115024 116 2020-01-08 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1115025 116 2020-01-09 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1115026 116 2020-01-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1115027 116 2020-01-11 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +1115028 116 2020-01-12 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1115029 116 2020-01-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1115030 116 2020-01-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1115031 116 2020-01-15 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1115032 116 2020-01-16 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1115066 116 2020-02-19 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1029699 105 2020-02-05 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1031834 134 2020-01-19 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1115033 116 2020-01-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1115034 116 2020-01-18 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +1115035 116 2020-01-19 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1115036 116 2020-01-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1115037 116 2020-01-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1115038 116 2020-01-22 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1115039 116 2020-01-23 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1115040 116 2020-01-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1115041 116 2020-01-25 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +1115042 116 2020-01-26 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1115043 116 2020-01-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1115044 116 2020-01-28 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1115045 116 2020-01-29 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1115046 116 2020-01-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1115047 116 2020-01-31 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1115048 116 2020-02-01 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +1031868 134 2020-02-22 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +1036138 102 2020-01-19 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1040442 118 2020-01-19 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1057680 141 2020-02-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1059810 122 2020-01-19 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1115049 116 2020-02-02 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1115050 116 2020-02-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1115051 116 2020-02-04 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1115052 116 2020-02-05 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1115053 116 2020-02-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1115054 116 2020-02-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1115055 116 2020-02-08 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +1115056 116 2020-02-09 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1115057 116 2020-02-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1115058 116 2020-02-11 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1115059 116 2020-02-12 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1115060 116 2020-02-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1115061 116 2020-02-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1115062 116 2020-02-15 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +1115063 116 2020-02-16 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1115064 116 2020-02-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1115065 116 2020-02-18 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1066296 145 2020-02-18 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1084022 121 2020-06-01 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1084113 125 2020-05-22 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 03:20:00 +1115067 116 2020-02-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1115068 116 2020-02-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1115069 116 2020-02-22 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +1115070 116 2020-02-23 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +988797 146 2020-01-22 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +995267 114 2020-02-05 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +999559 108 2020-01-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +999574 108 2020-02-08 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +1001723 135 2020-02-05 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1003858 127 2020-01-19 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1003892 127 2020-02-22 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +1006021 149 2020-01-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1006022 149 2020-01-31 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1006023 149 2020-02-01 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +1006024 149 2020-02-02 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1006025 149 2020-02-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1006026 149 2020-02-04 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1008162 103 2020-01-19 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1010313 121 2020-01-18 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +1042623 133 2020-02-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1042624 133 2020-02-18 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1042625 133 2020-02-19 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1042626 133 2020-02-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1042627 133 2020-02-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1042628 133 2020-02-22 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +1042629 133 2020-02-23 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1044746 111 2020-01-19 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1044747 111 2020-01-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1044748 111 2020-01-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1044749 111 2020-01-22 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1044750 111 2020-01-23 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1044751 111 2020-01-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1044752 111 2020-01-25 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +1044753 111 2020-01-26 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1044754 111 2020-01-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1044777 111 2020-02-19 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1084114 125 2020-05-23 \N \N \N \N \N 00:00:00 03:20:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 03:20:00 +1084177 119 2020-05-30 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +1008170 103 2020-01-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1044778 111 2020-02-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1044779 111 2020-02-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1044780 111 2020-02-22 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +1044781 111 2020-02-23 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1046893 128 2020-01-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1046908 128 2020-01-29 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1046909 128 2020-01-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1046910 128 2020-01-31 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1046911 128 2020-02-01 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +1046912 128 2020-02-02 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1046913 128 2020-02-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1046914 128 2020-02-04 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1046915 128 2020-02-05 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1046916 128 2020-02-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1046917 128 2020-02-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1046918 128 2020-02-08 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +1084221 113 2020-05-18 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1084250 147 2020-04-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1084374 104 2020-05-03 \N \N \N \N \N 00:00:00 06:00:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1014635 119 2020-02-05 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1046919 128 2020-02-09 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1046920 128 2020-02-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1046921 128 2020-02-11 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1046922 128 2020-02-12 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1049056 142 2020-01-25 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +1049057 142 2020-01-26 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1049058 142 2020-01-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1049059 142 2020-01-28 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1049077 142 2020-02-15 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +1049078 142 2020-02-16 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1049079 142 2020-02-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1049080 142 2020-02-18 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1049081 142 2020-02-19 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1049082 142 2020-02-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1049083 142 2020-02-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1049084 142 2020-02-22 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +1049085 142 2020-02-23 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1084402 104 2020-05-31 \N \N \N \N \N 00:00:00 06:00:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1008173 103 2020-01-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1051199 136 2020-01-16 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1051200 136 2020-01-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1051201 136 2020-01-18 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +1051202 136 2020-01-19 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1051217 136 2020-02-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1051218 136 2020-02-04 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1051219 136 2020-02-05 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1051220 136 2020-02-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1051221 136 2020-02-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1051222 136 2020-02-08 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +1051223 136 2020-02-09 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1051224 136 2020-02-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1051225 136 2020-02-11 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1051226 136 2020-02-12 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1051227 136 2020-02-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1051228 136 2020-02-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1084403 104 2020-06-01 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:00:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:00:00 +1084463 151 2020-06-05 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1084490 138 2020-05-07 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1021082 131 2020-01-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 04:00:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 04:00:00 +1053354 140 2020-01-19 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1053355 140 2020-01-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1053356 140 2020-01-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1055520 139 2020-02-02 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1055521 139 2020-02-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1055522 139 2020-02-04 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1055523 139 2020-02-05 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1055524 139 2020-02-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1055525 139 2020-02-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1055526 139 2020-02-08 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +1055527 139 2020-02-09 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1055533 139 2020-02-15 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +1057675 141 2020-02-05 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1057676 141 2020-02-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1057677 141 2020-02-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1057678 141 2020-02-08 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +1057679 141 2020-02-09 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1027531 138 2020-01-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1059812 122 2020-01-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1059813 122 2020-01-22 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1059814 122 2020-01-23 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1059815 122 2020-01-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1059816 122 2020-01-25 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +1059817 122 2020-01-26 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1059818 122 2020-01-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1059819 122 2020-01-28 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1059820 122 2020-01-29 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1059821 122 2020-01-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1059822 122 2020-01-31 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1059823 122 2020-02-01 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +1059824 122 2020-02-02 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1059825 122 2020-02-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1059844 122 2020-02-22 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +1059845 122 2020-02-23 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1061971 106 2020-01-28 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 04:10:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 04:10:00 +1084497 138 2020-05-14 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1084528 138 2020-06-14 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1029714 105 2020-02-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1061972 106 2020-01-29 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 04:10:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 04:10:00 +1061987 106 2020-02-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 04:10:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 04:10:00 +1061988 106 2020-02-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 04:10:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 \N +1061989 106 2020-02-15 \N \N \N \N \N 00:00:00 04:10:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1061990 106 2020-02-16 \N \N \N \N \N 00:00:00 04:10:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1061991 106 2020-02-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 04:10:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 04:10:00 +1061992 106 2020-02-18 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 04:10:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 04:10:00 +1061993 106 2020-02-19 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 04:10:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 04:10:00 +1061994 106 2020-02-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 04:10:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 04:10:00 +1061995 106 2020-02-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 04:10:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 \N +1061996 106 2020-02-22 \N \N \N \N \N 00:00:00 04:10:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1061997 106 2020-02-23 \N \N \N \N \N 00:00:00 04:10:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1064114 110 2020-01-19 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1064115 110 2020-01-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1064116 110 2020-01-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1064117 110 2020-01-22 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1064118 110 2020-01-23 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1084610 134 2020-05-15 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1034012 144 2020-02-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1066265 145 2020-01-18 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +1066266 145 2020-01-19 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1066267 145 2020-01-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1066268 145 2020-01-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1066269 145 2020-01-22 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1066270 145 2020-01-23 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1066271 145 2020-01-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1066272 145 2020-01-25 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +1066273 145 2020-01-26 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1066274 145 2020-01-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1066275 145 2020-01-28 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1066276 145 2020-01-29 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1066277 145 2020-01-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1066278 145 2020-01-31 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1066279 145 2020-02-01 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +1066280 145 2020-02-02 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1066295 145 2020-02-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1066297 145 2020-02-19 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1066298 145 2020-02-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1066299 145 2020-02-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1066300 145 2020-02-22 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +1066301 145 2020-02-23 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1068418 148 2020-01-19 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1068419 148 2020-01-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1068420 148 2020-01-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1068421 148 2020-01-22 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1068422 148 2020-01-23 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1068423 148 2020-01-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1068424 148 2020-01-25 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +1068425 148 2020-01-26 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1068426 148 2020-01-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1070568 130 2020-01-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1070569 130 2020-01-18 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +1070570 130 2020-01-19 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1070571 130 2020-01-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1084634 134 2020-06-08 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1084635 134 2020-06-09 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1070572 130 2020-01-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1070573 130 2020-01-22 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1070574 130 2020-01-23 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1070575 130 2020-01-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1070576 130 2020-01-25 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +1070577 130 2020-01-26 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1070578 130 2020-01-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1070579 130 2020-01-28 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1070580 130 2020-01-29 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1070581 130 2020-01-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1070582 130 2020-01-31 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1070583 130 2020-02-01 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +1070584 130 2020-02-02 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1070599 130 2020-02-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1070600 130 2020-02-18 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1070601 130 2020-02-19 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1070602 130 2020-02-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1070603 130 2020-02-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1070604 130 2020-02-22 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +1070605 130 2020-02-23 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +914490 129 2020-01-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +914491 129 2020-01-28 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +914492 129 2020-01-29 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +914493 129 2020-01-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +914494 129 2020-01-31 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +914495 129 2020-02-01 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +914496 129 2020-02-02 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +914497 129 2020-02-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +914512 129 2020-02-18 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +914513 129 2020-02-19 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +914514 129 2020-02-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +914515 129 2020-02-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +914516 129 2020-02-22 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +1074874 143 2020-01-19 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1074875 143 2020-01-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1074876 143 2020-01-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1084732 109 2020-05-25 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1074877 143 2020-01-22 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1074878 143 2020-01-23 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1074879 143 2020-01-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1074880 143 2020-01-25 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +1074881 143 2020-01-26 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1074882 143 2020-01-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1074883 143 2020-01-28 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1117223 116 2020-02-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1117224 116 2020-02-25 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1117225 116 2020-02-26 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1117226 116 2020-02-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1117227 116 2020-02-28 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079166 146 2020-03-01 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1079167 146 2020-03-02 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079168 146 2020-03-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079169 146 2020-03-04 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079170 146 2020-03-05 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1084733 109 2020-05-26 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1084868 111 2020-04-23 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1079171 146 2020-03-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079172 146 2020-03-07 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1079173 146 2020-03-08 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1079174 146 2020-03-09 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079175 146 2020-03-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079176 146 2020-03-11 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079177 146 2020-03-12 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079178 146 2020-03-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079179 146 2020-03-14 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1079180 146 2020-03-15 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1079181 146 2020-03-16 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079196 146 2020-03-31 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079197 146 2020-04-01 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079198 146 2020-04-02 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079199 146 2020-04-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079200 146 2020-04-04 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1079201 146 2020-04-05 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1079202 146 2020-04-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1085072 136 2020-05-29 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1079203 146 2020-04-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079204 146 2020-04-08 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079205 146 2020-04-09 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079206 146 2020-04-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079207 146 2020-04-11 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1079208 146 2020-04-12 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1079209 146 2020-04-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079210 146 2020-04-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079225 115 2020-03-04 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079226 115 2020-03-05 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079227 115 2020-03-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079228 115 2020-03-07 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1079229 115 2020-03-08 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1079230 115 2020-03-09 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079231 115 2020-03-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079232 115 2020-03-11 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079233 115 2020-03-12 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079234 115 2020-03-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1008197 103 2020-02-23 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1079235 115 2020-03-14 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1079236 115 2020-03-15 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1079237 115 2020-03-16 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079238 115 2020-03-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079239 115 2020-03-18 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079254 115 2020-04-02 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079255 115 2020-04-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079256 115 2020-04-04 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1079257 115 2020-04-05 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1079258 115 2020-04-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079259 115 2020-04-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079260 115 2020-04-08 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079261 115 2020-04-09 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079262 115 2020-04-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079263 115 2020-04-11 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1079264 115 2020-04-12 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1079265 115 2020-04-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1085110 139 2020-05-11 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085139 139 2020-06-09 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085158 141 2020-05-03 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +988778 146 2020-01-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1079266 115 2020-04-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079267 115 2020-04-15 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079268 115 2020-04-16 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079283 114 2020-03-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079284 114 2020-03-07 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1079285 114 2020-03-08 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1079286 114 2020-03-09 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079287 114 2020-03-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079288 114 2020-03-11 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079289 114 2020-03-12 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079290 114 2020-03-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079291 114 2020-03-14 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1079292 114 2020-03-15 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1079293 114 2020-03-16 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079502 127 2020-03-01 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1083766 135 2020-04-30 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085167 141 2020-05-12 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085198 141 2020-06-12 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085252 122 2020-06-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1085302 106 2020-06-04 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 04:10:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 04:10:00 +988779 146 2020-01-04 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +1079294 114 2020-03-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079295 114 2020-03-18 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079296 114 2020-03-19 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079297 114 2020-03-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079312 114 2020-04-04 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1079313 114 2020-04-05 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1079314 114 2020-04-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079315 114 2020-04-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079316 114 2020-04-08 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079317 114 2020-04-09 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079318 114 2020-04-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079319 114 2020-04-11 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1079320 114 2020-04-12 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1079321 114 2020-04-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1084019 121 2020-05-29 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1084020 121 2020-05-30 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +1084021 121 2020-05-31 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1085304 106 2020-06-06 \N \N \N \N \N 00:00:00 04:10:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +988780 146 2020-01-05 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +988781 146 2020-01-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1079322 114 2020-04-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079323 114 2020-04-15 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079324 114 2020-04-16 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079325 114 2020-04-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079326 114 2020-04-18 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1079327 114 2020-04-19 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1079342 112 2020-03-09 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079343 112 2020-03-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079344 112 2020-03-11 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079345 112 2020-03-12 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079346 112 2020-03-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079347 112 2020-03-14 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1084023 121 2020-06-02 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1084024 121 2020-06-03 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1084025 121 2020-06-04 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1084030 121 2020-06-09 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +988782 146 2020-01-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +988783 146 2020-01-08 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1079348 112 2020-03-15 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1079349 112 2020-03-16 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079350 112 2020-03-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079351 112 2020-03-18 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079352 112 2020-03-19 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079353 112 2020-03-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079354 112 2020-03-21 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1079355 112 2020-03-22 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1079356 112 2020-03-23 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079371 112 2020-04-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079372 112 2020-04-08 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079373 112 2020-04-09 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1084031 121 2020-06-10 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1084047 117 2020-05-12 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1084048 117 2020-05-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1085311 106 2020-06-13 \N \N \N \N \N 00:00:00 04:10:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +988784 146 2020-01-09 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +988785 146 2020-01-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +988786 146 2020-01-11 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +988787 146 2020-01-12 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1079374 112 2020-04-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079375 112 2020-04-11 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1079376 112 2020-04-12 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1079377 112 2020-04-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079378 112 2020-04-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079379 112 2020-04-15 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079380 112 2020-04-16 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079381 112 2020-04-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079382 112 2020-04-18 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1079383 112 2020-04-19 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1079384 108 2020-02-24 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1079385 108 2020-02-25 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1084053 117 2020-05-18 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1084054 117 2020-05-19 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1085312 106 2020-06-14 \N \N \N \N \N 00:00:00 04:10:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1085333 110 2020-05-10 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +988776 146 2020-01-01 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +988777 146 2020-01-02 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1079398 108 2020-03-09 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1079399 108 2020-03-10 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1079400 108 2020-03-11 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1079401 108 2020-03-12 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1079402 108 2020-03-13 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1079403 108 2020-03-14 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1079404 108 2020-03-15 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1079405 108 2020-03-16 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1079406 108 2020-03-17 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1079407 108 2020-03-18 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1079408 108 2020-03-19 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1084055 117 2020-05-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1084060 117 2020-05-25 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1084075 117 2020-06-09 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1084076 117 2020-06-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1085334 110 2020-05-11 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +988788 146 2020-01-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +988789 146 2020-01-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1079409 108 2020-03-20 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1079410 108 2020-03-21 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1079411 108 2020-03-22 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1079412 108 2020-03-23 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1079427 108 2020-04-07 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1079428 108 2020-04-08 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1079429 108 2020-04-09 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1079430 108 2020-04-10 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1079431 108 2020-04-11 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1079432 108 2020-04-12 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1079433 108 2020-04-13 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1079434 108 2020-04-14 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1079435 108 2020-04-15 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1084077 117 2020-06-11 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1084078 117 2020-06-12 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1084082 125 2020-04-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 03:20:00 +988790 146 2020-01-15 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +988791 146 2020-01-16 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +988792 146 2020-01-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1079436 108 2020-04-16 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1079437 108 2020-04-17 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1079438 108 2020-04-18 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1079439 108 2020-04-19 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1079440 135 2020-02-24 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1079441 135 2020-02-25 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1079442 135 2020-02-26 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1079457 135 2020-03-12 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1079458 135 2020-03-13 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1079459 135 2020-03-14 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1079460 135 2020-03-15 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1079461 135 2020-03-16 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1084083 125 2020-04-22 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 03:20:00 +1084084 125 2020-04-23 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 03:20:00 +1085335 110 2020-05-12 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1085361 110 2020-06-07 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +988793 146 2020-01-18 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +988794 146 2020-01-19 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +988795 146 2020-01-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +988796 146 2020-01-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1079462 135 2020-03-17 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1079463 135 2020-03-18 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1079464 135 2020-03-19 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1079465 135 2020-03-20 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1079466 135 2020-03-21 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1079467 135 2020-03-22 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1079468 135 2020-03-23 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1079469 135 2020-03-24 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1079470 135 2020-03-25 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1079471 135 2020-03-26 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1079486 135 2020-04-10 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1084089 125 2020-04-28 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 03:20:00 +1084104 125 2020-05-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 03:20:00 +1084105 125 2020-05-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 03:20:00 +988798 146 2020-01-23 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +988799 146 2020-01-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +988800 146 2020-01-25 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +988801 146 2020-01-26 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1079487 135 2020-04-11 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1079488 135 2020-04-12 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1079489 135 2020-04-13 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1079490 135 2020-04-14 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1079491 135 2020-04-15 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1079492 135 2020-04-16 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1079493 135 2020-04-17 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1079494 135 2020-04-18 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1079495 135 2020-04-19 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1079496 127 2020-02-24 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1079497 127 2020-02-25 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1084106 125 2020-05-15 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 03:20:00 +1084107 125 2020-05-16 \N \N \N \N \N 00:00:00 03:20:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 03:20:00 +1084112 125 2020-05-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 03:20:00 +988802 146 2020-01-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +988803 146 2020-01-28 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +988804 146 2020-01-29 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +988805 146 2020-01-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1079498 127 2020-02-26 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1079499 127 2020-02-27 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1079500 127 2020-02-28 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1079503 127 2020-03-02 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1079504 127 2020-03-03 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1079519 127 2020-03-18 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1079520 127 2020-03-19 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1079521 127 2020-03-20 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1079522 127 2020-03-21 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1079523 127 2020-03-22 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1084115 125 2020-05-24 \N \N \N \N \N 00:00:00 03:20:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1084134 125 2020-06-12 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 03:20:00 +1084135 125 2020-06-13 \N \N \N \N \N 00:00:00 03:20:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 03:20:00 +1084136 125 2020-06-14 \N \N \N \N \N 00:00:00 03:20:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1085364 110 2020-06-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +988806 146 2020-01-31 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +988807 146 2020-02-01 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +988808 146 2020-02-02 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +988809 146 2020-02-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1079524 127 2020-03-23 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1079525 127 2020-03-24 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1079526 127 2020-03-25 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1079527 127 2020-03-26 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1079528 127 2020-03-27 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1079529 127 2020-03-28 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1079530 127 2020-03-29 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1079531 127 2020-03-30 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1079532 127 2020-03-31 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1079533 127 2020-04-01 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1079534 127 2020-04-02 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1084137 119 2020-04-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1084142 119 2020-04-25 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +1084143 119 2020-04-26 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1085369 145 2020-04-20 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085370 145 2020-04-21 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +988810 146 2020-02-04 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +988811 146 2020-02-05 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +988812 146 2020-02-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +988813 146 2020-02-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1079549 127 2020-04-17 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1079550 127 2020-04-18 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1079551 127 2020-04-19 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1079552 149 2020-02-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079553 149 2020-02-25 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079554 149 2020-02-26 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079555 149 2020-02-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079556 149 2020-02-28 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079557 149 2020-02-29 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1079558 149 2020-03-01 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1079559 149 2020-03-02 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1084144 119 2020-04-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1084145 119 2020-04-28 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1084164 119 2020-05-17 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +988814 146 2020-02-08 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +988815 146 2020-02-09 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +988816 146 2020-02-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +988817 146 2020-02-11 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1079560 149 2020-03-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079561 149 2020-03-04 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079562 149 2020-03-05 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079563 149 2020-03-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079578 149 2020-03-21 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1079579 149 2020-03-22 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1079580 149 2020-03-23 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079581 149 2020-03-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079582 149 2020-03-25 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079583 149 2020-03-26 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1084165 119 2020-05-18 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1084166 119 2020-05-19 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1084167 119 2020-05-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1085371 145 2020-04-22 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085372 145 2020-04-23 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085391 145 2020-05-12 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +988818 146 2020-02-12 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +988819 146 2020-02-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +988820 146 2020-02-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1079584 149 2020-03-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079585 149 2020-03-28 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1079586 149 2020-03-29 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1079587 149 2020-03-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079588 149 2020-03-31 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079589 149 2020-04-01 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079590 149 2020-04-02 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079591 149 2020-04-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079592 149 2020-04-04 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1079593 149 2020-04-05 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1079594 149 2020-04-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079609 103 2020-02-25 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1084168 119 2020-05-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1084173 119 2020-05-26 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1084174 119 2020-05-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +988821 146 2020-02-15 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +988822 146 2020-02-16 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +988823 146 2020-02-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +988824 146 2020-02-18 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1079610 103 2020-02-26 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079611 103 2020-02-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079612 103 2020-02-28 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079613 103 2020-02-29 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1079614 103 2020-03-01 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1079615 103 2020-03-02 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079616 103 2020-03-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079617 103 2020-03-04 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079618 103 2020-03-05 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079619 103 2020-03-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079620 103 2020-03-07 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1079621 103 2020-03-08 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1084175 119 2020-05-28 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1084176 119 2020-05-29 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +988825 146 2020-02-19 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +988826 146 2020-02-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +988827 146 2020-02-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +988828 146 2020-02-22 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +1079622 103 2020-03-09 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079623 103 2020-03-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079624 103 2020-03-11 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079639 103 2020-03-26 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079640 103 2020-03-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079641 103 2020-03-28 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1079642 103 2020-03-29 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1079643 103 2020-03-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079644 103 2020-03-31 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079645 103 2020-04-01 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1084197 113 2020-04-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1084198 113 2020-04-25 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +1084199 113 2020-04-26 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1084200 113 2020-04-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1085392 145 2020-05-13 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +988829 146 2020-02-23 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +990930 132 2020-01-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +990931 132 2020-01-04 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +990932 132 2020-01-05 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +990933 132 2020-01-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1079646 103 2020-04-02 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079647 103 2020-04-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079648 103 2020-04-04 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1079649 103 2020-04-05 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1079650 103 2020-04-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079651 103 2020-04-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079652 103 2020-04-08 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079653 103 2020-04-09 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079668 121 2020-02-28 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1079669 121 2020-02-29 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1079670 121 2020-03-01 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1084204 113 2020-05-01 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1084205 113 2020-05-02 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +1084206 113 2020-05-03 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +990934 132 2020-01-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +990935 132 2020-01-08 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +990936 132 2020-01-09 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1079671 121 2020-03-02 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1079672 121 2020-03-03 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1079673 121 2020-03-04 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1079674 121 2020-03-05 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1079675 121 2020-03-06 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1079676 121 2020-03-07 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1079677 121 2020-03-08 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1079678 121 2020-03-09 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1079679 121 2020-03-10 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1079680 121 2020-03-11 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1079681 121 2020-03-12 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1084225 113 2020-05-22 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1084226 113 2020-05-23 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +1084227 113 2020-05-24 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1085393 145 2020-05-14 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085394 145 2020-05-15 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +990937 132 2020-01-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +990938 132 2020-01-11 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +990939 132 2020-01-12 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +990940 132 2020-01-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1079682 121 2020-03-13 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1079683 121 2020-03-14 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1079699 121 2020-03-30 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1079700 121 2020-03-31 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1079701 121 2020-04-01 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1079702 121 2020-04-02 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1079703 121 2020-04-03 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1079704 121 2020-04-04 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1079705 121 2020-04-05 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1079706 121 2020-04-06 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1084228 113 2020-05-25 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1084229 113 2020-05-26 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1084234 113 2020-05-31 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1084235 113 2020-06-01 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +990941 132 2020-01-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +990942 132 2020-01-15 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +993082 115 2020-01-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1079707 121 2020-04-07 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1079708 121 2020-04-08 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1079709 121 2020-04-09 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1079710 121 2020-04-10 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1079711 121 2020-04-11 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1079712 121 2020-04-12 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1079727 125 2020-03-02 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 03:20:00 +1079728 125 2020-03-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 03:20:00 +1079729 125 2020-03-04 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 03:20:00 +1079730 125 2020-03-05 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 03:20:00 +1079731 125 2020-03-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 03:20:00 +1079732 125 2020-03-07 \N \N \N \N \N 00:00:00 03:20:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 03:20:00 +1084251 147 2020-04-22 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1084256 147 2020-04-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1085395 145 2020-05-16 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +1085396 145 2020-05-17 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +993083 115 2020-01-04 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +993084 115 2020-01-05 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +993085 115 2020-01-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +993086 115 2020-01-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1079733 125 2020-03-08 \N \N \N \N \N 00:00:00 03:20:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1079734 125 2020-03-09 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 03:20:00 +1079735 125 2020-03-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 03:20:00 +1079736 125 2020-03-11 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 03:20:00 +1079737 125 2020-03-12 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 03:20:00 +1079738 125 2020-03-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 03:20:00 +1079739 125 2020-03-14 \N \N \N \N \N 00:00:00 03:20:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 03:20:00 +1079740 125 2020-03-15 \N \N \N \N \N 00:00:00 03:20:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1079741 125 2020-03-16 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 03:20:00 +1079742 125 2020-03-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 03:20:00 +1079757 125 2020-04-01 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 03:20:00 +1084257 147 2020-04-28 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1084258 147 2020-04-29 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1084259 147 2020-04-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1085400 145 2020-05-21 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +993087 115 2020-01-08 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +993088 115 2020-01-09 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +993089 115 2020-01-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +993090 115 2020-01-11 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +1079758 125 2020-04-02 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 03:20:00 +1079759 125 2020-04-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 03:20:00 +1079760 125 2020-04-04 \N \N \N \N \N 00:00:00 03:20:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 03:20:00 +1079761 125 2020-04-05 \N \N \N \N \N 00:00:00 03:20:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1079762 125 2020-04-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 03:20:00 +1079763 125 2020-04-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 03:20:00 +1079764 125 2020-04-08 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 03:20:00 +1079765 125 2020-04-09 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 03:20:00 +1079766 125 2020-04-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 03:20:00 +1079767 125 2020-04-11 \N \N \N \N \N 00:00:00 03:20:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 03:20:00 +1079768 125 2020-04-12 \N \N \N \N \N 00:00:00 03:20:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1084264 147 2020-05-05 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1084279 147 2020-05-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1084280 147 2020-05-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1085401 145 2020-05-22 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +993091 115 2020-01-12 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +993092 115 2020-01-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +993093 115 2020-01-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +993094 115 2020-01-15 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1079769 125 2020-04-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 03:20:00 +1079770 125 2020-04-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 03:20:00 +1079771 125 2020-04-15 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 03:20:00 +1079786 119 2020-03-05 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079787 119 2020-03-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079788 119 2020-03-07 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1079789 119 2020-03-08 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1079790 119 2020-03-09 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079791 119 2020-03-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079792 119 2020-03-11 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079793 119 2020-03-12 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079794 119 2020-03-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1084281 147 2020-05-22 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1084282 147 2020-05-23 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +993095 115 2020-01-16 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +993096 115 2020-01-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +993097 115 2020-01-18 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +993098 115 2020-01-19 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1079795 119 2020-03-14 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1079796 119 2020-03-15 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1079797 119 2020-03-16 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079798 119 2020-03-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079799 119 2020-03-18 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079800 119 2020-03-19 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079815 119 2020-04-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079816 119 2020-04-04 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1079817 119 2020-04-05 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1079818 119 2020-04-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079819 119 2020-04-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1084287 147 2020-05-28 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1084288 147 2020-05-29 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1084289 147 2020-05-30 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +1084290 147 2020-05-31 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +993099 115 2020-01-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +993100 115 2020-01-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +993101 115 2020-01-22 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1079820 119 2020-04-08 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079821 119 2020-04-09 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079822 119 2020-04-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079823 119 2020-04-11 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1079824 119 2020-04-12 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1079825 119 2020-04-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079826 119 2020-04-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079827 119 2020-04-15 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079828 119 2020-04-16 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079829 119 2020-04-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079844 113 2020-03-07 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1084309 131 2020-04-24 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 04:00:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 04:00:00 +1084310 131 2020-04-25 \N \N \N \N \N 00:00:00 04:00:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1084311 131 2020-04-26 \N \N \N \N \N 00:00:00 04:00:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1085403 145 2020-05-24 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1085418 145 2020-06-08 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085423 145 2020-06-13 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +993102 115 2020-01-23 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +993103 115 2020-01-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +993104 115 2020-01-25 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +993105 115 2020-01-26 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1079845 113 2020-03-08 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1079846 113 2020-03-09 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079847 113 2020-03-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079848 113 2020-03-11 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079849 113 2020-03-12 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079850 113 2020-03-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079851 113 2020-03-14 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1079852 113 2020-03-15 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1079853 113 2020-03-16 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079854 113 2020-03-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079855 113 2020-03-18 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1084312 131 2020-04-27 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 04:00:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 04:00:00 +1084317 131 2020-05-02 \N \N \N \N \N 00:00:00 04:00:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1084318 131 2020-05-03 \N \N \N \N \N 00:00:00 04:00:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1084319 131 2020-05-04 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 04:00:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 04:00:00 +993106 115 2020-01-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +993107 115 2020-01-28 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +993109 115 2020-01-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +993110 115 2020-01-31 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +993111 115 2020-02-01 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +1079856 113 2020-03-19 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079857 113 2020-03-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079858 113 2020-03-21 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1079859 113 2020-03-22 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1079874 113 2020-04-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079875 113 2020-04-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079876 113 2020-04-08 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079877 113 2020-04-09 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079878 113 2020-04-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079879 113 2020-04-11 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1084320 131 2020-05-05 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 04:00:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 04:00:00 +1084339 131 2020-05-24 \N \N \N \N \N 00:00:00 04:00:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1084340 131 2020-05-25 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 04:00:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 04:00:00 +1085424 145 2020-06-14 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +993112 115 2020-02-02 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +993113 115 2020-02-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +993114 115 2020-02-04 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +993115 115 2020-02-05 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1079880 113 2020-04-12 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1079881 113 2020-04-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079882 113 2020-04-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079883 113 2020-04-15 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079884 113 2020-04-16 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079885 113 2020-04-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079886 113 2020-04-18 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1079887 113 2020-04-19 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1079888 147 2020-02-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079903 147 2020-03-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079904 147 2020-03-11 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1084341 131 2020-05-26 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 04:00:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 04:00:00 +1084342 131 2020-05-27 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 04:00:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 04:00:00 +1085425 148 2020-04-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1085426 148 2020-04-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +993116 115 2020-02-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +993117 115 2020-02-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +993118 115 2020-02-08 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +993119 115 2020-02-09 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1079905 147 2020-03-12 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079906 147 2020-03-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079907 147 2020-03-14 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1079908 147 2020-03-15 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1079909 147 2020-03-16 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079910 147 2020-03-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079911 147 2020-03-18 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079912 147 2020-03-19 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079913 147 2020-03-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079914 147 2020-03-21 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1079915 147 2020-03-22 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1079916 147 2020-03-23 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1084347 131 2020-06-01 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 04:00:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 04:00:00 +1084348 131 2020-06-02 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 04:00:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 04:00:00 +1085431 148 2020-04-26 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +993120 115 2020-02-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +993121 115 2020-02-11 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +993122 115 2020-02-12 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1079917 147 2020-03-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079932 147 2020-04-08 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079933 147 2020-04-09 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079934 147 2020-04-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079935 147 2020-04-11 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1079936 147 2020-04-12 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1079937 147 2020-04-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079938 147 2020-04-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079939 147 2020-04-15 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079940 147 2020-04-16 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079941 147 2020-04-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1084349 131 2020-06-03 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 04:00:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 04:00:00 +1084350 131 2020-06-04 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 04:00:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 04:00:00 +1084369 104 2020-04-28 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:00:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:00:00 +1085432 148 2020-04-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +990928 132 2020-01-01 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +990929 132 2020-01-02 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1079942 147 2020-04-18 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1079943 147 2020-04-19 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1079944 131 2020-02-24 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 04:00:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 04:00:00 +1079945 131 2020-02-25 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 04:00:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 04:00:00 +1079946 131 2020-02-26 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 04:00:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 04:00:00 +1079961 131 2020-03-12 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 04:00:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 04:00:00 +1079962 131 2020-03-13 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 04:00:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 04:00:00 +1079963 131 2020-03-14 \N \N \N \N \N 00:00:00 04:00:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1079964 131 2020-03-15 \N \N \N \N \N 00:00:00 04:00:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1079965 131 2020-03-16 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 04:00:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 04:00:00 +1079966 131 2020-03-17 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 04:00:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 04:00:00 +1079967 131 2020-03-18 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 04:00:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 04:00:00 +1084370 104 2020-04-29 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:00:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:00:00 +1084371 104 2020-04-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:00:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:00:00 +1084372 104 2020-05-01 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:00:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:00:00 +1084373 104 2020-05-02 \N \N \N \N \N 00:00:00 06:00:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +993123 115 2020-02-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +993124 115 2020-02-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +993125 115 2020-02-15 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +993126 115 2020-02-16 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1079968 131 2020-03-19 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 04:00:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 04:00:00 +1079969 131 2020-03-20 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 04:00:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 04:00:00 +1079970 131 2020-03-21 \N \N \N \N \N 00:00:00 04:00:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1079971 131 2020-03-22 \N \N \N \N \N 00:00:00 04:00:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1079972 131 2020-03-23 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 04:00:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 04:00:00 +1079973 131 2020-03-24 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 04:00:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 04:00:00 +1079974 131 2020-03-25 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 04:00:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 04:00:00 +1079975 131 2020-03-26 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 04:00:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 04:00:00 +1079990 131 2020-04-10 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 04:00:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 04:00:00 +1079991 131 2020-04-11 \N \N \N \N \N 00:00:00 04:00:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1079992 131 2020-04-12 \N \N \N \N \N 00:00:00 04:00:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1084378 104 2020-05-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:00:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:00:00 +1084379 104 2020-05-08 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:00:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:00:00 +1084380 104 2020-05-09 \N \N \N \N \N 00:00:00 06:00:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1084381 104 2020-05-10 \N \N \N \N \N 00:00:00 06:00:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1085447 148 2020-05-12 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +993127 115 2020-02-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +993128 115 2020-02-18 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +993129 115 2020-02-19 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1079993 131 2020-04-13 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 04:00:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 04:00:00 +1079994 131 2020-04-14 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 04:00:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 04:00:00 +1079995 131 2020-04-15 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 04:00:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 04:00:00 +1079996 131 2020-04-16 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 04:00:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 04:00:00 +1079997 131 2020-04-17 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 04:00:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 04:00:00 +1079998 131 2020-04-18 \N \N \N \N \N 00:00:00 04:00:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1079999 131 2020-04-19 \N \N \N \N \N 00:00:00 04:00:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1080000 104 2020-02-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:00:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:00:00 +1080001 104 2020-02-25 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:00:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:00:00 +1080002 104 2020-02-26 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:00:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:00:00 +1080003 104 2020-02-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:00:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:00:00 +1080004 104 2020-02-28 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:00:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:00:00 +1084396 104 2020-05-25 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:00:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:00:00 +1084397 104 2020-05-26 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:00:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:00:00 +993130 115 2020-02-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +993131 115 2020-02-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +993132 115 2020-02-22 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +993133 115 2020-02-23 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1080005 104 2020-02-29 \N \N \N \N \N 00:00:00 06:00:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1080021 104 2020-03-16 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:00:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:00:00 +1080022 104 2020-03-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:00:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:00:00 +1080023 104 2020-03-18 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:00:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:00:00 +1080024 104 2020-03-19 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:00:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:00:00 +1080025 104 2020-03-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:00:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:00:00 +1080026 104 2020-03-21 \N \N \N \N \N 00:00:00 06:00:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1080027 104 2020-03-22 \N \N \N \N \N 00:00:00 06:00:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1080028 104 2020-03-23 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:00:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:00:00 +1080029 104 2020-03-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:00:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:00:00 +1080030 104 2020-03-25 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:00:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:00:00 +1084404 104 2020-06-02 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:00:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:00:00 +1084405 104 2020-06-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:00:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:00:00 +1084410 104 2020-06-08 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:00:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:00:00 +1085452 148 2020-05-17 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +995233 114 2020-01-02 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +995234 114 2020-01-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +995235 114 2020-01-04 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +995236 114 2020-01-05 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +995237 114 2020-01-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1080031 104 2020-03-26 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:00:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:00:00 +1080032 104 2020-03-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:00:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:00:00 +1080033 104 2020-03-28 \N \N \N \N \N 00:00:00 06:00:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1080034 104 2020-03-29 \N \N \N \N \N 00:00:00 06:00:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1080049 104 2020-04-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:00:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:00:00 +1080050 104 2020-04-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:00:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:00:00 +1080051 104 2020-04-15 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:00:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:00:00 +1080052 104 2020-04-16 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:00:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:00:00 +1080053 104 2020-04-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:00:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:00:00 +1080054 104 2020-04-18 \N \N \N \N \N 00:00:00 06:00:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1084425 151 2020-04-28 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1084426 151 2020-04-29 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1084427 151 2020-04-30 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +995238 114 2020-01-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +995239 114 2020-01-08 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +995240 114 2020-01-09 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1080055 104 2020-04-19 \N \N \N \N \N 00:00:00 06:00:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1080056 151 2020-02-24 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080057 151 2020-02-25 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080058 151 2020-02-26 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080059 151 2020-02-27 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080060 151 2020-02-28 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080061 151 2020-02-29 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1080062 151 2020-03-01 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1080063 151 2020-03-02 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080078 151 2020-03-17 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080079 151 2020-03-18 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1084432 151 2020-05-05 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1084433 151 2020-05-06 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1084434 151 2020-05-07 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085454 148 2020-05-19 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1085459 148 2020-05-24 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +995241 114 2020-01-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +995242 114 2020-01-11 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +995243 114 2020-01-12 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +995244 114 2020-01-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1080080 151 2020-03-19 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080081 151 2020-03-20 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080082 151 2020-03-21 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1080083 151 2020-03-22 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1080084 151 2020-03-23 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080085 151 2020-03-24 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080086 151 2020-03-25 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080087 151 2020-03-26 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080088 151 2020-03-27 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080089 151 2020-03-28 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1080090 151 2020-03-29 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1084435 151 2020-05-08 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1084436 151 2020-05-09 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +1084453 151 2020-05-26 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085460 148 2020-05-25 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1085461 148 2020-05-26 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +995245 114 2020-01-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +995246 114 2020-01-15 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +995247 114 2020-01-16 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1080091 151 2020-03-30 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080092 151 2020-03-31 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080107 151 2020-04-15 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080108 151 2020-04-16 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080109 151 2020-04-17 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080110 151 2020-04-18 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1080111 151 2020-04-19 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1080112 138 2020-02-24 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080113 138 2020-02-25 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080114 138 2020-02-26 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080115 138 2020-02-27 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1084454 151 2020-05-27 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1084455 151 2020-05-28 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1084456 151 2020-05-29 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +995248 114 2020-01-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +995249 114 2020-01-18 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +995250 114 2020-01-19 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +995251 114 2020-01-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +995252 114 2020-01-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1080116 138 2020-02-28 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080117 138 2020-02-29 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1080118 138 2020-03-01 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1080119 138 2020-03-02 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080120 138 2020-03-03 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080121 138 2020-03-04 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080136 138 2020-03-19 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080137 138 2020-03-20 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080138 138 2020-03-21 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1080139 138 2020-03-22 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1080140 138 2020-03-23 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1084461 151 2020-06-03 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1084462 151 2020-06-04 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +995253 114 2020-01-22 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +995254 114 2020-01-23 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +995255 114 2020-01-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1080141 138 2020-03-24 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080142 138 2020-03-25 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080143 138 2020-03-26 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080144 138 2020-03-27 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080145 138 2020-03-28 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1080146 138 2020-03-29 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1080147 138 2020-03-30 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080148 138 2020-03-31 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080149 138 2020-04-01 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080150 138 2020-04-02 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080165 138 2020-04-17 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1084464 151 2020-06-06 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +1084488 138 2020-05-05 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1084489 138 2020-05-06 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +995256 114 2020-01-25 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +995257 114 2020-01-26 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +995258 114 2020-01-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +995259 114 2020-01-28 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1080166 138 2020-04-18 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1080167 138 2020-04-19 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1080168 105 2020-02-24 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080169 105 2020-02-25 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080170 105 2020-02-26 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080171 105 2020-02-27 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080172 105 2020-02-28 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080173 105 2020-02-29 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1080174 105 2020-03-01 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1080175 105 2020-03-02 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080176 105 2020-03-03 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1084491 138 2020-05-08 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1084492 138 2020-05-09 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +1084496 138 2020-05-13 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +995260 114 2020-01-29 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +995261 114 2020-01-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +995262 114 2020-01-31 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +995263 114 2020-02-01 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +1080177 105 2020-03-04 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080178 105 2020-03-05 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080179 105 2020-03-06 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080180 105 2020-03-07 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1080195 105 2020-03-22 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1080196 105 2020-03-23 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080197 105 2020-03-24 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080198 105 2020-03-25 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080199 105 2020-03-26 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080200 105 2020-03-27 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080201 105 2020-03-28 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1080202 105 2020-03-29 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1084498 138 2020-05-15 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1084499 138 2020-05-16 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +1085476 148 2020-06-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +995264 114 2020-02-02 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +995265 114 2020-02-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +995266 114 2020-02-04 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +995268 114 2020-02-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1080203 105 2020-03-30 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080204 105 2020-03-31 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080205 105 2020-04-01 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080206 105 2020-04-02 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080207 105 2020-04-03 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080208 105 2020-04-04 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1080209 105 2020-04-05 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1080210 105 2020-04-06 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080225 134 2020-02-25 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080226 134 2020-02-26 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1084518 138 2020-06-04 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1084519 138 2020-06-05 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1084520 138 2020-06-06 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +1084521 138 2020-06-07 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1085481 130 2020-04-20 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +995269 114 2020-02-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +995270 114 2020-02-08 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +995271 114 2020-02-09 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +995272 114 2020-02-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +995273 114 2020-02-11 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1080227 134 2020-02-27 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080228 134 2020-02-28 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080229 134 2020-02-29 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1080230 134 2020-03-01 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1080231 134 2020-03-02 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080232 134 2020-03-03 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080233 134 2020-03-04 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080234 134 2020-03-05 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080235 134 2020-03-06 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080236 134 2020-03-07 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1084525 138 2020-06-11 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1084526 138 2020-06-12 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1084527 138 2020-06-13 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +995274 114 2020-02-12 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +995275 114 2020-02-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +995276 114 2020-02-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +995279 114 2020-02-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1080237 134 2020-03-08 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1080238 134 2020-03-09 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080239 134 2020-03-10 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080254 134 2020-03-25 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080255 134 2020-03-26 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080256 134 2020-03-27 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080257 134 2020-03-28 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1080258 134 2020-03-29 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1080259 134 2020-03-30 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080260 134 2020-03-31 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080261 134 2020-04-01 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1084529 105 2020-04-20 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1084548 105 2020-05-09 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +1084549 105 2020-05-10 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1085482 130 2020-04-21 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +995280 114 2020-02-18 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +995281 114 2020-02-19 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +995282 114 2020-02-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1080262 134 2020-04-02 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080263 134 2020-04-03 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080264 134 2020-04-04 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1080265 134 2020-04-05 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1080266 134 2020-04-06 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080267 134 2020-04-07 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080268 134 2020-04-08 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080283 144 2020-02-27 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080284 144 2020-02-28 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080285 144 2020-02-29 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1080286 144 2020-03-01 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1084550 105 2020-05-11 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1084551 105 2020-05-12 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1084556 105 2020-05-17 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1084557 105 2020-05-18 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085483 130 2020-04-22 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +995283 114 2020-02-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +995284 114 2020-02-22 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +995285 114 2020-02-23 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +997390 112 2020-01-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1080287 144 2020-03-02 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080288 144 2020-03-03 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080289 144 2020-03-04 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080290 144 2020-03-05 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080291 144 2020-03-06 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080292 144 2020-03-07 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1080293 144 2020-03-08 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1080294 144 2020-03-09 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080295 144 2020-03-10 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080296 144 2020-03-11 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080297 144 2020-03-12 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1084558 105 2020-05-19 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1084559 105 2020-05-20 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1084578 105 2020-06-08 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +997391 112 2020-01-08 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +997392 112 2020-01-09 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +997393 112 2020-01-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +997394 112 2020-01-11 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +1080312 144 2020-03-27 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080313 144 2020-03-28 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1080314 144 2020-03-29 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1080315 144 2020-03-30 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080316 144 2020-03-31 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080317 102 2020-02-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1080318 102 2020-02-25 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1080319 102 2020-02-26 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1080320 102 2020-02-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1080321 102 2020-02-28 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1080322 102 2020-02-29 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1084579 105 2020-06-09 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1084580 105 2020-06-10 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085488 130 2020-04-27 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085489 130 2020-04-28 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +997395 112 2020-01-12 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +997396 112 2020-01-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +997397 112 2020-01-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +997398 112 2020-01-15 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1080323 102 2020-03-01 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1080324 102 2020-03-02 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1080325 102 2020-03-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1080326 102 2020-03-04 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1080327 102 2020-03-05 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1080342 102 2020-03-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1080343 102 2020-03-21 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1080344 102 2020-03-22 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1080345 102 2020-03-23 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1080346 102 2020-03-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1080347 102 2020-03-25 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1080348 102 2020-03-26 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1084581 105 2020-06-11 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1084586 134 2020-04-21 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +997399 112 2020-01-16 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +997400 112 2020-01-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +997401 112 2020-01-18 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +997402 112 2020-01-19 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1080349 102 2020-03-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1080350 102 2020-03-28 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1080351 102 2020-03-29 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1080352 102 2020-03-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1080353 102 2020-03-31 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1080354 102 2020-04-01 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1080355 102 2020-04-02 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1080356 102 2020-04-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1080371 102 2020-04-18 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1080372 102 2020-04-19 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1084587 134 2020-04-22 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1084588 134 2020-04-23 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1084589 134 2020-04-24 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1084590 134 2020-04-25 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +997403 112 2020-01-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +997404 112 2020-01-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +997405 112 2020-01-22 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +997413 112 2020-01-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1080373 109 2020-02-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1080374 109 2020-02-25 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1080375 109 2020-02-26 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1080376 109 2020-02-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1080377 109 2020-02-28 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1080378 109 2020-02-29 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1080379 109 2020-03-01 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1080380 109 2020-03-02 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1080381 109 2020-03-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1080382 109 2020-03-04 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1080383 109 2020-03-05 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1084611 134 2020-05-16 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +1084612 134 2020-05-17 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1085490 130 2020-04-29 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085505 130 2020-05-14 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085510 130 2020-05-19 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +997414 112 2020-01-31 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +997415 112 2020-02-01 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +997416 112 2020-02-02 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +997417 112 2020-02-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1080384 109 2020-03-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1080385 109 2020-03-07 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1080386 109 2020-03-08 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1080401 109 2020-03-23 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1080402 109 2020-03-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1080403 109 2020-03-25 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1080404 109 2020-03-26 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1080405 109 2020-03-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1080406 109 2020-03-28 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1080407 109 2020-03-29 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1080408 109 2020-03-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1084613 134 2020-05-18 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1084618 134 2020-05-23 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +1084619 134 2020-05-24 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +993134 115 2019-12-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +993135 115 2019-12-31 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +997418 112 2020-02-04 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1080409 109 2020-03-31 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1080410 109 2020-04-01 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1080411 109 2020-04-02 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1080412 109 2020-04-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1080413 109 2020-04-04 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1080414 109 2020-04-05 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1080415 109 2020-04-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1080430 118 2020-02-25 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1080431 118 2020-02-26 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1080432 118 2020-02-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1080433 118 2020-02-28 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1084640 134 2020-06-14 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1084641 102 2020-04-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1084642 102 2020-04-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1085511 130 2020-05-20 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085512 130 2020-05-21 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +997419 112 2020-02-05 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +997420 112 2020-02-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +997421 112 2020-02-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +997422 112 2020-02-08 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +1080434 118 2020-02-29 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1080435 118 2020-03-01 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1080436 118 2020-03-02 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1080437 118 2020-03-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1080438 118 2020-03-04 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1080439 118 2020-03-05 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1080440 118 2020-03-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1080441 118 2020-03-07 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1080442 118 2020-03-08 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1080443 118 2020-03-09 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1080444 118 2020-03-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1080459 118 2020-03-25 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1084643 102 2020-04-22 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1084648 102 2020-04-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +997423 112 2020-02-09 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +997424 112 2020-02-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +997425 112 2020-02-11 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +997426 112 2020-02-12 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1080460 118 2020-03-26 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1080461 118 2020-03-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1080462 118 2020-03-28 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1080463 118 2020-03-29 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1080464 118 2020-03-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1080465 118 2020-03-31 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1080466 118 2020-04-01 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1080467 118 2020-04-02 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1080468 118 2020-04-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1080469 118 2020-04-04 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1080470 118 2020-04-05 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1084663 102 2020-05-12 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1084664 102 2020-05-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1084665 102 2020-05-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1085513 130 2020-05-22 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +997427 112 2020-02-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +997428 112 2020-02-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +997429 112 2020-02-15 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +997430 112 2020-02-16 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1080471 118 2020-04-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1080472 118 2020-04-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1080473 118 2020-04-08 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1080488 133 2020-02-27 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080489 133 2020-02-28 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080490 133 2020-02-29 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1080491 133 2020-03-01 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1080492 133 2020-03-02 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080493 133 2020-03-03 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080494 133 2020-03-04 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1084669 102 2020-05-18 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1084670 102 2020-05-19 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1084671 102 2020-05-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1085515 130 2020-05-24 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1085516 130 2020-05-25 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +993080 115 2020-01-01 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +993081 115 2020-01-02 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1080495 133 2020-03-05 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080496 133 2020-03-06 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080497 133 2020-03-07 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1080498 133 2020-03-08 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1080499 133 2020-03-09 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080500 133 2020-03-10 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080501 133 2020-03-11 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080502 133 2020-03-12 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080517 133 2020-03-27 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080518 133 2020-03-28 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1080519 133 2020-03-29 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1080520 133 2020-03-30 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080521 133 2020-03-31 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1084672 102 2020-05-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1084677 102 2020-05-26 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1084692 102 2020-06-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +993108 115 2020-01-29 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1080522 133 2020-04-01 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080523 133 2020-04-02 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080524 133 2020-04-03 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080525 133 2020-04-04 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1080526 133 2020-04-05 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1080527 133 2020-04-06 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080528 133 2020-04-07 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080529 133 2020-04-08 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080530 133 2020-04-09 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080531 133 2020-04-10 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080546 111 2020-02-29 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1080547 111 2020-03-01 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1080548 111 2020-03-02 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1084693 102 2020-06-11 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1084694 102 2020-06-12 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1084699 109 2020-04-22 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1085535 130 2020-06-13 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +1085536 130 2020-06-14 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1085537 129 2020-04-20 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085543 129 2020-04-26 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +997431 112 2020-02-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +997432 112 2020-02-18 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +997433 112 2020-02-19 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1080549 111 2020-03-03 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080550 111 2020-03-04 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080551 111 2020-03-05 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080552 111 2020-03-06 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080553 111 2020-03-07 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1080554 111 2020-03-08 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1080555 111 2020-03-09 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080556 111 2020-03-10 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080557 111 2020-03-11 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080558 111 2020-03-12 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080559 111 2020-03-13 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1084700 109 2020-04-23 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1084701 109 2020-04-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1084702 109 2020-04-25 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +1084703 109 2020-04-26 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +997434 112 2020-02-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +997435 112 2020-02-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1080560 111 2020-03-14 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1080561 111 2020-03-15 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1080576 111 2020-03-30 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080577 111 2020-03-31 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080578 111 2020-04-01 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080579 111 2020-04-02 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080580 111 2020-04-03 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080581 111 2020-04-04 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1080582 111 2020-04-05 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1080583 111 2020-04-06 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080584 111 2020-04-07 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080585 111 2020-04-08 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1084722 109 2020-05-15 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1084723 109 2020-05-16 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +1084724 109 2020-05-17 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1084725 109 2020-05-18 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1085544 129 2020-04-27 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +997436 112 2020-02-22 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +997437 112 2020-02-23 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1080586 111 2020-04-09 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080587 111 2020-04-10 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080588 111 2020-04-11 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1080589 111 2020-04-12 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1080590 111 2020-04-13 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080605 128 2020-03-03 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080606 128 2020-03-04 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080607 128 2020-03-05 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080608 128 2020-03-06 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080609 128 2020-03-07 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1080610 128 2020-03-08 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1080611 128 2020-03-09 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080612 128 2020-03-10 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1084729 109 2020-05-22 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1084730 109 2020-05-23 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +1084731 109 2020-05-24 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +999560 108 2020-01-25 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +999561 108 2020-01-26 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +999562 108 2020-01-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1080613 128 2020-03-11 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080614 128 2020-03-12 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080615 128 2020-03-13 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080616 128 2020-03-14 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1080617 128 2020-03-15 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1080618 128 2020-03-16 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080619 128 2020-03-17 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080634 128 2020-04-01 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080635 128 2020-04-02 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080636 128 2020-04-03 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080637 128 2020-04-04 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1080638 128 2020-04-05 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1084752 109 2020-06-14 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1084753 118 2020-04-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1084754 118 2020-04-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1084755 118 2020-04-22 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +999563 108 2020-01-28 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +999564 108 2020-01-29 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1080639 128 2020-04-06 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080640 128 2020-04-07 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080641 128 2020-04-08 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080642 128 2020-04-09 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080643 128 2020-04-10 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080644 128 2020-04-11 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1080645 128 2020-04-12 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1080646 128 2020-04-13 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080647 128 2020-04-14 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080648 128 2020-04-15 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080663 142 2020-03-05 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080664 142 2020-03-06 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1084760 118 2020-04-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1084761 118 2020-04-28 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1084762 118 2020-04-29 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1085545 129 2020-04-28 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +999565 108 2020-01-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +999566 108 2020-01-31 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +999567 108 2020-02-01 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +1080665 142 2020-03-07 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1080666 142 2020-03-08 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1080667 142 2020-03-09 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080668 142 2020-03-10 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080669 142 2020-03-11 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080670 142 2020-03-12 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080671 142 2020-03-13 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080672 142 2020-03-14 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1080673 142 2020-03-15 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1080674 142 2020-03-16 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080675 142 2020-03-17 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080676 142 2020-03-18 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1084763 118 2020-04-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1084782 118 2020-05-19 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1084783 118 2020-05-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1085546 129 2020-04-29 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +999568 108 2020-02-02 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +999569 108 2020-02-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1080677 142 2020-03-19 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080692 142 2020-04-03 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080693 142 2020-04-04 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1080694 142 2020-04-05 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1080695 142 2020-04-06 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080696 142 2020-04-07 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080697 142 2020-04-08 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080698 142 2020-04-09 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080699 142 2020-04-10 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080700 142 2020-04-11 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1080701 142 2020-04-12 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1080702 142 2020-04-13 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1084784 118 2020-05-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1084785 118 2020-05-22 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1084786 118 2020-05-23 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +1084787 118 2020-05-24 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1085566 129 2020-05-19 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085567 129 2020-05-20 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +999570 108 2020-02-04 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +999571 108 2020-02-05 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1080703 142 2020-04-14 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080704 142 2020-04-15 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080705 142 2020-04-16 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080706 142 2020-04-17 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080721 136 2020-03-07 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1080722 136 2020-03-08 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1080723 136 2020-03-09 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080724 136 2020-03-10 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080725 136 2020-03-11 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080726 136 2020-03-12 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080727 136 2020-03-13 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080728 136 2020-03-14 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1080729 136 2020-03-15 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1084792 118 2020-05-29 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1084793 118 2020-05-30 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +1084794 118 2020-05-31 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1085568 129 2020-05-21 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085569 129 2020-05-22 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +999572 108 2020-02-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +999573 108 2020-02-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +999575 108 2020-02-09 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1080730 136 2020-03-16 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080731 136 2020-03-17 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080732 136 2020-03-18 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080733 136 2020-03-19 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080734 136 2020-03-20 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080735 136 2020-03-21 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1080736 136 2020-03-22 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1080751 136 2020-04-06 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080752 136 2020-04-07 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080753 136 2020-04-08 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080754 136 2020-04-09 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1084809 133 2020-04-20 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1084813 133 2020-04-24 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1084814 133 2020-04-25 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +1084815 133 2020-04-26 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +999581 108 2020-02-15 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +1001724 135 2020-02-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1001725 135 2020-02-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1080755 136 2020-04-10 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080756 136 2020-04-11 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1080757 136 2020-04-12 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1080758 136 2020-04-13 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080759 136 2020-04-14 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080760 136 2020-04-15 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080761 136 2020-04-16 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080762 136 2020-04-17 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080763 136 2020-04-18 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1080764 136 2020-04-19 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1080765 139 2020-02-24 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080780 139 2020-03-10 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1084816 133 2020-04-27 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1084817 133 2020-04-28 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1084822 133 2020-05-03 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1085574 129 2020-05-27 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1001726 135 2020-02-08 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +1001727 135 2020-02-09 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1080781 139 2020-03-11 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080782 139 2020-03-12 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080783 139 2020-03-13 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080784 139 2020-03-14 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1080785 139 2020-03-15 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1080786 139 2020-03-16 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080787 139 2020-03-17 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080788 139 2020-03-18 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080789 139 2020-03-19 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080790 139 2020-03-20 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080791 139 2020-03-21 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1080792 139 2020-03-22 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1080793 139 2020-03-23 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1084823 133 2020-05-04 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1084838 133 2020-05-19 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1084839 133 2020-05-20 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085576 129 2020-05-29 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085577 129 2020-05-30 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +1001728 135 2020-02-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1001729 135 2020-02-11 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1080794 139 2020-03-24 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080809 139 2020-04-08 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080810 139 2020-04-09 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080811 139 2020-04-10 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080812 139 2020-04-11 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1080813 139 2020-04-12 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1080814 139 2020-04-13 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080815 139 2020-04-14 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080816 139 2020-04-15 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080817 139 2020-04-16 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080818 139 2020-04-17 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080819 139 2020-04-18 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1084844 133 2020-05-25 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1084845 133 2020-05-26 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1084846 133 2020-05-27 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085596 143 2020-04-23 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1001730 135 2020-02-12 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1001731 135 2020-02-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1080820 139 2020-04-19 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1080821 141 2020-02-24 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080822 141 2020-02-25 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080823 141 2020-02-26 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080838 141 2020-03-12 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080839 141 2020-03-13 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080840 141 2020-03-14 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1080841 141 2020-03-15 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1080842 141 2020-03-16 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080843 141 2020-03-17 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080844 141 2020-03-18 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080845 141 2020-03-19 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1084847 133 2020-05-28 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1084852 133 2020-06-02 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1084867 111 2020-04-22 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1001732 135 2020-02-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1001733 135 2020-02-15 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +1001734 135 2020-02-16 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1080846 141 2020-03-20 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080847 141 2020-03-21 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1080848 141 2020-03-22 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1080849 141 2020-03-23 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080850 141 2020-03-24 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080851 141 2020-03-25 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080852 141 2020-03-26 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080867 141 2020-04-10 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080868 141 2020-04-11 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1080869 141 2020-04-12 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1080870 141 2020-04-13 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1084869 111 2020-04-24 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1084874 111 2020-04-29 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1084875 111 2020-04-30 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1084876 111 2020-05-01 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085597 143 2020-04-24 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1001735 135 2020-02-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1001736 135 2020-02-18 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1080871 141 2020-04-14 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080872 141 2020-04-15 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080873 141 2020-04-16 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080874 141 2020-04-17 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080875 141 2020-04-18 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1080876 141 2020-04-19 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1080877 122 2020-02-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1080878 122 2020-02-25 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1080879 122 2020-02-26 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1080880 122 2020-02-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1080881 122 2020-02-28 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1080882 122 2020-02-29 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1080890 122 2020-03-08 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1084877 111 2020-05-02 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +1084878 111 2020-05-03 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1084897 111 2020-05-22 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085600 143 2020-04-27 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085605 143 2020-05-02 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +1001737 135 2020-02-19 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1001738 135 2020-02-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1080891 122 2020-03-09 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1080892 122 2020-03-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1080893 122 2020-03-11 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1080894 122 2020-03-12 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1080895 122 2020-03-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1080896 122 2020-03-14 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1080899 122 2020-03-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1080900 122 2020-03-18 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1080915 122 2020-04-02 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1080916 122 2020-04-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1080917 122 2020-04-04 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1084898 111 2020-05-23 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +1084899 111 2020-05-24 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1084900 111 2020-05-25 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1084905 111 2020-05-30 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +1084906 111 2020-05-31 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1085606 143 2020-05-03 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1001739 135 2020-02-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1001740 135 2020-02-22 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +1080918 122 2020-04-05 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1080919 122 2020-04-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1080920 122 2020-04-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1080921 122 2020-04-08 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1080922 122 2020-04-09 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1080923 122 2020-04-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1080924 122 2020-04-11 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1080925 122 2020-04-12 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1080926 122 2020-04-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1080927 122 2020-04-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1080928 122 2020-04-15 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1080929 122 2020-04-16 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1084907 111 2020-06-01 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1084908 111 2020-06-02 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1084927 128 2020-04-26 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1084928 128 2020-04-27 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085607 143 2020-05-04 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1001741 135 2020-02-23 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1003859 127 2020-01-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1003860 127 2020-01-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1080944 106 2020-03-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 04:10:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 \N +1080945 106 2020-03-07 \N \N \N \N \N 00:00:00 04:10:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1080946 106 2020-03-08 \N \N \N \N \N 00:00:00 04:10:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1080947 106 2020-03-09 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 04:10:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 04:10:00 +1080948 106 2020-03-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 04:10:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 04:10:00 +1080949 106 2020-03-11 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 04:10:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 04:10:00 +1080950 106 2020-03-12 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 04:10:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 04:10:00 +1080951 106 2020-03-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 04:10:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 \N +1080952 106 2020-03-14 \N \N \N \N \N 00:00:00 04:10:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1080953 106 2020-03-15 \N \N \N \N \N 00:00:00 04:10:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1080954 106 2020-03-16 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 04:10:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 04:10:00 +1080955 106 2020-03-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 04:10:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 04:10:00 +1084929 128 2020-04-28 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1084930 128 2020-04-29 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1084935 128 2020-05-04 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085628 143 2020-05-25 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1003861 127 2020-01-22 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1003862 127 2020-01-23 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1080956 106 2020-03-18 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 04:10:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 04:10:00 +1080957 106 2020-03-19 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 04:10:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 04:10:00 +1080958 106 2020-03-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 04:10:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 \N +1080959 106 2020-03-21 \N \N \N \N \N 00:00:00 04:10:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1080974 106 2020-04-05 \N \N \N \N \N 00:00:00 04:10:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1080975 106 2020-04-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 04:10:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 04:10:00 +1080976 106 2020-04-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 04:10:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 04:10:00 +1080977 106 2020-04-08 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 04:10:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 04:10:00 +1080978 106 2020-04-09 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 04:10:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 04:10:00 +1080979 106 2020-04-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 04:10:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 \N +1080980 106 2020-04-11 \N \N \N \N \N 00:00:00 04:10:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1080981 106 2020-04-12 \N \N \N \N \N 00:00:00 04:10:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1080982 106 2020-04-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 04:10:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 04:10:00 +1084936 128 2020-05-05 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1084937 128 2020-05-06 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1084938 128 2020-05-07 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +995286 114 2019-12-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +995287 114 2019-12-31 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1080983 106 2020-04-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 04:10:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 04:10:00 +1080984 106 2020-04-15 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 04:10:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 04:10:00 +1080985 106 2020-04-16 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 04:10:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 04:10:00 +1080986 106 2020-04-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 04:10:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 \N +1080987 106 2020-04-18 \N \N \N \N \N 00:00:00 04:10:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1080988 106 2020-04-19 \N \N \N \N \N 00:00:00 04:10:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1080989 110 2020-02-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1081004 110 2020-03-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1081005 110 2020-03-11 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1081006 110 2020-03-12 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1081007 110 2020-03-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1084958 128 2020-05-27 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1084959 128 2020-05-28 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1084960 128 2020-05-29 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1084961 128 2020-05-30 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +1085629 143 2020-05-26 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1003863 127 2020-01-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1003864 127 2020-01-25 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +1081008 110 2020-03-14 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1081009 110 2020-03-15 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1081010 110 2020-03-16 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1081011 110 2020-03-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1081012 110 2020-03-18 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1081013 110 2020-03-19 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1081014 110 2020-03-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1081015 110 2020-03-21 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1081016 110 2020-03-22 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1081017 110 2020-03-23 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1081018 110 2020-03-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1081033 110 2020-04-08 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1081034 110 2020-04-09 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1084966 128 2020-06-04 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1084967 128 2020-06-05 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1084968 128 2020-06-06 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +1085630 143 2020-05-27 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1003865 127 2020-01-26 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1003866 127 2020-01-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1003867 127 2020-01-28 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1081035 110 2020-04-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1081036 110 2020-04-11 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1081037 110 2020-04-12 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1081038 110 2020-04-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1081039 110 2020-04-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1081040 110 2020-04-15 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1081041 110 2020-04-16 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1081042 110 2020-04-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1081043 110 2020-04-18 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1081044 110 2020-04-19 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1081045 145 2020-02-24 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1084969 128 2020-06-07 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1084987 142 2020-04-30 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1084988 142 2020-05-01 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1084989 142 2020-05-02 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +1084990 142 2020-05-03 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1003868 127 2020-01-29 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1003869 127 2020-01-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1081046 145 2020-02-25 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1081047 145 2020-02-26 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1081062 145 2020-03-12 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1081063 145 2020-03-13 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1081064 145 2020-03-14 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1081065 145 2020-03-15 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1081066 145 2020-03-16 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1081067 145 2020-03-17 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1081068 145 2020-03-18 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1081069 145 2020-03-19 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1081070 145 2020-03-20 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1081071 145 2020-03-21 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1081072 145 2020-03-22 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1084991 142 2020-05-04 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1084992 142 2020-05-05 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1084997 142 2020-05-10 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1003870 127 2020-01-31 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1003871 127 2020-02-01 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +1081073 145 2020-03-23 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1081074 145 2020-03-24 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1081075 145 2020-03-25 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1081076 145 2020-03-26 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1081091 145 2020-04-10 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1081092 145 2020-04-11 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1081093 145 2020-04-12 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1081094 145 2020-04-13 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1081095 145 2020-04-14 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1081096 145 2020-04-15 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1081097 145 2020-04-16 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1084998 142 2020-05-11 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085013 142 2020-05-26 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085014 142 2020-05-27 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085019 142 2020-06-01 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085636 143 2020-06-02 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085651 146 2020-06-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +995232 114 2020-01-01 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1081098 145 2020-04-17 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1081099 145 2020-04-18 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1081100 145 2020-04-19 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1081101 148 2020-02-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1081102 148 2020-02-25 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1081103 148 2020-02-26 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1081104 148 2020-02-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1081105 148 2020-02-28 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1081120 148 2020-03-14 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1081121 148 2020-03-15 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1081122 148 2020-03-16 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1081123 148 2020-03-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1081124 148 2020-03-18 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1081125 148 2020-03-19 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1085020 142 2020-06-02 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085021 142 2020-06-03 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085022 142 2020-06-04 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +995277 114 2020-02-15 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +995278 114 2020-02-16 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1081126 148 2020-03-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1081127 148 2020-03-21 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1081128 148 2020-03-22 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1081129 148 2020-03-23 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1081130 148 2020-03-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1081131 148 2020-03-25 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1081132 148 2020-03-26 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1081133 148 2020-03-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1081134 148 2020-03-28 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1081135 148 2020-03-29 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1081150 148 2020-04-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1081151 148 2020-04-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1085027 142 2020-06-09 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085042 136 2020-04-29 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085043 136 2020-04-30 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085044 136 2020-05-01 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085657 146 2020-06-23 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1003872 127 2020-02-02 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1003873 127 2020-02-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1003893 127 2020-02-23 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1081152 148 2020-04-15 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1081153 148 2020-04-16 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1081154 148 2020-04-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1081155 148 2020-04-18 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1081156 148 2020-04-19 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1081157 130 2020-02-24 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1081158 130 2020-02-25 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1081159 130 2020-02-26 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1081160 130 2020-02-27 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1081161 130 2020-02-28 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1081162 130 2020-02-29 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1081163 130 2020-03-01 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1085049 136 2020-05-06 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085050 136 2020-05-07 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085051 136 2020-05-08 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085658 146 2020-06-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1006019 149 2020-01-28 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1006020 149 2020-01-29 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1006027 149 2020-02-05 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1006028 149 2020-02-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1006029 149 2020-02-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1081164 130 2020-03-02 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1081179 130 2020-03-17 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1081180 130 2020-03-18 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1081181 130 2020-03-19 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1081182 130 2020-03-20 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1081183 130 2020-03-21 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1081184 130 2020-03-22 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1081185 130 2020-03-23 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1081186 130 2020-03-24 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1085052 136 2020-05-09 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +1085070 136 2020-05-27 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085071 136 2020-05-28 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1006030 149 2020-02-08 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +1006031 149 2020-02-09 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1006032 149 2020-02-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1006033 149 2020-02-11 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1006034 149 2020-02-12 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1006035 149 2020-02-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1081187 130 2020-03-25 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1081188 130 2020-03-26 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1081189 130 2020-03-27 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1081190 130 2020-03-28 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1081191 130 2020-03-29 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1081192 130 2020-03-30 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1081193 130 2020-03-31 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1081208 130 2020-04-15 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1081209 130 2020-04-16 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1085073 136 2020-05-30 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +1085074 136 2020-05-31 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1085659 146 2020-06-25 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1085660 146 2020-06-26 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1085665 146 2020-07-01 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1006036 149 2020-02-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1006037 149 2020-02-15 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +1006038 149 2020-02-16 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1006039 149 2020-02-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1006040 149 2020-02-18 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1006041 149 2020-02-19 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1081210 130 2020-04-17 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1081211 130 2020-04-18 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1081212 130 2020-04-19 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1081213 129 2020-02-24 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1081214 129 2020-02-25 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1081215 129 2020-02-26 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1081216 129 2020-02-27 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1081217 129 2020-02-28 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1081218 129 2020-02-29 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1081219 129 2020-03-01 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1085079 136 2020-06-05 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085080 136 2020-06-06 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +1085081 136 2020-06-07 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1006042 149 2020-02-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1006043 149 2020-02-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1006044 149 2020-02-22 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +1006045 149 2020-02-23 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1008163 103 2020-01-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1008164 103 2020-01-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1081220 129 2020-03-02 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1081221 129 2020-03-03 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1081222 129 2020-03-04 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1081237 129 2020-03-19 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1081238 129 2020-03-20 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1081239 129 2020-03-21 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1081240 129 2020-03-22 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1081241 129 2020-03-23 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1081242 129 2020-03-24 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1085082 136 2020-06-08 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085101 139 2020-05-02 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +1085102 139 2020-05-03 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1085680 146 2020-07-16 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1085681 146 2020-07-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1008165 103 2020-01-22 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1008166 103 2020-01-23 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1008167 103 2020-01-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1008168 103 2020-01-25 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +1008169 103 2020-01-26 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1008171 103 2020-01-28 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1008172 103 2020-01-29 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1081243 129 2020-03-25 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1081244 129 2020-03-26 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1081245 129 2020-03-27 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1081246 129 2020-03-28 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1081247 129 2020-03-29 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1081248 129 2020-03-30 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1081249 129 2020-03-31 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1081250 129 2020-04-01 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1085103 139 2020-05-04 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085104 139 2020-05-05 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085109 139 2020-05-10 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1008174 103 2020-01-31 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1008193 103 2020-02-19 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1008194 103 2020-02-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1008195 103 2020-02-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1008196 103 2020-02-22 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +1010312 121 2020-01-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1010314 121 2020-01-19 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1081251 129 2020-04-02 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1081252 129 2020-04-03 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1081268 129 2020-04-19 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1081269 143 2020-02-24 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1081270 143 2020-02-25 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1081271 143 2020-02-26 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1081272 143 2020-02-27 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1081273 143 2020-02-28 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1081274 143 2020-02-29 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1085111 139 2020-05-12 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085687 146 2020-07-23 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1010315 121 2020-01-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1010316 121 2020-01-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1010317 121 2020-01-22 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1010318 121 2020-01-23 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1010319 121 2020-01-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1010320 121 2020-01-25 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +1081275 143 2020-03-01 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1081276 143 2020-03-02 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1081277 143 2020-03-03 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1081278 143 2020-03-04 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1081279 143 2020-03-05 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1081280 143 2020-03-06 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1081281 143 2020-03-07 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1081296 143 2020-03-22 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1081297 143 2020-03-23 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1085126 139 2020-05-27 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085131 139 2020-06-01 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085132 139 2020-06-02 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1010321 121 2020-01-26 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1010322 121 2020-01-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1010323 121 2020-01-28 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1010324 121 2020-01-29 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1010325 121 2020-01-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1010326 121 2020-01-31 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1081298 143 2020-03-24 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1081299 143 2020-03-25 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1081300 143 2020-03-26 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1081301 143 2020-03-27 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1081302 143 2020-03-28 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1081303 143 2020-03-29 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1081304 143 2020-03-30 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1081305 143 2020-03-31 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1081306 143 2020-04-01 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1085133 139 2020-06-03 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085134 139 2020-06-04 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085688 146 2020-07-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1010327 121 2020-02-01 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +1010328 121 2020-02-02 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1010329 121 2020-02-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1010330 121 2020-02-04 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1010331 121 2020-02-05 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1081307 143 2020-04-02 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1081308 143 2020-04-03 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1081309 143 2020-04-04 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1081310 143 2020-04-05 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1081311 143 2020-04-06 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1083491 146 2020-04-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1083492 146 2020-04-22 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1083493 146 2020-04-23 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1083494 146 2020-04-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1083495 146 2020-04-25 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +1083496 146 2020-04-26 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1085135 139 2020-06-05 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085136 139 2020-06-06 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +1085137 139 2020-06-07 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1010332 121 2020-02-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1010333 121 2020-02-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1010334 121 2020-02-08 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +1010335 121 2020-02-09 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1010336 121 2020-02-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1010337 121 2020-02-11 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1083497 146 2020-04-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1083498 146 2020-04-28 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1083499 146 2020-04-29 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1083500 146 2020-04-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1083501 146 2020-05-01 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1083502 146 2020-05-02 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +1083503 146 2020-05-03 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1083504 146 2020-05-04 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1083505 146 2020-05-05 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1083520 146 2020-05-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1085138 139 2020-06-08 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1010338 121 2020-02-12 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1010339 121 2020-02-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1010340 121 2020-02-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1010341 121 2020-02-15 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +1010342 121 2020-02-16 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1010343 121 2020-02-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1083521 146 2020-05-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1083522 146 2020-05-22 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1083523 146 2020-05-23 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +1083524 146 2020-05-24 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1083525 146 2020-05-25 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1083526 146 2020-05-26 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1083527 146 2020-05-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1083528 146 2020-05-28 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1083529 146 2020-05-29 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1085159 141 2020-05-04 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085160 141 2020-05-05 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085709 115 2020-06-19 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1085710 115 2020-06-20 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 06:40:00 +1085712 115 2020-06-22 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1010344 121 2020-02-18 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1010345 121 2020-02-19 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1010346 121 2020-02-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1010347 121 2020-02-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1010348 121 2020-02-22 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +1010349 121 2020-02-23 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1083530 146 2020-05-30 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +1083531 146 2020-05-31 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1083532 146 2020-06-01 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1083533 146 2020-06-02 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1083534 146 2020-06-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1083549 115 2020-04-23 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1083550 115 2020-04-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1083551 115 2020-04-25 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +1083552 115 2020-04-26 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1083553 115 2020-04-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1085161 141 2020-05-06 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085166 141 2020-05-11 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1012467 125 2020-01-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 03:20:00 +1012468 125 2020-01-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 03:20:00 +1012469 125 2020-01-22 08:00:00 12:00:00 \N \N \N 00:00:00 03:20:00 \N \N \N 04:00:00 00:00:00 \N 27 04:00:00 \N 00:00:00 03:20:00 +1012470 125 2020-01-23 \N \N \N \N \N 00:00:00 03:20:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 03:20:00 +1012471 125 2020-01-24 \N \N \N \N \N 00:00:00 03:20:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 03:20:00 +1083554 115 2020-04-28 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1083555 115 2020-04-29 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1083556 115 2020-04-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1083557 115 2020-05-01 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1083558 115 2020-05-02 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +1083559 115 2020-05-03 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1083560 115 2020-05-04 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1083561 115 2020-05-05 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1083562 115 2020-05-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1083563 115 2020-05-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1083578 115 2020-05-22 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1085168 141 2020-05-13 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085169 141 2020-05-14 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1012472 125 2020-01-25 \N \N \N \N \N 00:00:00 03:20:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 03:20:00 +1012473 125 2020-01-26 \N \N \N \N \N 00:00:00 03:20:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1012474 125 2020-01-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 03:20:00 +1012475 125 2020-01-28 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 03:20:00 +1012476 125 2020-01-29 08:00:00 12:00:00 \N \N \N 00:00:00 03:20:00 \N \N \N 04:00:00 00:00:00 \N 27 04:00:00 \N 00:00:00 03:20:00 +1012477 125 2020-01-30 \N \N \N \N \N 00:00:00 03:20:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 03:20:00 +1083579 115 2020-05-23 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +1083580 115 2020-05-24 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1083581 115 2020-05-25 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1083582 115 2020-05-26 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1083583 115 2020-05-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1083584 115 2020-05-28 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1083585 115 2020-05-29 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1083586 115 2020-05-30 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +1083587 115 2020-05-31 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1083588 115 2020-06-01 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1083589 115 2020-06-02 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1085188 141 2020-06-02 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085189 141 2020-06-03 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1012478 125 2020-01-31 \N \N \N \N \N 00:00:00 03:20:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 03:20:00 +1012497 125 2020-02-19 08:00:00 12:00:00 \N \N \N 00:00:00 03:20:00 \N \N \N 04:00:00 00:00:00 \N 27 04:00:00 \N 00:00:00 03:20:00 +1012498 125 2020-02-20 \N \N \N \N \N 00:00:00 03:20:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 03:20:00 +1012499 125 2020-02-21 \N \N \N \N \N 00:00:00 03:20:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 03:20:00 +1012500 125 2020-02-22 \N \N \N \N \N 00:00:00 03:20:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 03:20:00 +1012501 125 2020-02-23 \N \N \N \N \N 00:00:00 03:20:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1014612 119 2020-01-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1083590 115 2020-06-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1083591 115 2020-06-04 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1083592 115 2020-06-05 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1083607 114 2020-04-25 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +1083608 114 2020-04-26 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1083609 114 2020-04-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1083610 114 2020-04-28 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1083611 114 2020-04-29 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1083612 114 2020-04-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1083613 114 2020-05-01 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1085190 141 2020-06-04 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085716 115 2020-06-26 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1085717 115 2020-06-27 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 06:40:00 +1014613 119 2020-01-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1014614 119 2020-01-15 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1014615 119 2020-01-16 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1014616 119 2020-01-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1014617 119 2020-01-18 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +1083614 114 2020-05-02 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +1083615 114 2020-05-03 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1083616 114 2020-05-04 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1083617 114 2020-05-05 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1083618 114 2020-05-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1083619 114 2020-05-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1083620 114 2020-05-08 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1083621 114 2020-05-09 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +1083622 114 2020-05-10 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1083636 114 2020-05-24 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1085191 141 2020-06-05 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085196 141 2020-06-10 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085197 141 2020-06-11 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1014618 119 2020-01-19 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1014619 119 2020-01-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1014620 119 2020-01-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1014621 119 2020-01-22 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1014622 119 2020-01-23 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1014623 119 2020-01-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1083637 114 2020-05-25 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1083638 114 2020-05-26 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1083639 114 2020-05-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1083640 114 2020-05-28 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1083641 114 2020-05-29 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1083642 114 2020-05-30 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +1083643 114 2020-05-31 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1083644 114 2020-06-01 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1083645 114 2020-06-02 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1085199 141 2020-06-13 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +1085219 122 2020-05-08 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1085220 122 2020-05-09 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +1014624 119 2020-01-25 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +1014625 119 2020-01-26 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1014626 119 2020-01-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1014627 119 2020-01-28 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1014628 119 2020-01-29 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1014629 119 2020-01-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1083646 114 2020-06-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1083647 114 2020-06-04 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1083662 112 2020-04-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1083663 112 2020-04-25 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +1083664 112 2020-04-26 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1083665 112 2020-04-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1083666 112 2020-04-28 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1083667 112 2020-04-29 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1083668 112 2020-04-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1083669 112 2020-05-01 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1085221 122 2020-05-10 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1085222 122 2020-05-11 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1085718 115 2020-06-28 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1014630 119 2020-01-31 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1014631 119 2020-02-01 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +1014632 119 2020-02-02 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1014633 119 2020-02-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1014634 119 2020-02-04 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1014636 119 2020-02-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1083670 112 2020-05-02 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +1083671 112 2020-05-03 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1083672 112 2020-05-04 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1083673 112 2020-05-05 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1083674 112 2020-05-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1083675 112 2020-05-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1083676 112 2020-05-08 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1083677 112 2020-05-09 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +1083693 112 2020-05-25 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1083694 112 2020-05-26 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1085227 122 2020-05-16 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +1085228 122 2020-05-17 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1085724 115 2020-07-04 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 06:40:00 +1085747 115 2020-07-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1014637 119 2020-02-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1014638 119 2020-02-08 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +1014639 119 2020-02-09 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1014640 119 2020-02-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1014641 119 2020-02-11 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1014642 119 2020-02-12 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1083695 112 2020-05-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1083696 112 2020-05-28 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1083697 112 2020-05-29 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1083698 112 2020-05-30 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +1083699 112 2020-05-31 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1083700 108 2020-04-20 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1083701 108 2020-04-21 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1083702 108 2020-04-22 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1083703 108 2020-04-23 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085243 122 2020-06-01 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1085244 122 2020-06-02 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1085249 122 2020-06-07 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1085770 114 2020-06-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1014643 119 2020-02-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1014644 119 2020-02-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1014645 119 2020-02-15 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +1014646 119 2020-02-16 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1014647 119 2020-02-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1014648 119 2020-02-18 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1083704 108 2020-04-24 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1083705 108 2020-04-25 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +1083706 108 2020-04-26 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1083721 108 2020-05-11 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1083722 108 2020-05-12 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1083723 108 2020-05-13 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1083724 108 2020-05-14 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1083725 108 2020-05-15 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1083726 108 2020-05-16 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +1083727 108 2020-05-17 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1085250 122 2020-06-08 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1085251 122 2020-06-09 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1014649 119 2020-02-19 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1014650 119 2020-02-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1014651 119 2020-02-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1014652 119 2020-02-22 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +1014653 119 2020-02-23 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1016770 113 2020-01-19 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1083728 108 2020-05-18 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1083729 108 2020-05-19 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1083730 108 2020-05-20 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1083731 108 2020-05-21 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1083732 108 2020-05-22 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1083733 108 2020-05-23 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +1083734 108 2020-05-24 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1083735 108 2020-05-25 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1083750 108 2020-06-09 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085257 106 2020-04-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 04:10:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 04:10:00 +1085272 106 2020-05-05 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 04:10:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 04:10:00 +1085273 106 2020-05-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 04:10:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 04:10:00 +1085775 114 2020-06-29 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +997384 112 2020-01-01 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +997385 112 2020-01-02 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +997386 112 2020-01-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +997387 112 2020-01-04 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +997388 112 2020-01-05 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +997389 112 2020-01-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1083751 108 2020-06-10 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1083752 108 2020-06-11 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1083753 108 2020-06-12 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1083754 108 2020-06-13 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +1083755 108 2020-06-14 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1083756 135 2020-04-20 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1083757 135 2020-04-21 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1083758 135 2020-04-22 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1083759 135 2020-04-23 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1083760 135 2020-04-24 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085274 106 2020-05-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 04:10:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 04:10:00 +1085780 114 2020-07-04 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 06:40:00 +1085803 114 2020-07-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +997406 112 2020-01-23 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +997407 112 2020-01-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +997408 112 2020-01-25 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +997409 112 2020-01-26 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +997410 112 2020-01-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +997411 112 2020-01-28 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +997412 112 2020-01-29 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1083761 135 2020-04-25 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +1083762 135 2020-04-26 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1083763 135 2020-04-27 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1083764 135 2020-04-28 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1083765 135 2020-04-29 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1083767 135 2020-05-01 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1083768 135 2020-05-02 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +1083783 135 2020-05-17 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1083784 135 2020-05-18 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085279 106 2020-05-12 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 04:10:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 04:10:00 +1085280 106 2020-05-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 04:10:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 04:10:00 +1085808 114 2020-08-01 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 06:40:00 +1016771 113 2020-01-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1016772 113 2020-01-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1016773 113 2020-01-22 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1016774 113 2020-01-23 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1016775 113 2020-01-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1016776 113 2020-01-25 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +1016777 113 2020-01-26 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1016778 113 2020-01-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1016779 113 2020-01-28 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1016780 113 2020-01-29 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1016781 113 2020-01-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1016782 113 2020-01-31 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1083785 135 2020-05-19 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1083786 135 2020-05-20 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1083787 135 2020-05-21 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1083788 135 2020-05-22 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1083789 135 2020-05-23 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +1083790 135 2020-05-24 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1016801 113 2020-02-19 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1016802 113 2020-02-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1016803 113 2020-02-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1016804 113 2020-02-22 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +1016805 113 2020-02-23 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1018917 147 2020-01-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1018918 147 2020-01-15 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1018919 147 2020-01-16 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1018920 147 2020-01-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1018921 147 2020-01-18 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +1018922 147 2020-01-19 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1018923 147 2020-01-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1083791 135 2020-05-25 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1083792 135 2020-05-26 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1083793 135 2020-05-27 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1083794 135 2020-05-28 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1083795 135 2020-05-29 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085281 106 2020-05-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 04:10:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 04:10:00 +1018924 147 2020-01-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1018925 147 2020-01-22 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1018926 147 2020-01-23 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1018927 147 2020-01-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1018928 147 2020-01-25 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +1018929 147 2020-01-26 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1018930 147 2020-01-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1018931 147 2020-01-28 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1018932 147 2020-01-29 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1018933 147 2020-01-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1018934 147 2020-01-31 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1018935 147 2020-02-01 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +1083796 135 2020-05-30 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +1083797 135 2020-05-31 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1083798 135 2020-06-01 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1083813 127 2020-04-21 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1083814 127 2020-04-22 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085282 106 2020-05-15 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 04:10:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 \N +1085826 108 2020-06-24 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1018936 147 2020-02-02 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1018937 147 2020-02-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1018938 147 2020-02-04 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1018939 147 2020-02-05 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1018940 147 2020-02-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1018941 147 2020-02-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1018942 147 2020-02-08 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +1018943 147 2020-02-09 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1018944 147 2020-02-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1018945 147 2020-02-11 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1018946 147 2020-02-12 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1018947 147 2020-02-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1083815 127 2020-04-23 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1083816 127 2020-04-24 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1083817 127 2020-04-25 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +1083818 127 2020-04-26 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1083819 127 2020-04-27 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085283 106 2020-05-16 \N \N \N \N \N 00:00:00 04:10:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1018948 147 2020-02-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1018949 147 2020-02-15 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +1018950 147 2020-02-16 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1018951 147 2020-02-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1018952 147 2020-02-18 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1018953 147 2020-02-19 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1018954 147 2020-02-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1021074 131 2020-01-19 \N \N \N \N \N 00:00:00 04:00:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1021075 131 2020-01-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 04:00:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 04:00:00 +1021076 131 2020-01-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 04:00:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 04:00:00 +1021077 131 2020-01-22 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 04:00:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 04:00:00 +1083820 127 2020-04-28 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1083821 127 2020-04-29 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1083822 127 2020-04-30 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1083823 127 2020-05-01 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1083824 127 2020-05-02 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +1083825 127 2020-05-03 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1085303 106 2020-06-05 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 04:10:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 \N +1021078 131 2020-01-23 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 04:00:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 04:00:00 +1021079 131 2020-01-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 04:00:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 04:00:00 +1021080 131 2020-01-25 \N \N \N \N \N 00:00:00 04:00:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1021081 131 2020-01-26 \N \N \N \N \N 00:00:00 04:00:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1021083 131 2020-01-28 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 04:00:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 04:00:00 +1021101 131 2020-02-15 \N \N \N \N \N 00:00:00 04:00:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1021102 131 2020-02-16 \N \N \N \N \N 00:00:00 04:00:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1021103 131 2020-02-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 04:00:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 04:00:00 +1021104 131 2020-02-18 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 04:00:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 04:00:00 +1021105 131 2020-02-19 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 04:00:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 04:00:00 +1021106 131 2020-02-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 04:00:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 04:00:00 +1021107 131 2020-02-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 04:00:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 04:00:00 +1021108 131 2020-02-22 \N \N \N \N \N 00:00:00 04:00:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1021109 131 2020-02-23 \N \N \N \N \N 00:00:00 04:00:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1083826 127 2020-05-04 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1083827 127 2020-05-05 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1083842 127 2020-05-20 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1083843 127 2020-05-21 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085305 106 2020-06-07 \N \N \N \N \N 00:00:00 04:10:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1023223 104 2020-01-16 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:00:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:00:00 +1023224 104 2020-01-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:00:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:00:00 +1023225 104 2020-01-18 \N \N \N \N \N 00:00:00 06:00:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1023226 104 2020-01-19 \N \N \N \N \N 00:00:00 06:00:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1023227 104 2020-01-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:00:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:00:00 +1023228 104 2020-01-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:00:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:00:00 +1023229 104 2020-01-22 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:00:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:00:00 +1023230 104 2020-01-23 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:00:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:00:00 +1023231 104 2020-01-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:00:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:00:00 +1023232 104 2020-01-25 \N \N \N \N \N 00:00:00 06:00:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1023233 104 2020-01-26 \N \N \N \N \N 00:00:00 06:00:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1023234 104 2020-01-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:00:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:00:00 +1083844 127 2020-05-22 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1083845 127 2020-05-23 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +1083846 127 2020-05-24 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1083847 127 2020-05-25 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1083848 127 2020-05-26 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1083849 127 2020-05-27 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085831 108 2020-06-29 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1085836 108 2020-07-04 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 06:40:00 +1023235 104 2020-01-28 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:00:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:00:00 +1023236 104 2020-01-29 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:00:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:00:00 +1023237 104 2020-01-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:00:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:00:00 +1023238 104 2020-01-31 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:00:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:00:00 +1023239 104 2020-02-01 \N \N \N \N \N 00:00:00 06:00:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1023240 104 2020-02-02 \N \N \N \N \N 00:00:00 06:00:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1023241 104 2020-02-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:00:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:00:00 +1023242 104 2020-02-04 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:00:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:00:00 +1023243 104 2020-02-05 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:00:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:00:00 +1023244 104 2020-02-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:00:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:00:00 +1023245 104 2020-02-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:00:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:00:00 +1023246 104 2020-02-08 \N \N \N \N \N 00:00:00 06:00:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1083850 127 2020-05-28 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1083851 127 2020-05-29 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1083852 127 2020-05-30 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +1083853 127 2020-05-31 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1083854 127 2020-06-01 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085310 106 2020-06-12 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 04:10:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 \N +1023247 104 2020-02-09 \N \N \N \N \N 00:00:00 06:00:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1023248 104 2020-02-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:00:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:00:00 +1023249 104 2020-02-11 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:00:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:00:00 +1023250 104 2020-02-12 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:00:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:00:00 +1023251 104 2020-02-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:00:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:00:00 +1023252 104 2020-02-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:00:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:00:00 +1025409 151 2020-02-19 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1025410 151 2020-02-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1025411 151 2020-02-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1025412 151 2020-02-22 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +1025413 151 2020-02-23 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1027530 138 2020-01-19 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1083855 127 2020-06-02 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1083856 127 2020-06-03 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1083871 149 2020-04-23 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1083872 149 2020-04-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1083873 149 2020-04-25 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +1085855 108 2020-07-23 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1085860 108 2020-07-28 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1085864 108 2020-08-01 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 06:40:00 +1027532 138 2020-01-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1027533 138 2020-01-22 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1027534 138 2020-01-23 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1027535 138 2020-01-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1027536 138 2020-01-25 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +1027537 138 2020-01-26 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1027538 138 2020-01-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1027539 138 2020-01-28 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1027540 138 2020-01-29 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1027541 138 2020-01-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1027542 138 2020-01-31 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1027543 138 2020-02-01 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +1083874 149 2020-04-26 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1083875 149 2020-04-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1083876 149 2020-04-28 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1083877 149 2020-04-29 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1083878 149 2020-04-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1085313 110 2020-04-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1085878 135 2020-06-20 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 06:40:00 +1027544 138 2020-02-02 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1027545 138 2020-02-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1027546 138 2020-02-04 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1027547 138 2020-02-05 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1027548 138 2020-02-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1027549 138 2020-02-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1027550 138 2020-02-08 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +1027551 138 2020-02-09 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1027557 138 2020-02-15 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +1029700 105 2020-02-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1029701 105 2020-02-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1029702 105 2020-02-08 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +1083879 149 2020-05-01 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1083880 149 2020-05-02 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +1083881 149 2020-05-03 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1083882 149 2020-05-04 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1083883 149 2020-05-05 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1085331 110 2020-05-08 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1085332 110 2020-05-09 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +1029703 105 2020-02-09 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1029704 105 2020-02-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1029705 105 2020-02-11 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1029706 105 2020-02-12 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1029707 105 2020-02-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1029708 105 2020-02-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1029709 105 2020-02-15 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +1029710 105 2020-02-16 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1029711 105 2020-02-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1029712 105 2020-02-18 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1029713 105 2020-02-19 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1029715 105 2020-02-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1029716 105 2020-02-22 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +1083884 149 2020-05-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1083885 149 2020-05-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1083900 149 2020-05-22 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1083901 149 2020-05-23 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +1083902 149 2020-05-24 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1029717 105 2020-02-23 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1031835 134 2020-01-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1031836 134 2020-01-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1031837 134 2020-01-22 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1031838 134 2020-01-23 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1031839 134 2020-01-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1031840 134 2020-01-25 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +1031841 134 2020-01-26 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1031842 134 2020-01-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1031843 134 2020-01-28 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1031844 134 2020-01-29 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1031845 134 2020-01-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1083903 149 2020-05-25 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1083904 149 2020-05-26 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1083905 149 2020-05-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1083906 149 2020-05-28 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1083907 149 2020-05-29 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1031846 134 2020-01-31 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1031847 134 2020-02-01 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +1031848 134 2020-02-02 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1031849 134 2020-02-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1031869 134 2020-02-23 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1033995 144 2020-01-28 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1033996 144 2020-01-29 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1033997 144 2020-01-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1033998 144 2020-01-31 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1033999 144 2020-02-01 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +1034000 144 2020-02-02 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1034001 144 2020-02-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1034002 144 2020-02-04 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1083908 149 2020-05-30 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +1083909 149 2020-05-31 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1083910 149 2020-06-01 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1083911 149 2020-06-02 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1083912 149 2020-06-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1085339 110 2020-05-16 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +1034003 144 2020-02-05 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1034004 144 2020-02-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1034005 144 2020-02-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1034006 144 2020-02-08 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +1034007 144 2020-02-09 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1034008 144 2020-02-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1034009 144 2020-02-11 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1034010 144 2020-02-12 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1034011 144 2020-02-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1034013 144 2020-02-15 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +1034014 144 2020-02-16 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1034015 144 2020-02-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1083913 149 2020-06-04 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1083914 149 2020-06-05 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1083929 103 2020-04-25 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +1083930 103 2020-04-26 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1083931 103 2020-04-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1083932 103 2020-04-28 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1085340 110 2020-05-17 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1034016 144 2020-02-18 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1034017 144 2020-02-19 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1034018 144 2020-02-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1034019 144 2020-02-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1034020 144 2020-02-22 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +1034021 144 2020-02-23 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1036139 102 2020-01-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1036140 102 2020-01-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1036141 102 2020-01-22 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1036142 102 2020-01-23 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1036143 102 2020-01-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1036144 102 2020-01-25 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +1036145 102 2020-01-26 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1083933 103 2020-04-29 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1083934 103 2020-04-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1083935 103 2020-05-01 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1083936 103 2020-05-02 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +1085341 110 2020-05-18 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1085897 135 2020-07-09 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1036146 102 2020-01-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1036147 102 2020-01-28 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1036148 102 2020-01-29 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1036149 102 2020-01-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1036150 102 2020-01-31 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1036169 102 2020-02-19 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1036170 102 2020-02-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1036171 102 2020-02-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1036172 102 2020-02-22 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +1036173 102 2020-02-23 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1038288 109 2020-01-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1038289 109 2020-01-18 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +1083937 103 2020-05-03 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1083938 103 2020-05-04 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1083939 103 2020-05-05 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1083940 103 2020-05-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1083941 103 2020-05-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1085342 110 2020-05-19 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1038290 109 2020-01-19 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1038291 109 2020-01-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1038292 109 2020-01-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1038293 109 2020-01-22 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1038294 109 2020-01-23 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1038295 109 2020-01-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1038296 109 2020-01-25 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +1038297 109 2020-01-26 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1038298 109 2020-01-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1038299 109 2020-01-28 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1038300 109 2020-01-29 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1038301 109 2020-01-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1083942 103 2020-05-08 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1083943 103 2020-05-09 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +1083944 103 2020-05-10 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1083959 103 2020-05-25 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1083960 103 2020-05-26 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1085362 110 2020-06-08 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1085906 135 2020-07-18 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 06:40:00 +1038302 109 2020-01-31 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1038303 109 2020-02-01 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +1038304 109 2020-02-02 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1038305 109 2020-02-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1038306 109 2020-02-04 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1038307 109 2020-02-05 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1038308 109 2020-02-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1038309 109 2020-02-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1038310 109 2020-02-08 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +1038311 109 2020-02-09 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1038312 109 2020-02-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1038313 109 2020-02-11 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1083961 103 2020-05-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1083962 103 2020-05-28 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1083963 103 2020-05-29 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1083964 103 2020-05-30 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +1083965 103 2020-05-31 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1083966 103 2020-06-01 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1085910 135 2020-07-22 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1085937 127 2020-06-23 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1038314 109 2020-02-12 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1038315 109 2020-02-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1038316 109 2020-02-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1038317 109 2020-02-15 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +1038318 109 2020-02-16 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1038319 109 2020-02-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1038320 109 2020-02-18 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1038321 109 2020-02-19 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1038322 109 2020-02-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1038323 109 2020-02-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1038324 109 2020-02-22 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +1038325 109 2020-02-23 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1083967 103 2020-06-02 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1083968 103 2020-06-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1083969 103 2020-06-04 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1083970 103 2020-06-05 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1083971 103 2020-06-06 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +1085363 110 2020-06-09 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1040443 118 2020-01-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1040444 118 2020-01-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1040445 118 2020-01-22 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1040446 118 2020-01-23 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1040447 118 2020-01-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1040448 118 2020-01-25 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +1040449 118 2020-01-26 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1040450 118 2020-01-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1040451 118 2020-01-28 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1040452 118 2020-01-29 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1040453 118 2020-01-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1083972 103 2020-06-07 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1083973 103 2020-06-08 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1083988 121 2020-04-28 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1083989 121 2020-04-29 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1083990 121 2020-04-30 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1083991 121 2020-05-01 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085956 127 2020-07-12 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1085960 127 2020-07-16 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1040454 118 2020-01-31 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1040473 118 2020-02-19 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1040474 118 2020-02-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1040475 118 2020-02-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1040476 118 2020-02-22 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +1040477 118 2020-02-23 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1042588 133 2020-01-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1042589 133 2020-01-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1042590 133 2020-01-15 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1042591 133 2020-01-16 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1042592 133 2020-01-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1042593 133 2020-01-18 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +1042594 133 2020-01-19 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1083992 121 2020-05-02 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +1083993 121 2020-05-03 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1083994 121 2020-05-04 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1083995 121 2020-05-05 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1083996 121 2020-05-06 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1042595 133 2020-01-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1042596 133 2020-01-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1042597 133 2020-01-22 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1042598 133 2020-01-23 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1042599 133 2020-01-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1042600 133 2020-01-25 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +1042601 133 2020-01-26 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1042602 133 2020-01-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1042603 133 2020-01-28 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1042604 133 2020-01-29 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1042605 133 2020-01-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1042606 133 2020-01-31 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1042607 133 2020-02-01 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +1042608 133 2020-02-02 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1083997 121 2020-05-07 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1083998 121 2020-05-08 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1083999 121 2020-05-09 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +1084000 121 2020-05-10 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1085961 127 2020-07-17 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1085984 127 2020-08-09 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1042609 133 2020-02-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1042610 133 2020-02-04 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1042611 133 2020-02-05 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1042612 133 2020-02-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1042613 133 2020-02-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1042614 133 2020-02-08 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +1042615 133 2020-02-09 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1042616 133 2020-02-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1042617 133 2020-02-11 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1042618 133 2020-02-12 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1042619 133 2020-02-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1042620 133 2020-02-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1042621 133 2020-02-15 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +1042622 133 2020-02-16 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1084001 121 2020-05-11 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1084002 121 2020-05-12 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1084017 121 2020-05-27 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1084018 121 2020-05-28 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +999541 108 2020-01-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +999542 108 2020-01-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +999543 108 2020-01-08 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +999544 108 2020-01-09 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +999545 108 2020-01-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +999546 108 2020-01-11 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +999547 108 2020-01-12 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +999548 108 2020-01-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +999549 108 2020-01-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +999550 108 2020-01-15 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +999551 108 2020-01-16 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +999552 108 2020-01-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +999553 108 2020-01-18 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +999554 108 2020-01-19 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +999555 108 2020-01-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +999556 108 2020-01-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +999557 108 2020-01-22 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +999558 108 2020-01-23 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +999576 108 2020-02-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +999577 108 2020-02-11 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +999578 108 2020-02-12 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +999579 108 2020-02-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +999580 108 2020-02-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +999582 108 2020-02-16 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +999583 108 2020-02-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +999584 108 2020-02-18 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +999585 108 2020-02-19 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +999586 108 2020-02-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +999587 108 2020-02-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +999588 108 2020-02-22 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +999589 108 2020-02-23 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1044755 111 2020-01-28 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1044756 111 2020-01-29 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1044757 111 2020-01-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1044758 111 2020-01-31 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1046894 128 2020-01-15 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1046895 128 2020-01-16 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1046896 128 2020-01-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1046897 128 2020-01-18 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +1046898 128 2020-01-19 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1046899 128 2020-01-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1046900 128 2020-01-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1046901 128 2020-01-22 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1046902 128 2020-01-23 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1046903 128 2020-01-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1046904 128 2020-01-25 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +1046905 128 2020-01-26 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1046906 128 2020-01-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1046907 128 2020-01-28 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1084026 121 2020-06-05 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1084027 121 2020-06-06 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +1084028 121 2020-06-07 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1084029 121 2020-06-08 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1046923 128 2020-02-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1046924 128 2020-02-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1046925 128 2020-02-15 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +1046926 128 2020-02-16 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1046927 128 2020-02-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1046928 128 2020-02-18 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1046929 128 2020-02-19 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1046930 128 2020-02-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1049050 142 2020-01-19 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1049051 142 2020-01-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1049052 142 2020-01-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1049053 142 2020-01-22 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1049054 142 2020-01-23 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1049055 142 2020-01-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1084049 117 2020-05-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1084050 117 2020-05-15 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1084051 117 2020-05-16 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +1084052 117 2020-05-17 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1085988 149 2020-06-18 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1051203 136 2020-01-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1051204 136 2020-01-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1051205 136 2020-01-22 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1051206 136 2020-01-23 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1051207 136 2020-01-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1051208 136 2020-01-25 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +1051209 136 2020-01-26 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1051210 136 2020-01-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1051211 136 2020-01-28 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1051212 136 2020-01-29 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1051213 136 2020-01-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1051214 136 2020-01-31 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1051215 136 2020-02-01 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +1051216 136 2020-02-02 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1084056 117 2020-05-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1084057 117 2020-05-22 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1084058 117 2020-05-23 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +1084059 117 2020-05-24 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1053357 140 2020-01-22 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1055506 139 2020-01-19 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1055507 139 2020-01-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1055508 139 2020-01-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1055509 139 2020-01-22 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1055510 139 2020-01-23 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1055511 139 2020-01-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1055512 139 2020-01-25 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +1055513 139 2020-01-26 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1055514 139 2020-01-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1055515 139 2020-01-28 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1055516 139 2020-01-29 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1055517 139 2020-01-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1055518 139 2020-01-31 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1055519 139 2020-02-01 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +1084079 117 2020-06-13 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +1084080 117 2020-06-14 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1084081 125 2020-04-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 03:20:00 +1057681 141 2020-02-11 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1057682 141 2020-02-12 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1057683 141 2020-02-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1057684 141 2020-02-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1057685 141 2020-02-15 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +1057686 141 2020-02-16 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1057687 141 2020-02-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1057688 141 2020-02-18 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1057689 141 2020-02-19 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1057690 141 2020-02-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1057691 141 2020-02-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1057692 141 2020-02-22 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +1057693 141 2020-02-23 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1059811 122 2020-01-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1084085 125 2020-04-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 03:20:00 +1084086 125 2020-04-25 \N \N \N \N \N 00:00:00 03:20:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 03:20:00 +1084087 125 2020-04-26 \N \N \N \N \N 00:00:00 03:20:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1084088 125 2020-04-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 03:20:00 +1061973 106 2020-01-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 04:10:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 04:10:00 +1061974 106 2020-01-31 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 04:10:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 \N +1061975 106 2020-02-01 \N \N \N \N \N 00:00:00 04:10:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1061976 106 2020-02-02 \N \N \N \N \N 00:00:00 04:10:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1061977 106 2020-02-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 04:10:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 04:10:00 +1061978 106 2020-02-04 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 04:10:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 04:10:00 +1061979 106 2020-02-05 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 04:10:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 04:10:00 +1061980 106 2020-02-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 04:10:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 04:10:00 +1061981 106 2020-02-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 04:10:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 \N +1061982 106 2020-02-08 \N \N \N \N \N 00:00:00 04:10:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1061983 106 2020-02-09 \N \N \N \N \N 00:00:00 04:10:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1061984 106 2020-02-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 04:10:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 04:10:00 +1061985 106 2020-02-11 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 04:10:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 04:10:00 +1061986 106 2020-02-12 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 04:10:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 04:10:00 +1084108 125 2020-05-17 \N \N \N \N \N 00:00:00 03:20:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1084109 125 2020-05-18 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 03:20:00 +1084110 125 2020-05-19 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 03:20:00 +1084111 125 2020-05-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 03:20:00 +1064119 110 2020-01-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1064120 110 2020-01-25 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +1064121 110 2020-01-26 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1064122 110 2020-01-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1064123 110 2020-01-28 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1064124 110 2020-01-29 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1064125 110 2020-01-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1064126 110 2020-01-31 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1064145 110 2020-02-19 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1064146 110 2020-02-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1064147 110 2020-02-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1064148 110 2020-02-22 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +1064149 110 2020-02-23 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1066264 145 2020-01-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1084116 125 2020-05-25 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 03:20:00 +1084117 125 2020-05-26 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 03:20:00 +1084118 125 2020-05-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 03:20:00 +1084133 125 2020-06-11 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 03:20:00 +1066281 145 2020-02-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1066282 145 2020-02-04 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1066283 145 2020-02-05 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1066284 145 2020-02-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1066285 145 2020-02-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1066286 145 2020-02-08 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +1066287 145 2020-02-09 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1066288 145 2020-02-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1066289 145 2020-02-11 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1066290 145 2020-02-12 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1066291 145 2020-02-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1066292 145 2020-02-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1066293 145 2020-02-15 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +1066294 145 2020-02-16 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1084138 119 2020-04-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1084139 119 2020-04-22 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1084140 119 2020-04-23 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1084141 119 2020-04-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1068427 148 2020-01-28 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1068428 148 2020-01-29 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1068429 148 2020-01-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1068430 148 2020-01-31 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1068449 148 2020-02-19 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1068450 148 2020-02-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1068451 148 2020-02-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1068452 148 2020-02-22 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +1068453 148 2020-02-23 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1070564 130 2020-01-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1070565 130 2020-01-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1070566 130 2020-01-15 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1070567 130 2020-01-16 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1084146 119 2020-04-29 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1084147 119 2020-04-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1084162 119 2020-05-15 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1084163 119 2020-05-16 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +1070585 130 2020-02-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1070586 130 2020-02-04 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1070587 130 2020-02-05 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1070588 130 2020-02-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1070589 130 2020-02-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1070590 130 2020-02-08 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +1070591 130 2020-02-09 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1070592 130 2020-02-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1070593 130 2020-02-11 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1070594 130 2020-02-12 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1070595 130 2020-02-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1070596 130 2020-02-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1070597 130 2020-02-15 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +1070598 130 2020-02-16 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1084169 119 2020-05-22 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1084170 119 2020-05-23 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +1084171 119 2020-05-24 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1084172 119 2020-05-25 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +914498 129 2020-02-04 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +914499 129 2020-02-05 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +914500 129 2020-02-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +914501 129 2020-02-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +914502 129 2020-02-08 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +914503 129 2020-02-09 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +914504 129 2020-02-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +914505 129 2020-02-11 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +914506 129 2020-02-12 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +914507 129 2020-02-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +914508 129 2020-02-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +914509 129 2020-02-15 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +914510 129 2020-02-16 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +914511 129 2020-02-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1084193 113 2020-04-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1084194 113 2020-04-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1084195 113 2020-04-22 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1084196 113 2020-04-23 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1074884 143 2020-01-29 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1074885 143 2020-01-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1074886 143 2020-01-31 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1074905 143 2020-02-19 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1074906 143 2020-02-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1074907 143 2020-02-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1074908 143 2020-02-22 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +1074909 143 2020-02-23 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1079160 146 2020-02-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079161 146 2020-02-25 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079162 146 2020-02-26 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079163 146 2020-02-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079164 146 2020-02-28 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079165 146 2020-02-29 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1084201 113 2020-04-28 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1084202 113 2020-04-29 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1084203 113 2020-04-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1085402 145 2020-05-23 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +1079182 146 2020-03-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079183 146 2020-03-18 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079184 146 2020-03-19 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079185 146 2020-03-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079186 146 2020-03-21 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1079187 146 2020-03-22 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1079188 146 2020-03-23 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079189 146 2020-03-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079190 146 2020-03-25 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079191 146 2020-03-26 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079192 146 2020-03-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079193 146 2020-03-28 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1079194 146 2020-03-29 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1079195 146 2020-03-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1084222 113 2020-05-19 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1084223 113 2020-05-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1084224 113 2020-05-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1079211 146 2020-04-15 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079212 146 2020-04-16 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079213 146 2020-04-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079214 146 2020-04-18 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1079215 146 2020-04-19 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1079216 115 2020-02-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079217 115 2020-02-25 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079218 115 2020-02-26 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079219 115 2020-02-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079220 115 2020-02-28 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079221 115 2020-02-29 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1079222 115 2020-03-01 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1079223 115 2020-03-02 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079224 115 2020-03-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1084230 113 2020-05-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1084231 113 2020-05-28 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1084232 113 2020-05-29 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1084233 113 2020-05-30 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +1079240 115 2020-03-19 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079241 115 2020-03-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079242 115 2020-03-21 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1079243 115 2020-03-22 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1079244 115 2020-03-23 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079245 115 2020-03-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079246 115 2020-03-25 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079247 115 2020-03-26 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079248 115 2020-03-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079249 115 2020-03-28 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1079250 115 2020-03-29 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1079251 115 2020-03-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079252 115 2020-03-31 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079253 115 2020-04-01 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1084252 147 2020-04-23 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1084253 147 2020-04-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1084254 147 2020-04-25 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +1084255 147 2020-04-26 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1079269 115 2020-04-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079270 115 2020-04-18 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1079271 115 2020-04-19 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1079272 114 2020-02-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079273 114 2020-02-25 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079274 114 2020-02-26 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079275 114 2020-02-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079276 114 2020-02-28 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079277 114 2020-02-29 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1079278 114 2020-03-01 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1079279 114 2020-03-02 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079280 114 2020-03-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079281 114 2020-03-04 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079282 114 2020-03-05 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1084260 147 2020-05-01 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1084261 147 2020-05-02 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +1084262 147 2020-05-03 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1084263 147 2020-05-04 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1079298 114 2020-03-21 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1079299 114 2020-03-22 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1079300 114 2020-03-23 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079301 114 2020-03-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079302 114 2020-03-25 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079303 114 2020-03-26 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079304 114 2020-03-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079305 114 2020-03-28 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1079306 114 2020-03-29 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1079307 114 2020-03-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079308 114 2020-03-31 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079309 114 2020-04-01 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079310 114 2020-04-02 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079311 114 2020-04-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1084283 147 2020-05-24 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1084284 147 2020-05-25 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1084285 147 2020-05-26 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1084286 147 2020-05-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1085989 149 2020-06-19 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1079328 112 2020-02-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079329 112 2020-02-25 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079330 112 2020-02-26 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079331 112 2020-02-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079332 112 2020-02-28 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079333 112 2020-02-29 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1079334 112 2020-03-01 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1079335 112 2020-03-02 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079336 112 2020-03-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079337 112 2020-03-04 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079338 112 2020-03-05 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079339 112 2020-03-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079340 112 2020-03-07 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1079341 112 2020-03-08 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1084291 147 2020-06-01 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1084292 147 2020-06-02 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1084293 147 2020-06-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1084308 131 2020-04-23 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 04:00:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 04:00:00 +1079357 112 2020-03-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079358 112 2020-03-25 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079359 112 2020-03-26 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079360 112 2020-03-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079361 112 2020-03-28 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1079362 112 2020-03-29 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1079363 112 2020-03-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079364 112 2020-03-31 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079365 112 2020-04-01 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079366 112 2020-04-02 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079367 112 2020-04-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079368 112 2020-04-04 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1079369 112 2020-04-05 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1079370 112 2020-04-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1084313 131 2020-04-28 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 04:00:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 04:00:00 +1084314 131 2020-04-29 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 04:00:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 04:00:00 +1084315 131 2020-04-30 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 04:00:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 04:00:00 +1084316 131 2020-05-01 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 04:00:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 04:00:00 +1001742 135 2019-12-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1001743 135 2019-12-31 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1079386 108 2020-02-26 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1079387 108 2020-02-27 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1079388 108 2020-02-28 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1079389 108 2020-02-29 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1079390 108 2020-03-01 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1079391 108 2020-03-02 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1079392 108 2020-03-03 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1079393 108 2020-03-04 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1079394 108 2020-03-05 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1079395 108 2020-03-06 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1079396 108 2020-03-07 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1079397 108 2020-03-08 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1084321 131 2020-05-06 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 04:00:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 04:00:00 +1084322 131 2020-05-07 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 04:00:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 04:00:00 +1084337 131 2020-05-22 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 04:00:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 04:00:00 +1084338 131 2020-05-23 \N \N \N \N \N 00:00:00 04:00:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1079413 108 2020-03-24 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1079414 108 2020-03-25 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1079415 108 2020-03-26 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1079416 108 2020-03-27 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1079417 108 2020-03-28 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1079418 108 2020-03-29 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1079419 108 2020-03-30 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1079420 108 2020-03-31 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1079421 108 2020-04-01 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1079422 108 2020-04-02 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1079423 108 2020-04-03 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1079424 108 2020-04-04 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1079425 108 2020-04-05 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1079426 108 2020-04-06 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1084343 131 2020-05-28 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 04:00:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 04:00:00 +1084344 131 2020-05-29 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 04:00:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 04:00:00 +1084345 131 2020-05-30 \N \N \N \N \N 00:00:00 04:00:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1084346 131 2020-05-31 \N \N \N \N \N 00:00:00 04:00:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1079443 135 2020-02-27 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1079444 135 2020-02-28 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1079445 135 2020-02-29 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1079446 135 2020-03-01 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1079447 135 2020-03-02 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1079448 135 2020-03-03 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1079449 135 2020-03-04 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1079450 135 2020-03-05 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1079451 135 2020-03-06 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1079452 135 2020-03-07 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1079453 135 2020-03-08 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1079454 135 2020-03-09 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1079455 135 2020-03-10 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1079456 135 2020-03-11 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1084351 131 2020-06-05 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 04:00:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 04:00:00 +1084352 131 2020-06-06 \N \N \N \N \N 00:00:00 04:00:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1084368 104 2020-04-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:00:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:00:00 +1085448 148 2020-05-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1079472 135 2020-03-27 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1079473 135 2020-03-28 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1079474 135 2020-03-29 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1079475 135 2020-03-30 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1079476 135 2020-03-31 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1079477 135 2020-04-01 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1079478 135 2020-04-02 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1079479 135 2020-04-03 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1079480 135 2020-04-04 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1079481 135 2020-04-05 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1079482 135 2020-04-06 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1079483 135 2020-04-07 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1079484 135 2020-04-08 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1079485 135 2020-04-09 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1084375 104 2020-05-04 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:00:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:00:00 +1084376 104 2020-05-05 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:00:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:00:00 +1084377 104 2020-05-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:00:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:00:00 +1085453 148 2020-05-18 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1001688 135 2020-01-01 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1001689 135 2020-01-02 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1001690 135 2020-01-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1001691 135 2020-01-04 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +1001692 135 2020-01-05 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1001693 135 2020-01-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1001694 135 2020-01-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1001695 135 2020-01-08 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1001696 135 2020-01-09 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1001697 135 2020-01-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1001698 135 2020-01-11 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +1001699 135 2020-01-12 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1001700 135 2020-01-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1001701 135 2020-01-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1001702 135 2020-01-15 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1001703 135 2020-01-16 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1001704 135 2020-01-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1079501 127 2020-02-29 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1001705 135 2020-01-18 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +1001706 135 2020-01-19 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1001707 135 2020-01-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1001708 135 2020-01-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1001709 135 2020-01-22 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1001710 135 2020-01-23 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1001711 135 2020-01-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1001712 135 2020-01-25 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +1001713 135 2020-01-26 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1001714 135 2020-01-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1001715 135 2020-01-28 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1001716 135 2020-01-29 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1001717 135 2020-01-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1001718 135 2020-01-31 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1001719 135 2020-02-01 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +1001720 135 2020-02-02 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1001721 135 2020-02-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1001722 135 2020-02-04 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1085994 149 2020-06-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1085998 149 2020-06-28 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1079505 127 2020-03-04 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1079506 127 2020-03-05 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1079507 127 2020-03-06 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1079508 127 2020-03-07 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1079509 127 2020-03-08 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1079510 127 2020-03-09 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1079511 127 2020-03-10 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1079512 127 2020-03-11 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1079513 127 2020-03-12 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1079514 127 2020-03-13 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1079515 127 2020-03-14 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1079516 127 2020-03-15 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1079517 127 2020-03-16 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1079518 127 2020-03-17 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1084398 104 2020-05-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:00:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:00:00 +1084399 104 2020-05-28 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:00:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:00:00 +1084400 104 2020-05-29 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:00:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:00:00 +1084401 104 2020-05-30 \N \N \N \N \N 00:00:00 06:00:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1079535 127 2020-04-03 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1079536 127 2020-04-04 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1079537 127 2020-04-05 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1079538 127 2020-04-06 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1079539 127 2020-04-07 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1079540 127 2020-04-08 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1079541 127 2020-04-09 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1079542 127 2020-04-10 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1079543 127 2020-04-11 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1079544 127 2020-04-12 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1079545 127 2020-04-13 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1079546 127 2020-04-14 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1079547 127 2020-04-15 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1079548 127 2020-04-16 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1084406 104 2020-06-04 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:00:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:00:00 +1084407 104 2020-06-05 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:00:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:00:00 +1084408 104 2020-06-06 \N \N \N \N \N 00:00:00 06:00:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1084409 104 2020-06-07 \N \N \N \N \N 00:00:00 06:00:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1079564 149 2020-03-07 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1079565 149 2020-03-08 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1079566 149 2020-03-09 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079567 149 2020-03-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079568 149 2020-03-11 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079569 149 2020-03-12 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079570 149 2020-03-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079571 149 2020-03-14 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1079572 149 2020-03-15 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1079573 149 2020-03-16 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079574 149 2020-03-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079575 149 2020-03-18 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079576 149 2020-03-19 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079577 149 2020-03-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1084428 151 2020-05-01 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1084429 151 2020-05-02 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +1084430 151 2020-05-03 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1084431 151 2020-05-04 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1079595 149 2020-04-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079596 149 2020-04-08 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079597 149 2020-04-09 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079598 149 2020-04-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079599 149 2020-04-11 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1079600 149 2020-04-12 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1079601 149 2020-04-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079602 149 2020-04-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079603 149 2020-04-15 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079604 149 2020-04-16 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079605 149 2020-04-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079606 149 2020-04-18 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1079607 149 2020-04-19 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1079608 103 2020-02-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1084437 151 2020-05-10 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1084438 151 2020-05-11 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1084439 151 2020-05-12 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1084452 151 2020-05-25 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1079625 103 2020-03-12 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079626 103 2020-03-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079627 103 2020-03-14 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1079628 103 2020-03-15 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1079629 103 2020-03-16 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079630 103 2020-03-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079631 103 2020-03-18 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079632 103 2020-03-19 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079633 103 2020-03-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079634 103 2020-03-21 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1079635 103 2020-03-22 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1079636 103 2020-03-23 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079637 103 2020-03-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079638 103 2020-03-25 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1084457 151 2020-05-30 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +1084458 151 2020-05-31 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1084459 151 2020-06-01 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1084460 151 2020-06-02 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1079654 103 2020-04-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079655 103 2020-04-11 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1079656 103 2020-04-12 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1079657 103 2020-04-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079658 103 2020-04-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079659 103 2020-04-15 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079660 103 2020-04-16 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079661 103 2020-04-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079662 103 2020-04-18 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1079663 103 2020-04-19 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1079664 121 2020-02-24 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1079665 121 2020-02-25 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1079666 121 2020-02-26 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1079667 121 2020-02-27 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1084470 151 2020-06-12 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1084471 151 2020-06-13 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +1084472 151 2020-06-14 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1084473 138 2020-04-20 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1079684 121 2020-03-15 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1079685 121 2020-03-16 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1079686 121 2020-03-17 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1079687 121 2020-03-18 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1079688 121 2020-03-19 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1079689 121 2020-03-20 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1079690 121 2020-03-21 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1079691 121 2020-03-22 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1079692 121 2020-03-23 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1079693 121 2020-03-24 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1079694 121 2020-03-25 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1079695 121 2020-03-26 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1079696 121 2020-03-27 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1079697 121 2020-03-28 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1079698 121 2020-03-29 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1084493 138 2020-05-10 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1084494 138 2020-05-11 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1084495 138 2020-05-12 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1079713 121 2020-04-13 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1079714 121 2020-04-14 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1079715 121 2020-04-15 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1079716 121 2020-04-16 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1079717 121 2020-04-17 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1079718 121 2020-04-18 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1079719 121 2020-04-19 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1079720 125 2020-02-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 03:20:00 +1079721 125 2020-02-25 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 03:20:00 +1079722 125 2020-02-26 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 03:20:00 +1079723 125 2020-02-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 03:20:00 +1079724 125 2020-02-28 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 03:20:00 +1079725 125 2020-02-29 \N \N \N \N \N 00:00:00 03:20:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 03:20:00 +1079726 125 2020-03-01 \N \N \N \N \N 00:00:00 03:20:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1084500 138 2020-05-17 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1084501 138 2020-05-18 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1084502 138 2020-05-19 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1084517 138 2020-06-03 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1086021 149 2020-07-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086026 149 2020-07-26 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1079743 125 2020-03-18 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 03:20:00 +1079744 125 2020-03-19 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 03:20:00 +1079745 125 2020-03-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 03:20:00 +1079746 125 2020-03-21 \N \N \N \N \N 00:00:00 03:20:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 03:20:00 +1079747 125 2020-03-22 \N \N \N \N \N 00:00:00 03:20:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1079748 125 2020-03-23 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 03:20:00 +1079749 125 2020-03-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 03:20:00 +1079750 125 2020-03-25 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 03:20:00 +1079751 125 2020-03-26 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 03:20:00 +1079752 125 2020-03-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 03:20:00 +1079753 125 2020-03-28 \N \N \N \N \N 00:00:00 03:20:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 03:20:00 +1079754 125 2020-03-29 \N \N \N \N \N 00:00:00 03:20:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1079755 125 2020-03-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 03:20:00 +1079756 125 2020-03-31 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 03:20:00 +1084522 138 2020-06-08 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1084523 138 2020-06-09 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1084524 138 2020-06-10 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1079772 125 2020-04-16 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 03:20:00 +1079773 125 2020-04-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 03:20:00 +1079774 125 2020-04-18 \N \N \N \N \N 00:00:00 03:20:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 03:20:00 +1079775 125 2020-04-19 \N \N \N \N \N 00:00:00 03:20:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1079776 119 2020-02-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079777 119 2020-02-25 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079778 119 2020-02-26 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079779 119 2020-02-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079780 119 2020-02-28 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079781 119 2020-02-29 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1079782 119 2020-03-01 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1079783 119 2020-03-02 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079784 119 2020-03-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079785 119 2020-03-04 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1084530 105 2020-04-21 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1084531 105 2020-04-22 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1084546 105 2020-05-07 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1084547 105 2020-05-08 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1079801 119 2020-03-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079802 119 2020-03-21 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1079803 119 2020-03-22 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1079804 119 2020-03-23 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079805 119 2020-03-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079806 119 2020-03-25 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079807 119 2020-03-26 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079808 119 2020-03-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079809 119 2020-03-28 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1079810 119 2020-03-29 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1079811 119 2020-03-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079812 119 2020-03-31 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079813 119 2020-04-01 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079814 119 2020-04-02 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1084552 105 2020-05-13 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1084553 105 2020-05-14 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1084554 105 2020-05-15 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1084555 105 2020-05-16 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +1086042 103 2020-06-16 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1079830 119 2020-04-18 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1079831 119 2020-04-19 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1079832 113 2020-02-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079833 113 2020-02-25 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079834 113 2020-02-26 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079835 113 2020-02-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079836 113 2020-02-28 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079837 113 2020-02-29 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1079838 113 2020-03-01 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1079839 113 2020-03-02 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079840 113 2020-03-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079841 113 2020-03-04 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079842 113 2020-03-05 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079843 113 2020-03-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1084560 105 2020-05-21 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1084575 105 2020-06-05 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1084576 105 2020-06-06 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +1084577 105 2020-06-07 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1079860 113 2020-03-23 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079861 113 2020-03-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079862 113 2020-03-25 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079863 113 2020-03-26 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079864 113 2020-03-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079865 113 2020-03-28 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1079866 113 2020-03-29 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1079867 113 2020-03-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079868 113 2020-03-31 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079869 113 2020-04-01 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079870 113 2020-04-02 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079871 113 2020-04-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079872 113 2020-04-04 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1079873 113 2020-04-05 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1084582 105 2020-06-12 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1084583 105 2020-06-13 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +1084584 105 2020-06-14 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1084585 134 2020-04-20 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1079889 147 2020-02-25 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079890 147 2020-02-26 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079891 147 2020-02-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079892 147 2020-02-28 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079893 147 2020-02-29 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1079894 147 2020-03-01 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1079895 147 2020-03-02 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079896 147 2020-03-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079897 147 2020-03-04 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079898 147 2020-03-05 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079899 147 2020-03-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079900 147 2020-03-07 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1079901 147 2020-03-08 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1079902 147 2020-03-09 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1084606 134 2020-05-11 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1084607 134 2020-05-12 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1084608 134 2020-05-13 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1084609 134 2020-05-14 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1079918 147 2020-03-25 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079919 147 2020-03-26 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079920 147 2020-03-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079921 147 2020-03-28 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1079922 147 2020-03-29 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1079923 147 2020-03-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079924 147 2020-03-31 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079925 147 2020-04-01 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079926 147 2020-04-02 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079927 147 2020-04-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079928 147 2020-04-04 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1079929 147 2020-04-05 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1079930 147 2020-04-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079931 147 2020-04-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1084614 134 2020-05-19 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1084615 134 2020-05-20 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1084616 134 2020-05-21 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1084617 134 2020-05-22 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1079947 131 2020-02-27 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 04:00:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 04:00:00 +1079948 131 2020-02-28 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 04:00:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 04:00:00 +1079949 131 2020-02-29 \N \N \N \N \N 00:00:00 04:00:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1079950 131 2020-03-01 \N \N \N \N \N 00:00:00 04:00:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1079951 131 2020-03-02 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 04:00:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 04:00:00 +1079952 131 2020-03-03 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 04:00:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 04:00:00 +1079953 131 2020-03-04 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 04:00:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 04:00:00 +1079954 131 2020-03-05 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 04:00:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 04:00:00 +1079955 131 2020-03-06 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 04:00:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 04:00:00 +1079956 131 2020-03-07 \N \N \N \N \N 00:00:00 04:00:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1079957 131 2020-03-08 \N \N \N \N \N 00:00:00 04:00:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1079958 131 2020-03-09 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 04:00:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 04:00:00 +1079959 131 2020-03-10 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 04:00:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 04:00:00 +1079960 131 2020-03-11 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 04:00:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 04:00:00 +1084636 134 2020-06-10 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1084637 134 2020-06-11 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1084638 134 2020-06-12 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1084639 134 2020-06-13 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +1079976 131 2020-03-27 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 04:00:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 04:00:00 +1079977 131 2020-03-28 \N \N \N \N \N 00:00:00 04:00:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1079978 131 2020-03-29 \N \N \N \N \N 00:00:00 04:00:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1079979 131 2020-03-30 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 04:00:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 04:00:00 +1079980 131 2020-03-31 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 04:00:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 04:00:00 +1079981 131 2020-04-01 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 04:00:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 04:00:00 +1079982 131 2020-04-02 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 04:00:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 04:00:00 +1079983 131 2020-04-03 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 04:00:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 04:00:00 +1079984 131 2020-04-04 \N \N \N \N \N 00:00:00 04:00:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1079985 131 2020-04-05 \N \N \N \N \N 00:00:00 04:00:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1079986 131 2020-04-06 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 04:00:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 04:00:00 +1079987 131 2020-04-07 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 04:00:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 04:00:00 +1079988 131 2020-04-08 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 04:00:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 04:00:00 +1079989 131 2020-04-09 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 04:00:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 04:00:00 +1084644 102 2020-04-23 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1084645 102 2020-04-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1084646 102 2020-04-25 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +1084647 102 2020-04-26 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1080006 104 2020-03-01 \N \N \N \N \N 00:00:00 06:00:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1080007 104 2020-03-02 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:00:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:00:00 +1080008 104 2020-03-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:00:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:00:00 +1080009 104 2020-03-04 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:00:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:00:00 +1080010 104 2020-03-05 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:00:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:00:00 +1080011 104 2020-03-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:00:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:00:00 +1080012 104 2020-03-07 \N \N \N \N \N 00:00:00 06:00:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1080013 104 2020-03-08 \N \N \N \N \N 00:00:00 06:00:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1080014 104 2020-03-09 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:00:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:00:00 +1080015 104 2020-03-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:00:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:00:00 +1080016 104 2020-03-11 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:00:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:00:00 +1080017 104 2020-03-12 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:00:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:00:00 +1080018 104 2020-03-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:00:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:00:00 +1080019 104 2020-03-14 \N \N \N \N \N 00:00:00 06:00:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1080020 104 2020-03-15 \N \N \N \N \N 00:00:00 06:00:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1084666 102 2020-05-15 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1084667 102 2020-05-16 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +1084668 102 2020-05-17 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1080035 104 2020-03-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:00:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:00:00 +1080036 104 2020-03-31 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:00:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:00:00 +1080037 104 2020-04-01 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:00:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:00:00 +1080038 104 2020-04-02 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:00:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:00:00 +1080039 104 2020-04-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:00:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:00:00 +1080040 104 2020-04-04 \N \N \N \N \N 00:00:00 06:00:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1080041 104 2020-04-05 \N \N \N \N \N 00:00:00 06:00:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1080042 104 2020-04-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:00:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:00:00 +1080043 104 2020-04-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:00:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:00:00 +1080044 104 2020-04-08 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:00:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:00:00 +1080045 104 2020-04-09 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:00:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:00:00 +1080046 104 2020-04-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:00:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:00:00 +1080047 104 2020-04-11 \N \N \N \N \N 00:00:00 06:00:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1080048 104 2020-04-12 \N \N \N \N \N 00:00:00 06:00:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1084673 102 2020-05-22 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1084674 102 2020-05-23 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +1084675 102 2020-05-24 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1084676 102 2020-05-25 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1085514 130 2020-05-23 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +1080064 151 2020-03-03 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080065 151 2020-03-04 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080066 151 2020-03-05 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080067 151 2020-03-06 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080068 151 2020-03-07 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1080069 151 2020-03-08 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1080070 151 2020-03-09 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080071 151 2020-03-10 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080072 151 2020-03-11 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080073 151 2020-03-12 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080074 151 2020-03-13 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080075 151 2020-03-14 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1080076 151 2020-03-15 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1080077 151 2020-03-16 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1084695 102 2020-06-13 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +1084696 102 2020-06-14 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1084697 109 2020-04-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1084698 109 2020-04-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1080093 151 2020-04-01 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080094 151 2020-04-02 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080095 151 2020-04-03 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080096 151 2020-04-04 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1080097 151 2020-04-05 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1080098 151 2020-04-06 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080099 151 2020-04-07 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080100 151 2020-04-08 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080101 151 2020-04-09 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080102 151 2020-04-10 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080103 151 2020-04-11 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1080104 151 2020-04-12 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1080105 151 2020-04-13 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080106 151 2020-04-14 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1084704 109 2020-04-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1084705 109 2020-04-28 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1084706 109 2020-04-29 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1084721 109 2020-05-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1080122 138 2020-03-05 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080123 138 2020-03-06 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080124 138 2020-03-07 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1080125 138 2020-03-08 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1080126 138 2020-03-09 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080127 138 2020-03-10 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080128 138 2020-03-11 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080129 138 2020-03-12 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080130 138 2020-03-13 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080131 138 2020-03-14 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1080132 138 2020-03-15 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1080133 138 2020-03-16 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080134 138 2020-03-17 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080135 138 2020-03-18 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1084726 109 2020-05-19 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1084727 109 2020-05-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1084728 109 2020-05-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1085534 130 2020-06-12 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1080151 138 2020-04-03 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080152 138 2020-04-04 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1080153 138 2020-04-05 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1080154 138 2020-04-06 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080155 138 2020-04-07 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080156 138 2020-04-08 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080157 138 2020-04-09 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080158 138 2020-04-10 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080159 138 2020-04-11 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1080160 138 2020-04-12 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1080161 138 2020-04-13 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080162 138 2020-04-14 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080163 138 2020-04-15 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080164 138 2020-04-16 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1084734 109 2020-05-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1084735 109 2020-05-28 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1084750 109 2020-06-12 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1084751 109 2020-06-13 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +1080181 105 2020-03-08 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1080182 105 2020-03-09 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080183 105 2020-03-10 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080184 105 2020-03-11 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080185 105 2020-03-12 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080186 105 2020-03-13 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080187 105 2020-03-14 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1080188 105 2020-03-15 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1080189 105 2020-03-16 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080190 105 2020-03-17 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080191 105 2020-03-18 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080192 105 2020-03-19 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080193 105 2020-03-20 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080194 105 2020-03-21 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1084756 118 2020-04-23 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1084757 118 2020-04-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1084758 118 2020-04-25 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +1084759 118 2020-04-26 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1003840 127 2020-01-01 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1003841 127 2020-01-02 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1003842 127 2020-01-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1003843 127 2020-01-04 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +1003844 127 2020-01-05 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1003845 127 2020-01-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1003846 127 2020-01-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1003847 127 2020-01-08 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1003848 127 2020-01-09 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1003849 127 2020-01-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1003850 127 2020-01-11 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +1003851 127 2020-01-12 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1003852 127 2020-01-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1003853 127 2020-01-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1003854 127 2020-01-15 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1003855 127 2020-01-16 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1003856 127 2020-01-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1003857 127 2020-01-18 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +1086049 103 2020-06-23 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086053 103 2020-06-27 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 06:40:00 +1003874 127 2020-02-04 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1003875 127 2020-02-05 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1003876 127 2020-02-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1003877 127 2020-02-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1003878 127 2020-02-08 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +1003879 127 2020-02-09 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1003880 127 2020-02-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1003881 127 2020-02-11 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1003882 127 2020-02-12 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1003883 127 2020-02-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1003884 127 2020-02-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1003885 127 2020-02-15 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +1003886 127 2020-02-16 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1003887 127 2020-02-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1003888 127 2020-02-18 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1003889 127 2020-02-19 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1003890 127 2020-02-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1003891 127 2020-02-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1080211 105 2020-04-07 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080212 105 2020-04-08 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080213 105 2020-04-09 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080214 105 2020-04-10 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080215 105 2020-04-11 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1080216 105 2020-04-12 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1080217 105 2020-04-13 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080218 105 2020-04-14 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080219 105 2020-04-15 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080220 105 2020-04-16 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080221 105 2020-04-17 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080222 105 2020-04-18 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1080223 105 2020-04-19 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1080224 134 2020-02-24 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1084764 118 2020-05-01 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1084765 118 2020-05-02 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +1084781 118 2020-05-18 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1085538 129 2020-04-21 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1080240 134 2020-03-11 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080241 134 2020-03-12 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080242 134 2020-03-13 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080243 134 2020-03-14 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1080244 134 2020-03-15 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1080245 134 2020-03-16 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080246 134 2020-03-17 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080247 134 2020-03-18 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080248 134 2020-03-19 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080249 134 2020-03-20 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080250 134 2020-03-21 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1080251 134 2020-03-22 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1080252 134 2020-03-23 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080253 134 2020-03-24 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1084788 118 2020-05-25 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1084789 118 2020-05-26 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1084790 118 2020-05-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1084791 118 2020-05-28 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1080269 134 2020-04-09 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080270 134 2020-04-10 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080271 134 2020-04-11 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1080272 134 2020-04-12 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1080273 134 2020-04-13 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080274 134 2020-04-14 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080275 134 2020-04-15 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080276 134 2020-04-16 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080277 134 2020-04-17 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080278 134 2020-04-18 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1080279 134 2020-04-19 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1080280 144 2020-02-24 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080281 144 2020-02-25 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080282 144 2020-02-26 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1084810 133 2020-04-21 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1084811 133 2020-04-22 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1084812 133 2020-04-23 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1080298 144 2020-03-13 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080299 144 2020-03-14 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1080300 144 2020-03-15 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1080301 144 2020-03-16 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080302 144 2020-03-17 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080303 144 2020-03-18 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080304 144 2020-03-19 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080305 144 2020-03-20 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080306 144 2020-03-21 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1080307 144 2020-03-22 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1080308 144 2020-03-23 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080309 144 2020-03-24 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080310 144 2020-03-25 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080311 144 2020-03-26 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1084818 133 2020-04-29 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1084819 133 2020-04-30 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1084820 133 2020-05-01 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1084821 133 2020-05-02 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +1080328 102 2020-03-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1080329 102 2020-03-07 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1080330 102 2020-03-08 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1080331 102 2020-03-09 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1080332 102 2020-03-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1080333 102 2020-03-11 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1080334 102 2020-03-12 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1080335 102 2020-03-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1080336 102 2020-03-14 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1080337 102 2020-03-15 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1080338 102 2020-03-16 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1080339 102 2020-03-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1080340 102 2020-03-18 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1080341 102 2020-03-19 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1084840 133 2020-05-21 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1084841 133 2020-05-22 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1084842 133 2020-05-23 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +1084843 133 2020-05-24 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1080357 102 2020-04-04 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1080358 102 2020-04-05 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1080359 102 2020-04-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1080360 102 2020-04-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1080361 102 2020-04-08 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1080362 102 2020-04-09 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1080363 102 2020-04-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1080364 102 2020-04-11 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1080365 102 2020-04-12 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1080366 102 2020-04-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1080367 102 2020-04-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1080368 102 2020-04-15 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1080369 102 2020-04-16 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1080370 102 2020-04-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1084848 133 2020-05-29 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1084849 133 2020-05-30 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +1084850 133 2020-05-31 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1084851 133 2020-06-01 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1080387 109 2020-03-09 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1080388 109 2020-03-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1080389 109 2020-03-11 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1080390 109 2020-03-12 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1080391 109 2020-03-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1080392 109 2020-03-14 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1080393 109 2020-03-15 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1080394 109 2020-03-16 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1080395 109 2020-03-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1080396 109 2020-03-18 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1080397 109 2020-03-19 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1080398 109 2020-03-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1080399 109 2020-03-21 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1080400 109 2020-03-22 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1084870 111 2020-04-25 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +1084871 111 2020-04-26 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1084872 111 2020-04-27 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1084873 111 2020-04-28 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1080416 109 2020-04-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1080417 109 2020-04-08 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1080418 109 2020-04-09 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1080419 109 2020-04-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1080420 109 2020-04-11 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1080421 109 2020-04-12 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1080422 109 2020-04-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1080423 109 2020-04-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1080424 109 2020-04-15 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1080425 109 2020-04-16 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1080426 109 2020-04-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1080427 109 2020-04-18 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1080428 109 2020-04-19 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1080429 118 2020-02-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1084879 111 2020-05-04 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1084880 111 2020-05-05 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1084881 111 2020-05-06 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1084896 111 2020-05-21 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1080445 118 2020-03-11 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1080446 118 2020-03-12 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1080447 118 2020-03-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1080448 118 2020-03-14 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1080449 118 2020-03-15 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1080450 118 2020-03-16 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1080451 118 2020-03-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1080452 118 2020-03-18 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1080453 118 2020-03-19 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1080454 118 2020-03-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1080455 118 2020-03-21 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1080456 118 2020-03-22 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1080457 118 2020-03-23 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1080458 118 2020-03-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1084901 111 2020-05-26 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1084902 111 2020-05-27 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1084903 111 2020-05-28 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1084904 111 2020-05-29 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1080474 118 2020-04-09 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1080475 118 2020-04-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1080476 118 2020-04-11 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1080477 118 2020-04-12 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1080478 118 2020-04-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1080479 118 2020-04-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1080480 118 2020-04-15 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1080481 118 2020-04-16 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1080482 118 2020-04-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1080483 118 2020-04-18 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1080484 118 2020-04-19 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1080485 133 2020-02-24 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080486 133 2020-02-25 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080487 133 2020-02-26 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1084909 111 2020-06-03 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1084910 111 2020-06-04 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1084925 128 2020-04-24 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1084926 128 2020-04-25 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +1080503 133 2020-03-13 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080504 133 2020-03-14 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1080505 133 2020-03-15 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1080506 133 2020-03-16 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080507 133 2020-03-17 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080508 133 2020-03-18 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080509 133 2020-03-19 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080510 133 2020-03-20 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080511 133 2020-03-21 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1080512 133 2020-03-22 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1080513 133 2020-03-23 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080514 133 2020-03-24 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080515 133 2020-03-25 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080516 133 2020-03-26 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1084931 128 2020-04-30 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1084932 128 2020-05-01 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1084933 128 2020-05-02 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +1084934 128 2020-05-03 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1080532 133 2020-04-11 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1080533 133 2020-04-12 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1080534 133 2020-04-13 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080535 133 2020-04-14 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080536 133 2020-04-15 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080537 133 2020-04-16 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080538 133 2020-04-17 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080539 133 2020-04-18 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1080540 133 2020-04-19 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1080541 111 2020-02-24 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080542 111 2020-02-25 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080543 111 2020-02-26 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080544 111 2020-02-27 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080545 111 2020-02-28 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1084939 128 2020-05-08 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1084940 128 2020-05-09 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +1084956 128 2020-05-25 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1084957 128 2020-05-26 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1086072 103 2020-07-16 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1080562 111 2020-03-16 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080563 111 2020-03-17 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080564 111 2020-03-18 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080565 111 2020-03-19 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080566 111 2020-03-20 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080567 111 2020-03-21 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1080568 111 2020-03-22 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1080569 111 2020-03-23 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080570 111 2020-03-24 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080571 111 2020-03-25 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080572 111 2020-03-26 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080573 111 2020-03-27 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080574 111 2020-03-28 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1080575 111 2020-03-29 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1084962 128 2020-05-31 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1084963 128 2020-06-01 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1084964 128 2020-06-02 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1084965 128 2020-06-03 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1080591 111 2020-04-14 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080592 111 2020-04-15 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080593 111 2020-04-16 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080594 111 2020-04-17 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080595 111 2020-04-18 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1080596 111 2020-04-19 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1080597 128 2020-02-24 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080598 128 2020-02-25 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080599 128 2020-02-26 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080600 128 2020-02-27 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080601 128 2020-02-28 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080602 128 2020-02-29 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1080603 128 2020-03-01 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1080604 128 2020-03-02 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1084984 142 2020-04-27 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1084985 142 2020-04-28 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1084986 142 2020-04-29 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085575 129 2020-05-28 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1086081 103 2020-07-25 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 06:40:00 +1080620 128 2020-03-18 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080621 128 2020-03-19 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080622 128 2020-03-20 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080623 128 2020-03-21 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1080624 128 2020-03-22 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1080625 128 2020-03-23 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080626 128 2020-03-24 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080627 128 2020-03-25 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080628 128 2020-03-26 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080629 128 2020-03-27 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080630 128 2020-03-28 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1080631 128 2020-03-29 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1080632 128 2020-03-30 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080633 128 2020-03-31 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1084993 142 2020-05-06 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1084994 142 2020-05-07 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1084995 142 2020-05-08 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1084996 142 2020-05-09 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +1086082 103 2020-07-26 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1080649 128 2020-04-16 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080650 128 2020-04-17 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080651 128 2020-04-18 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1080652 128 2020-04-19 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1080653 142 2020-02-24 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080654 142 2020-02-25 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080655 142 2020-02-26 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080656 142 2020-02-27 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080657 142 2020-02-28 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080658 142 2020-02-29 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1080659 142 2020-03-01 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1080660 142 2020-03-02 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080661 142 2020-03-03 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080662 142 2020-03-04 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1085015 142 2020-05-28 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085016 142 2020-05-29 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085017 142 2020-05-30 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +1085018 142 2020-05-31 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1080678 142 2020-03-20 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080679 142 2020-03-21 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1080680 142 2020-03-22 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1080681 142 2020-03-23 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080682 142 2020-03-24 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080683 142 2020-03-25 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080684 142 2020-03-26 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080685 142 2020-03-27 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080686 142 2020-03-28 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1080687 142 2020-03-29 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1080688 142 2020-03-30 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080689 142 2020-03-31 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080690 142 2020-04-01 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080691 142 2020-04-02 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1085023 142 2020-06-05 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085024 142 2020-06-06 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +1085025 142 2020-06-07 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1085026 142 2020-06-08 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085578 129 2020-05-31 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1080707 142 2020-04-18 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1080708 142 2020-04-19 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1080709 136 2020-02-24 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080710 136 2020-02-25 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080711 136 2020-02-26 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080712 136 2020-02-27 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080713 136 2020-02-28 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080714 136 2020-02-29 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1080715 136 2020-03-01 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1080716 136 2020-03-02 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080717 136 2020-03-03 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080718 136 2020-03-04 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080719 136 2020-03-05 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080720 136 2020-03-06 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1085045 136 2020-05-02 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +1085046 136 2020-05-03 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1085047 136 2020-05-04 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085048 136 2020-05-05 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1080737 136 2020-03-23 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080738 136 2020-03-24 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080739 136 2020-03-25 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080740 136 2020-03-26 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080741 136 2020-03-27 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080742 136 2020-03-28 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1080743 136 2020-03-29 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1080744 136 2020-03-30 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080745 136 2020-03-31 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080746 136 2020-04-01 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080747 136 2020-04-02 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080748 136 2020-04-03 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080749 136 2020-04-04 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1080750 136 2020-04-05 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1085053 136 2020-05-10 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1085054 136 2020-05-11 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085055 136 2020-05-12 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085056 136 2020-05-13 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1086105 121 2020-06-23 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1086109 121 2020-06-27 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 06:40:00 +1080766 139 2020-02-25 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080767 139 2020-02-26 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080768 139 2020-02-27 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080769 139 2020-02-28 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080770 139 2020-02-29 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1080771 139 2020-03-01 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1080772 139 2020-03-02 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080773 139 2020-03-03 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080774 139 2020-03-04 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080775 139 2020-03-05 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080776 139 2020-03-06 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080777 139 2020-03-07 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1080778 139 2020-03-08 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1080779 139 2020-03-09 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1085075 136 2020-06-01 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085076 136 2020-06-02 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085077 136 2020-06-03 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085078 136 2020-06-04 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1080795 139 2020-03-25 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080796 139 2020-03-26 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080797 139 2020-03-27 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080798 139 2020-03-28 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1080799 139 2020-03-29 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1080800 139 2020-03-30 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080801 139 2020-03-31 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080802 139 2020-04-01 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080803 139 2020-04-02 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080804 139 2020-04-03 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080805 139 2020-04-04 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1080806 139 2020-04-05 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1080807 139 2020-04-06 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080808 139 2020-04-07 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1085097 139 2020-04-28 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085098 139 2020-04-29 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085099 139 2020-04-30 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085100 139 2020-05-01 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1080824 141 2020-02-27 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080825 141 2020-02-28 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080826 141 2020-02-29 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1080827 141 2020-03-01 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1080828 141 2020-03-02 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080829 141 2020-03-03 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080830 141 2020-03-04 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080831 141 2020-03-05 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080832 141 2020-03-06 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080833 141 2020-03-07 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1080834 141 2020-03-08 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1080835 141 2020-03-09 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080836 141 2020-03-10 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080837 141 2020-03-11 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1085105 139 2020-05-06 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085106 139 2020-05-07 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085107 139 2020-05-08 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085108 139 2020-05-09 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +1080853 141 2020-03-27 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080854 141 2020-03-28 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1080855 141 2020-03-29 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1080856 141 2020-03-30 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080857 141 2020-03-31 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080858 141 2020-04-01 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080859 141 2020-04-02 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080860 141 2020-04-03 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080861 141 2020-04-04 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1080862 141 2020-04-05 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1080863 141 2020-04-06 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080864 141 2020-04-07 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080865 141 2020-04-08 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080866 141 2020-04-09 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1085127 139 2020-05-28 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085128 139 2020-05-29 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085129 139 2020-05-30 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +1085130 139 2020-05-31 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1085598 143 2020-04-25 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +1005992 149 2020-01-01 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1005993 149 2020-01-02 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1005994 149 2020-01-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1005995 149 2020-01-04 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +1005996 149 2020-01-05 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1005997 149 2020-01-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1005998 149 2020-01-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1005999 149 2020-01-08 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1006000 149 2020-01-09 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1006001 149 2020-01-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1080883 122 2020-03-01 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1080884 122 2020-03-02 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1080885 122 2020-03-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1080886 122 2020-03-04 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1080887 122 2020-03-05 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1080888 122 2020-03-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1080889 122 2020-03-07 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1085599 143 2020-04-26 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1006002 149 2020-01-11 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +1006003 149 2020-01-12 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1006004 149 2020-01-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1006005 149 2020-01-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1006006 149 2020-01-15 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1006007 149 2020-01-16 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1006008 149 2020-01-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1006009 149 2020-01-18 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +1006010 149 2020-01-19 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1006011 149 2020-01-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1006012 149 2020-01-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1006013 149 2020-01-22 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1006014 149 2020-01-23 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1006015 149 2020-01-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1006016 149 2020-01-25 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +1006017 149 2020-01-26 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1006018 149 2020-01-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1080897 122 2020-03-15 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1080898 122 2020-03-16 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1080901 122 2020-03-19 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1080902 122 2020-03-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1080903 122 2020-03-21 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1080904 122 2020-03-22 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1080905 122 2020-03-23 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1080906 122 2020-03-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1080907 122 2020-03-25 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1080908 122 2020-03-26 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1080909 122 2020-03-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1080910 122 2020-03-28 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1080911 122 2020-03-29 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1080912 122 2020-03-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1080913 122 2020-03-31 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1080914 122 2020-04-01 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1085140 139 2020-06-10 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085155 141 2020-04-30 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085156 141 2020-05-01 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085157 141 2020-05-02 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +1080930 122 2020-04-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1080931 122 2020-04-18 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1080932 122 2020-04-19 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1080933 106 2020-02-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 04:10:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 04:10:00 +1080934 106 2020-02-25 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 04:10:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 04:10:00 +1080935 106 2020-02-26 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 04:10:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 04:10:00 +1080936 106 2020-02-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 04:10:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 04:10:00 +1080937 106 2020-02-28 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 04:10:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 \N +1080938 106 2020-02-29 \N \N \N \N \N 00:00:00 04:10:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1080939 106 2020-03-01 \N \N \N \N \N 00:00:00 04:10:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1080940 106 2020-03-02 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 04:10:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 04:10:00 +1080941 106 2020-03-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 04:10:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 04:10:00 +1080942 106 2020-03-04 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 04:10:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 04:10:00 +1080943 106 2020-03-05 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 04:10:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 04:10:00 +1085162 141 2020-05-07 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085163 141 2020-05-08 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085164 141 2020-05-09 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +1085165 141 2020-05-10 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1080960 106 2020-03-22 \N \N \N \N \N 00:00:00 04:10:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1080961 106 2020-03-23 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 04:10:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 04:10:00 +1080962 106 2020-03-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 04:10:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 04:10:00 +1080963 106 2020-03-25 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 04:10:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 04:10:00 +1080964 106 2020-03-26 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 04:10:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 04:10:00 +1080965 106 2020-03-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 04:10:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 \N +1080966 106 2020-03-28 \N \N \N \N \N 00:00:00 04:10:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1080967 106 2020-03-29 \N \N \N \N \N 00:00:00 04:10:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1080968 106 2020-03-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 04:10:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 04:10:00 +1080969 106 2020-03-31 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 04:10:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 04:10:00 +1080970 106 2020-04-01 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 04:10:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 04:10:00 +1080971 106 2020-04-02 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 04:10:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 04:10:00 +1080972 106 2020-04-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 04:10:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 \N +1080973 106 2020-04-04 \N \N \N \N \N 00:00:00 04:10:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1085184 141 2020-05-29 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085185 141 2020-05-30 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +1085186 141 2020-05-31 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1085187 141 2020-06-01 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085622 143 2020-05-19 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1080990 110 2020-02-25 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1080991 110 2020-02-26 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1080992 110 2020-02-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1080993 110 2020-02-28 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1080994 110 2020-02-29 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1080995 110 2020-03-01 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1080996 110 2020-03-02 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1080997 110 2020-03-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1080998 110 2020-03-04 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1080999 110 2020-03-05 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1081000 110 2020-03-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1081001 110 2020-03-07 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1081002 110 2020-03-08 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1081003 110 2020-03-09 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1085192 141 2020-06-06 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +1085193 141 2020-06-07 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1085194 141 2020-06-08 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085195 141 2020-06-09 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085627 143 2020-05-24 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1081019 110 2020-03-25 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1081020 110 2020-03-26 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1081021 110 2020-03-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1081022 110 2020-03-28 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1081023 110 2020-03-29 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1081024 110 2020-03-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1081025 110 2020-03-31 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1081026 110 2020-04-01 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1081027 110 2020-04-02 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1081028 110 2020-04-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1081029 110 2020-04-04 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1081030 110 2020-04-05 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1081031 110 2020-04-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1081032 110 2020-04-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1085215 122 2020-05-04 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1085216 122 2020-05-05 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1085217 122 2020-05-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1085218 122 2020-05-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1081048 145 2020-02-27 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1081049 145 2020-02-28 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1081050 145 2020-02-29 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1081051 145 2020-03-01 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1081052 145 2020-03-02 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1081053 145 2020-03-03 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1081054 145 2020-03-04 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1081055 145 2020-03-05 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1081056 145 2020-03-06 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1081057 145 2020-03-07 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1081058 145 2020-03-08 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1081059 145 2020-03-09 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1081060 145 2020-03-10 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1081061 145 2020-03-11 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1085223 122 2020-05-12 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1085224 122 2020-05-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1085225 122 2020-05-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1085226 122 2020-05-15 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1081077 145 2020-03-27 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1081078 145 2020-03-28 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1081079 145 2020-03-29 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1081080 145 2020-03-30 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1081081 145 2020-03-31 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1081082 145 2020-04-01 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1081083 145 2020-04-02 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1081084 145 2020-04-03 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1081085 145 2020-04-04 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1081086 145 2020-04-05 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1081087 145 2020-04-06 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1081088 145 2020-04-07 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1081089 145 2020-04-08 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1081090 145 2020-04-09 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1085245 122 2020-06-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1085246 122 2020-06-04 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1085247 122 2020-06-05 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1085248 122 2020-06-06 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +1081106 148 2020-02-29 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1081107 148 2020-03-01 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1081108 148 2020-03-02 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1081109 148 2020-03-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1081110 148 2020-03-04 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1081111 148 2020-03-05 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1081112 148 2020-03-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1081113 148 2020-03-07 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1081114 148 2020-03-08 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1081115 148 2020-03-09 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1081116 148 2020-03-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1081117 148 2020-03-11 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1081118 148 2020-03-12 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1081119 148 2020-03-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1085253 122 2020-06-11 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1085254 122 2020-06-12 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1085255 122 2020-06-13 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +1085256 122 2020-06-14 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1081136 148 2020-03-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1081137 148 2020-03-31 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1081138 148 2020-04-01 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1081139 148 2020-04-02 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1081140 148 2020-04-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1081141 148 2020-04-04 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1081142 148 2020-04-05 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1081143 148 2020-04-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1081144 148 2020-04-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1081145 148 2020-04-08 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1081146 148 2020-04-09 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1081147 148 2020-04-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1081148 148 2020-04-11 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1081149 148 2020-04-12 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1085275 106 2020-05-08 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 04:10:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 \N +1085276 106 2020-05-09 \N \N \N \N \N 00:00:00 04:10:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1085277 106 2020-05-10 \N \N \N \N \N 00:00:00 04:10:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1085278 106 2020-05-11 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 04:10:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 04:10:00 +1081165 130 2020-03-03 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1081166 130 2020-03-04 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1081167 130 2020-03-05 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1081168 130 2020-03-06 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1081169 130 2020-03-07 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1081170 130 2020-03-08 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1081171 130 2020-03-09 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1081172 130 2020-03-10 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1081173 130 2020-03-11 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1081174 130 2020-03-12 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1081175 130 2020-03-13 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1081176 130 2020-03-14 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1081177 130 2020-03-15 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1081178 130 2020-03-16 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1085284 106 2020-05-17 \N \N \N \N \N 00:00:00 04:10:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1085285 106 2020-05-18 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 04:10:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 04:10:00 +1085286 106 2020-05-19 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 04:10:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 04:10:00 +1085301 106 2020-06-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 04:10:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 04:10:00 +1081194 130 2020-04-01 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1081195 130 2020-04-02 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1081196 130 2020-04-03 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1081197 130 2020-04-04 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1081198 130 2020-04-05 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1081199 130 2020-04-06 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1081200 130 2020-04-07 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1081201 130 2020-04-08 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1081202 130 2020-04-09 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1081203 130 2020-04-10 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1081204 130 2020-04-11 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1081205 130 2020-04-12 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1081206 130 2020-04-13 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1081207 130 2020-04-14 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1085306 106 2020-06-08 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 04:10:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 04:10:00 +1085307 106 2020-06-09 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 04:10:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 04:10:00 +1085308 106 2020-06-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 04:10:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 04:10:00 +1085309 106 2020-06-11 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 04:10:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 04:10:00 +1081223 129 2020-03-05 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1081224 129 2020-03-06 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1081225 129 2020-03-07 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1081226 129 2020-03-08 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1081227 129 2020-03-09 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1081228 129 2020-03-10 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1081229 129 2020-03-11 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1081230 129 2020-03-12 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1081231 129 2020-03-13 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1081232 129 2020-03-14 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1081233 129 2020-03-15 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1081234 129 2020-03-16 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1081235 129 2020-03-17 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1081236 129 2020-03-18 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1085314 110 2020-04-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1085315 110 2020-04-22 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1085330 110 2020-05-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1085635 143 2020-06-01 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1081253 129 2020-04-04 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1081254 129 2020-04-05 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1081255 129 2020-04-06 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1081256 129 2020-04-07 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1081257 129 2020-04-08 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1081258 129 2020-04-09 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1081259 129 2020-04-10 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1081260 129 2020-04-11 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1081261 129 2020-04-12 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1081262 129 2020-04-13 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1081263 129 2020-04-14 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1081264 129 2020-04-15 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1081265 129 2020-04-16 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1081266 129 2020-04-17 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1081267 129 2020-04-18 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1085336 110 2020-05-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1085337 110 2020-05-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1085338 110 2020-05-15 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1081282 143 2020-03-08 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1081283 143 2020-03-09 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1081284 143 2020-03-10 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1081285 143 2020-03-11 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1081286 143 2020-03-12 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1081287 143 2020-03-13 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1081288 143 2020-03-14 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1081289 143 2020-03-15 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1081290 143 2020-03-16 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1081291 143 2020-03-17 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1081292 143 2020-03-18 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1081293 143 2020-03-19 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1081294 143 2020-03-20 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1081295 143 2020-03-21 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1085343 110 2020-05-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1085344 110 2020-05-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1085359 110 2020-06-05 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1085360 110 2020-06-06 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +1086114 121 2020-07-02 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1081312 143 2020-04-07 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1081313 143 2020-04-08 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1081314 143 2020-04-09 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1081315 143 2020-04-10 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1081316 143 2020-04-11 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1081317 143 2020-04-12 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1081318 143 2020-04-13 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1081319 143 2020-04-14 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1081320 143 2020-04-15 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1081321 143 2020-04-16 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1081322 143 2020-04-17 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1081323 143 2020-04-18 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1081324 143 2020-04-19 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1083490 146 2020-04-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1085365 110 2020-06-11 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1085366 110 2020-06-12 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1085367 110 2020-06-13 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +1085368 110 2020-06-14 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1083506 146 2020-05-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1083507 146 2020-05-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1083508 146 2020-05-08 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1083509 146 2020-05-09 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +1083510 146 2020-05-10 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1083511 146 2020-05-11 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1083512 146 2020-05-12 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1083513 146 2020-05-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1083514 146 2020-05-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1083515 146 2020-05-15 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1083516 146 2020-05-16 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +1083517 146 2020-05-17 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1083518 146 2020-05-18 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1083519 146 2020-05-19 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1085373 145 2020-04-24 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085374 145 2020-04-25 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +1085390 145 2020-05-11 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085652 146 2020-06-18 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086137 121 2020-07-25 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 06:40:00 +1083535 146 2020-06-04 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1083536 146 2020-06-05 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1083537 146 2020-06-06 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +1083538 146 2020-06-07 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1083539 146 2020-06-08 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1083540 146 2020-06-09 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1083541 146 2020-06-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1083542 146 2020-06-11 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1083543 146 2020-06-12 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1083544 146 2020-06-13 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +1083545 146 2020-06-14 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1083546 115 2020-04-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1083547 115 2020-04-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1083548 115 2020-04-22 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1085397 145 2020-05-18 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085398 145 2020-05-19 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085399 145 2020-05-20 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1083564 115 2020-05-08 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1083565 115 2020-05-09 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +1083566 115 2020-05-10 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1083567 115 2020-05-11 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1083568 115 2020-05-12 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1083569 115 2020-05-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1083570 115 2020-05-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1083571 115 2020-05-15 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1083572 115 2020-05-16 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +1083573 115 2020-05-17 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1083574 115 2020-05-18 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1083575 115 2020-05-19 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1083576 115 2020-05-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1083577 115 2020-05-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1085419 145 2020-06-09 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085420 145 2020-06-10 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085421 145 2020-06-11 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085422 145 2020-06-12 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1083593 115 2020-06-06 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +1083594 115 2020-06-07 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1083595 115 2020-06-08 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1083596 115 2020-06-09 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1083597 115 2020-06-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1083598 115 2020-06-11 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1083599 115 2020-06-12 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1083600 115 2020-06-13 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +1083601 115 2020-06-14 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1083602 114 2020-04-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1083603 114 2020-04-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1083604 114 2020-04-22 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1083605 114 2020-04-23 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1083606 114 2020-04-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1085427 148 2020-04-22 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1085428 148 2020-04-23 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1085429 148 2020-04-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1085430 148 2020-04-25 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +1008198 103 2019-12-30 08:00:00 12:00:00 \N \N \N 04:00:00 06:40:00 \N 5 \N 04:00:00 00:00:00 \N 27 08:00:00 \N 00:00:00 06:40:00 +1008199 103 2019-12-31 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1083623 114 2020-05-11 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1083624 114 2020-05-12 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1083625 114 2020-05-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1083626 114 2020-05-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1083627 114 2020-05-15 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1083628 114 2020-05-16 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +1083629 114 2020-05-17 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1083630 114 2020-05-18 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1083631 114 2020-05-19 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1083632 114 2020-05-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1083633 114 2020-05-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1083634 114 2020-05-22 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1083635 114 2020-05-23 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +1085449 148 2020-05-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1085450 148 2020-05-15 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1085451 148 2020-05-16 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +1083648 114 2020-06-05 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1083649 114 2020-06-06 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +1083650 114 2020-06-07 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1083651 114 2020-06-08 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1083652 114 2020-06-09 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1083653 114 2020-06-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1083654 114 2020-06-11 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1083655 114 2020-06-12 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1083656 114 2020-06-13 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +1083657 114 2020-06-14 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1083658 112 2020-04-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1083659 112 2020-04-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1083660 112 2020-04-22 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1083661 112 2020-04-23 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1085455 148 2020-05-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1085456 148 2020-05-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1085457 148 2020-05-22 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1085458 148 2020-05-23 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +1086142 121 2020-07-30 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1083678 112 2020-05-10 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1083679 112 2020-05-11 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1083680 112 2020-05-12 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1083681 112 2020-05-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1083682 112 2020-05-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1083683 112 2020-05-15 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1083684 112 2020-05-16 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +1083685 112 2020-05-17 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1083686 112 2020-05-18 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1083687 112 2020-05-19 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1083688 112 2020-05-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1083689 112 2020-05-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1083690 112 2020-05-22 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1083691 112 2020-05-23 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +1083692 112 2020-05-24 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1085477 148 2020-06-11 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1085478 148 2020-06-12 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1085479 148 2020-06-13 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +1085480 148 2020-06-14 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1083707 108 2020-04-27 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1083708 108 2020-04-28 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1083709 108 2020-04-29 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1083710 108 2020-04-30 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1083711 108 2020-05-01 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1083712 108 2020-05-02 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +1083713 108 2020-05-03 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1083714 108 2020-05-04 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1083715 108 2020-05-05 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1083716 108 2020-05-06 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1083717 108 2020-05-07 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1083718 108 2020-05-08 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1083719 108 2020-05-09 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +1083720 108 2020-05-10 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1085484 130 2020-04-23 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085485 130 2020-04-24 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085486 130 2020-04-25 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +1085487 130 2020-04-26 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1083736 108 2020-05-26 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1083737 108 2020-05-27 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1083738 108 2020-05-28 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1083739 108 2020-05-29 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1083740 108 2020-05-30 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +1083741 108 2020-05-31 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1083742 108 2020-06-01 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1083743 108 2020-06-02 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1083744 108 2020-06-03 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1083745 108 2020-06-04 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1083746 108 2020-06-05 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1083747 108 2020-06-06 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +1083748 108 2020-06-07 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1083749 108 2020-06-08 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085506 130 2020-05-15 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085507 130 2020-05-16 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +1085508 130 2020-05-17 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1085509 130 2020-05-18 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1008144 103 2020-01-01 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1008145 103 2020-01-02 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1008146 103 2020-01-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1008147 103 2020-01-04 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +1008148 103 2020-01-05 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1008149 103 2020-01-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1008150 103 2020-01-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1008151 103 2020-01-08 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1008152 103 2020-01-09 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1008153 103 2020-01-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1008154 103 2020-01-11 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +1008155 103 2020-01-12 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1008156 103 2020-01-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1008157 103 2020-01-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1008158 103 2020-01-15 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1008159 103 2020-01-16 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1008160 103 2020-01-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1008161 103 2020-01-18 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +1086164 117 2020-07-05 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1008175 103 2020-02-01 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +1008176 103 2020-02-02 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1008177 103 2020-02-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1008178 103 2020-02-04 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1008179 103 2020-02-05 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1008180 103 2020-02-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1008181 103 2020-02-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1008182 103 2020-02-08 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +1008183 103 2020-02-09 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1008184 103 2020-02-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1008185 103 2020-02-11 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1008186 103 2020-02-12 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1008187 103 2020-02-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1008188 103 2020-02-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1008189 103 2020-02-15 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +1008190 103 2020-02-16 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1008191 103 2020-02-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1008192 103 2020-02-18 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1083769 135 2020-05-03 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1083770 135 2020-05-04 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1083771 135 2020-05-05 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1083772 135 2020-05-06 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1083773 135 2020-05-07 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1083774 135 2020-05-08 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1083775 135 2020-05-09 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +1083776 135 2020-05-10 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1083777 135 2020-05-11 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1083778 135 2020-05-12 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1083779 135 2020-05-13 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1083780 135 2020-05-14 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1083781 135 2020-05-15 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1083782 135 2020-05-16 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +1085517 130 2020-05-26 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085518 130 2020-05-27 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085519 130 2020-05-28 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085682 146 2020-07-18 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 06:40:00 +1083799 135 2020-06-02 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1083800 135 2020-06-03 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1083801 135 2020-06-04 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1083802 135 2020-06-05 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1083803 135 2020-06-06 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +1083804 135 2020-06-07 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1083805 135 2020-06-08 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1083806 135 2020-06-09 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1083807 135 2020-06-10 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1083808 135 2020-06-11 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1083809 135 2020-06-12 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1083810 135 2020-06-13 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +1083811 135 2020-06-14 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1083812 127 2020-04-20 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085539 129 2020-04-22 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085540 129 2020-04-23 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085541 129 2020-04-24 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085542 129 2020-04-25 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +1083828 127 2020-05-06 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1083829 127 2020-05-07 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1083830 127 2020-05-08 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1083831 127 2020-05-09 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +1083832 127 2020-05-10 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1083833 127 2020-05-11 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1083834 127 2020-05-12 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1083835 127 2020-05-13 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1083836 127 2020-05-14 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1083837 127 2020-05-15 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1083838 127 2020-05-16 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +1083839 127 2020-05-17 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1083840 127 2020-05-18 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1083841 127 2020-05-19 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085547 129 2020-04-30 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085548 129 2020-05-01 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085549 129 2020-05-02 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +1085565 129 2020-05-18 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1083857 127 2020-06-04 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1083858 127 2020-06-05 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1083859 127 2020-06-06 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +1083860 127 2020-06-07 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1083861 127 2020-06-08 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1083862 127 2020-06-09 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1083863 127 2020-06-10 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1083864 127 2020-06-11 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1083865 127 2020-06-12 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1083866 127 2020-06-13 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +1083867 127 2020-06-14 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1083868 149 2020-04-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1083869 149 2020-04-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1083870 149 2020-04-22 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1085570 129 2020-05-23 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +1085571 129 2020-05-24 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1085572 129 2020-05-25 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085573 129 2020-05-26 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085689 146 2020-07-25 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 06:40:00 +1083886 149 2020-05-08 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1083887 149 2020-05-09 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +1083888 149 2020-05-10 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1083889 149 2020-05-11 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1083890 149 2020-05-12 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1083891 149 2020-05-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1083892 149 2020-05-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1083893 149 2020-05-15 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1083894 149 2020-05-16 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +1083895 149 2020-05-17 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1083896 149 2020-05-18 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1083897 149 2020-05-19 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1083898 149 2020-05-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1083899 149 2020-05-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1085593 143 2020-04-20 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085594 143 2020-04-21 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085595 143 2020-04-22 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085690 146 2020-07-26 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1083915 149 2020-06-06 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +1083916 149 2020-06-07 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1083917 149 2020-06-08 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1083918 149 2020-06-09 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1083919 149 2020-06-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1083920 149 2020-06-11 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1083921 149 2020-06-12 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1083922 149 2020-06-13 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +1083923 149 2020-06-14 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1083924 103 2020-04-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1083925 103 2020-04-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1083926 103 2020-04-22 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1083927 103 2020-04-23 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1083928 103 2020-04-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1085601 143 2020-04-28 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085602 143 2020-04-29 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085603 143 2020-04-30 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085604 143 2020-05-01 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1083945 103 2020-05-11 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1083946 103 2020-05-12 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1083947 103 2020-05-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1083948 103 2020-05-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1083949 103 2020-05-15 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1083950 103 2020-05-16 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +1083951 103 2020-05-17 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1083952 103 2020-05-18 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1083953 103 2020-05-19 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1083954 103 2020-05-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1083955 103 2020-05-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1083956 103 2020-05-22 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1083957 103 2020-05-23 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +1083958 103 2020-05-24 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1085623 143 2020-05-20 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085624 143 2020-05-21 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085625 143 2020-05-22 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085626 143 2020-05-23 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +1083974 103 2020-06-09 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1083975 103 2020-06-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1083976 103 2020-06-11 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1083977 103 2020-06-12 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1083978 103 2020-06-13 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +1083979 103 2020-06-14 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1083980 121 2020-04-20 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1083981 121 2020-04-21 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1083982 121 2020-04-22 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1083983 121 2020-04-23 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1083984 121 2020-04-24 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1083985 121 2020-04-25 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +1083986 121 2020-04-26 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1083987 121 2020-04-27 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085631 143 2020-05-28 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085632 143 2020-05-29 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085633 143 2020-05-30 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +1085634 143 2020-05-31 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1085711 115 2020-06-21 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1084003 121 2020-05-13 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1084004 121 2020-05-14 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1084005 121 2020-05-15 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1084006 121 2020-05-16 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +1084007 121 2020-05-17 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1084008 121 2020-05-18 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1084009 121 2020-05-19 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1084010 121 2020-05-20 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1084011 121 2020-05-21 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1084012 121 2020-05-22 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1084013 121 2020-05-23 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +1084014 121 2020-05-24 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1084015 121 2020-05-25 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1084016 121 2020-05-26 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085653 146 2020-06-19 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1085654 146 2020-06-20 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 06:40:00 +1085655 146 2020-06-21 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1085656 146 2020-06-22 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1084032 121 2020-06-11 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1084033 121 2020-06-12 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1084034 121 2020-06-13 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +1084035 121 2020-06-14 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1084036 117 2020-05-01 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1084037 117 2020-05-02 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +1084038 117 2020-05-03 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1084039 117 2020-05-04 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1084040 117 2020-05-05 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1084041 117 2020-05-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1084042 117 2020-05-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1084043 117 2020-05-08 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1084044 117 2020-05-09 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +1084045 117 2020-05-10 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1084046 117 2020-05-11 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1085661 146 2020-06-27 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 06:40:00 +1085662 146 2020-06-28 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1085663 146 2020-06-29 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1085664 146 2020-06-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1084061 117 2020-05-26 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1084062 117 2020-05-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1084063 117 2020-05-28 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1084064 117 2020-05-29 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1084065 117 2020-05-30 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +1084066 117 2020-05-31 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1084067 117 2020-06-01 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1084068 117 2020-06-02 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1084069 117 2020-06-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1084070 117 2020-06-04 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1084071 117 2020-06-05 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1084072 117 2020-06-06 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +1084073 117 2020-06-07 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1084074 117 2020-06-08 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1085683 146 2020-07-19 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1085684 146 2020-07-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1085685 146 2020-07-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1085686 146 2020-07-22 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1084090 125 2020-04-29 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 03:20:00 +1084091 125 2020-04-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 03:20:00 +1084092 125 2020-05-01 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 03:20:00 +1084093 125 2020-05-02 \N \N \N \N \N 00:00:00 03:20:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 03:20:00 +1084094 125 2020-05-03 \N \N \N \N \N 00:00:00 03:20:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1084095 125 2020-05-04 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 03:20:00 +1084096 125 2020-05-05 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 03:20:00 +1084097 125 2020-05-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 03:20:00 +1084098 125 2020-05-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 03:20:00 +1084099 125 2020-05-08 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 03:20:00 +1084100 125 2020-05-09 \N \N \N \N \N 00:00:00 03:20:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 03:20:00 +1084101 125 2020-05-10 \N \N \N \N \N 00:00:00 03:20:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1084102 125 2020-05-11 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 03:20:00 +1084103 125 2020-05-12 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 03:20:00 +1085691 146 2020-07-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1085692 146 2020-07-28 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1085693 146 2020-07-29 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1085694 146 2020-07-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1084119 125 2020-05-28 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 03:20:00 +1084120 125 2020-05-29 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 03:20:00 +1084121 125 2020-05-30 \N \N \N \N \N 00:00:00 03:20:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 03:20:00 +1084122 125 2020-05-31 \N \N \N \N \N 00:00:00 03:20:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1084123 125 2020-06-01 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 03:20:00 +1084124 125 2020-06-02 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 03:20:00 +1084125 125 2020-06-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 03:20:00 +1084126 125 2020-06-04 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 03:20:00 +1084127 125 2020-06-05 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 03:20:00 +1084128 125 2020-06-06 \N \N \N \N \N 00:00:00 03:20:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 03:20:00 +1084129 125 2020-06-07 \N \N \N \N \N 00:00:00 03:20:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1084130 125 2020-06-08 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 03:20:00 +1084131 125 2020-06-09 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 03:20:00 +1084132 125 2020-06-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 03:20:00 +1085713 115 2020-06-23 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1085714 115 2020-06-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1085715 115 2020-06-25 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1085719 115 2020-06-29 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1084148 119 2020-05-01 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1084149 119 2020-05-02 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +1084150 119 2020-05-03 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1084151 119 2020-05-04 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1084152 119 2020-05-05 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1084153 119 2020-05-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1084154 119 2020-05-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1084155 119 2020-05-08 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1084156 119 2020-05-09 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +1084157 119 2020-05-10 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1084158 119 2020-05-11 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1084159 119 2020-05-12 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1084160 119 2020-05-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1084161 119 2020-05-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1085720 115 2020-06-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1085721 115 2020-07-01 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1085722 115 2020-07-02 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1085723 115 2020-07-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1084178 119 2020-05-31 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1084179 119 2020-06-01 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1084180 119 2020-06-02 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1084181 119 2020-06-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1084182 119 2020-06-04 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1084183 119 2020-06-05 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1084184 119 2020-06-06 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +1084185 119 2020-06-07 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1084186 119 2020-06-08 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1084187 119 2020-06-09 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1084188 119 2020-06-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1084189 119 2020-06-11 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1084190 119 2020-06-12 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1084191 119 2020-06-13 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +1084192 119 2020-06-14 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1085740 115 2020-07-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1085741 115 2020-07-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1085742 115 2020-07-22 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086165 117 2020-07-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1084207 113 2020-05-04 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1084208 113 2020-05-05 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1084209 113 2020-05-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1084210 113 2020-05-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1084211 113 2020-05-08 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1084212 113 2020-05-09 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +1084213 113 2020-05-10 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1084214 113 2020-05-11 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1084215 113 2020-05-12 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1084216 113 2020-05-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1084217 113 2020-05-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1084218 113 2020-05-15 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1084219 113 2020-05-16 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +1084220 113 2020-05-17 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1085743 115 2020-07-23 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1085744 115 2020-07-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1085745 115 2020-07-25 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 06:40:00 +1085746 115 2020-07-26 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1084236 113 2020-06-02 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1084237 113 2020-06-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1084238 113 2020-06-04 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1084239 113 2020-06-05 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1084240 113 2020-06-06 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +1084241 113 2020-06-07 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1084242 113 2020-06-08 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1084243 113 2020-06-09 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1084244 113 2020-06-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1084245 113 2020-06-11 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1084246 113 2020-06-12 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1084247 113 2020-06-13 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +1084248 113 2020-06-14 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1084249 147 2020-04-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1085748 115 2020-07-28 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1085749 115 2020-07-29 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1085750 115 2020-07-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1085751 115 2020-07-31 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1084265 147 2020-05-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1084266 147 2020-05-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1084267 147 2020-05-08 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1084268 147 2020-05-09 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +1084269 147 2020-05-10 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1084270 147 2020-05-11 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1084271 147 2020-05-12 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1084272 147 2020-05-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1084273 147 2020-05-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1084274 147 2020-05-15 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1084275 147 2020-05-16 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +1084276 147 2020-05-17 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1084277 147 2020-05-18 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1084278 147 2020-05-19 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1085752 115 2020-08-01 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 06:40:00 +1085753 115 2020-08-02 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1085768 114 2020-06-22 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1085769 114 2020-06-23 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1084294 147 2020-06-04 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1084295 147 2020-06-05 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1084296 147 2020-06-06 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +1084297 147 2020-06-07 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1084298 147 2020-06-08 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1084299 147 2020-06-09 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1084300 147 2020-06-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1084301 147 2020-06-11 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1084302 147 2020-06-12 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1084303 147 2020-06-13 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +1084304 147 2020-06-14 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1084305 131 2020-04-20 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 04:00:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 04:00:00 +1084306 131 2020-04-21 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 04:00:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 04:00:00 +1084307 131 2020-04-22 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 04:00:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 04:00:00 +1085771 114 2020-06-25 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1085772 114 2020-06-26 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1085773 114 2020-06-27 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 06:40:00 +1085774 114 2020-06-28 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1084323 131 2020-05-08 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 04:00:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 04:00:00 +1084324 131 2020-05-09 \N \N \N \N \N 00:00:00 04:00:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1084325 131 2020-05-10 \N \N \N \N \N 00:00:00 04:00:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1084326 131 2020-05-11 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 04:00:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 04:00:00 +1084327 131 2020-05-12 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 04:00:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 04:00:00 +1084328 131 2020-05-13 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 04:00:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 04:00:00 +1084329 131 2020-05-14 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 04:00:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 04:00:00 +1084330 131 2020-05-15 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 04:00:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 04:00:00 +1084331 131 2020-05-16 \N \N \N \N \N 00:00:00 04:00:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1084332 131 2020-05-17 \N \N \N \N \N 00:00:00 04:00:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1084333 131 2020-05-18 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 04:00:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 04:00:00 +1084334 131 2020-05-19 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 04:00:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 04:00:00 +1084335 131 2020-05-20 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 04:00:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 04:00:00 +1084336 131 2020-05-21 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 04:00:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 04:00:00 +1085776 114 2020-06-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1085777 114 2020-07-01 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1085778 114 2020-07-02 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1085779 114 2020-07-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1084353 131 2020-06-07 \N \N \N \N \N 00:00:00 04:00:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1084354 131 2020-06-08 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 04:00:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 04:00:00 +1084355 131 2020-06-09 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 04:00:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 04:00:00 +1084356 131 2020-06-10 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 04:00:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 04:00:00 +1084357 131 2020-06-11 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 04:00:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 04:00:00 +1084358 131 2020-06-12 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 04:00:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 04:00:00 +1084359 131 2020-06-13 \N \N \N \N \N 00:00:00 04:00:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1084360 131 2020-06-14 \N \N \N \N \N 00:00:00 04:00:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1084361 104 2020-04-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:00:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:00:00 +1084362 104 2020-04-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:00:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:00:00 +1084363 104 2020-04-22 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:00:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:00:00 +1084364 104 2020-04-23 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:00:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:00:00 +1084365 104 2020-04-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:00:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:00:00 +1084366 104 2020-04-25 \N \N \N \N \N 00:00:00 06:00:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1084367 104 2020-04-26 \N \N \N \N \N 00:00:00 06:00:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1085781 114 2020-07-05 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1085782 114 2020-07-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1085797 114 2020-07-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1085798 114 2020-07-22 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1084382 104 2020-05-11 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:00:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:00:00 +1084383 104 2020-05-12 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:00:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:00:00 +1084384 104 2020-05-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:00:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:00:00 +1084385 104 2020-05-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:00:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:00:00 +1084386 104 2020-05-15 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:00:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:00:00 +1084387 104 2020-05-16 \N \N \N \N \N 00:00:00 06:00:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1084388 104 2020-05-17 \N \N \N \N \N 00:00:00 06:00:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1084389 104 2020-05-18 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:00:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:00:00 +1084390 104 2020-05-19 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:00:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:00:00 +1084391 104 2020-05-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:00:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:00:00 +1084392 104 2020-05-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:00:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:00:00 +1084393 104 2020-05-22 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:00:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:00:00 +1084394 104 2020-05-23 \N \N \N \N \N 00:00:00 06:00:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1084395 104 2020-05-24 \N \N \N \N \N 00:00:00 06:00:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1085799 114 2020-07-23 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1085800 114 2020-07-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1085801 114 2020-07-25 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 06:40:00 +1085802 114 2020-07-26 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1084411 104 2020-06-09 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:00:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:00:00 +1084412 104 2020-06-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:00:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:00:00 +1084413 104 2020-06-11 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:00:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:00:00 +1084414 104 2020-06-12 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:00:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:00:00 +1084415 104 2020-06-13 \N \N \N \N \N 00:00:00 06:00:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1084416 104 2020-06-14 \N \N \N \N \N 00:00:00 06:00:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1084417 151 2020-04-20 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1084418 151 2020-04-21 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1084419 151 2020-04-22 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1084420 151 2020-04-23 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1084421 151 2020-04-24 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1084422 151 2020-04-25 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +1084423 151 2020-04-26 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1084424 151 2020-04-27 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085804 114 2020-07-28 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1085805 114 2020-07-29 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1085806 114 2020-07-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1085807 114 2020-07-31 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1010296 121 2020-01-01 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1010297 121 2020-01-02 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1010298 121 2020-01-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1084440 151 2020-05-13 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1084441 151 2020-05-14 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1084442 151 2020-05-15 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1084443 151 2020-05-16 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +1084444 151 2020-05-17 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1084445 151 2020-05-18 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1084446 151 2020-05-19 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1084447 151 2020-05-20 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1084448 151 2020-05-21 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1084449 151 2020-05-22 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1084450 151 2020-05-23 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +1084451 151 2020-05-24 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1085809 114 2020-08-02 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1085810 114 2020-08-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1085811 114 2020-08-04 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1010299 121 2020-01-04 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +1010300 121 2020-01-05 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1010301 121 2020-01-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1010302 121 2020-01-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1010303 121 2020-01-08 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1010304 121 2020-01-09 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1010305 121 2020-01-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1010306 121 2020-01-11 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +1010307 121 2020-01-12 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1010308 121 2020-01-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1010309 121 2020-01-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1010310 121 2020-01-15 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1010311 121 2020-01-16 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1084465 151 2020-06-07 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1084466 151 2020-06-08 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1084467 151 2020-06-09 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1084468 151 2020-06-10 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1084469 151 2020-06-11 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1086188 117 2020-07-29 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1084474 138 2020-04-21 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1084475 138 2020-04-22 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1084476 138 2020-04-23 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1084477 138 2020-04-24 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1084478 138 2020-04-25 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +1084479 138 2020-04-26 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1084480 138 2020-04-27 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1084481 138 2020-04-28 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1084482 138 2020-04-29 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1084483 138 2020-04-30 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1084484 138 2020-05-01 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1084485 138 2020-05-02 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +1084486 138 2020-05-03 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1084487 138 2020-05-04 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085827 108 2020-06-25 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1085828 108 2020-06-26 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1085829 108 2020-06-27 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 06:40:00 +1085830 108 2020-06-28 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1084503 138 2020-05-20 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1084504 138 2020-05-21 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1084505 138 2020-05-22 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1084506 138 2020-05-23 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +1084507 138 2020-05-24 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1084508 138 2020-05-25 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1084509 138 2020-05-26 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1084510 138 2020-05-27 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1084511 138 2020-05-28 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1084512 138 2020-05-29 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1084513 138 2020-05-30 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +1084514 138 2020-05-31 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1084515 138 2020-06-01 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1084516 138 2020-06-02 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085832 108 2020-06-30 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1085833 108 2020-07-01 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1085834 108 2020-07-02 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1085835 108 2020-07-03 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1084532 105 2020-04-23 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1084533 105 2020-04-24 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1084534 105 2020-04-25 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +1084535 105 2020-04-26 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1084536 105 2020-04-27 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1084537 105 2020-04-28 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1084538 105 2020-04-29 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1084539 105 2020-04-30 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1084540 105 2020-05-01 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1084541 105 2020-05-02 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +1084542 105 2020-05-03 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1084543 105 2020-05-04 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1084544 105 2020-05-05 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1084545 105 2020-05-06 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085837 108 2020-07-05 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1085838 108 2020-07-06 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1085839 108 2020-07-07 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1085840 108 2020-07-08 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1084561 105 2020-05-22 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1084562 105 2020-05-23 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +1084563 105 2020-05-24 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1084564 105 2020-05-25 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1084565 105 2020-05-26 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1084566 105 2020-05-27 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1084567 105 2020-05-28 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1084568 105 2020-05-29 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1084569 105 2020-05-30 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +1084570 105 2020-05-31 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1084571 105 2020-06-01 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1084572 105 2020-06-02 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1084573 105 2020-06-03 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1084574 105 2020-06-04 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085856 108 2020-07-24 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1085857 108 2020-07-25 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 06:40:00 +1085858 108 2020-07-26 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1085859 108 2020-07-27 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1084591 134 2020-04-26 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1084592 134 2020-04-27 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1084593 134 2020-04-28 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1084594 134 2020-04-29 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1084595 134 2020-04-30 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1084596 134 2020-05-01 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1084597 134 2020-05-02 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +1084598 134 2020-05-03 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1084599 134 2020-05-04 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1084600 134 2020-05-05 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1084601 134 2020-05-06 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1084602 134 2020-05-07 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1084603 134 2020-05-08 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1084604 134 2020-05-09 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +1084605 134 2020-05-10 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1085861 108 2020-07-29 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1085862 108 2020-07-30 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1085863 108 2020-07-31 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1084620 134 2020-05-25 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1084621 134 2020-05-26 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1084622 134 2020-05-27 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1084623 134 2020-05-28 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1084624 134 2020-05-29 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1084625 134 2020-05-30 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +1084626 134 2020-05-31 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1084627 134 2020-06-01 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1084628 134 2020-06-02 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1084629 134 2020-06-03 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1084630 134 2020-06-04 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1084631 134 2020-06-05 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1084632 134 2020-06-06 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +1084633 134 2020-06-07 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1085865 108 2020-08-02 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1085866 108 2020-08-03 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1085867 108 2020-08-04 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1085868 108 2020-08-05 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1086193 117 2020-08-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1084649 102 2020-04-28 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1084650 102 2020-04-29 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1084651 102 2020-04-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1084652 102 2020-05-01 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1084653 102 2020-05-02 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +1084654 102 2020-05-03 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1084655 102 2020-05-04 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1084656 102 2020-05-05 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1084657 102 2020-05-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1084658 102 2020-05-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1084659 102 2020-05-08 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1084660 102 2020-05-09 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +1084661 102 2020-05-10 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1084662 102 2020-05-11 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1085869 108 2020-08-06 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1085875 135 2020-06-17 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1085876 135 2020-06-18 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1085877 135 2020-06-19 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1084678 102 2020-05-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1084679 102 2020-05-28 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1084680 102 2020-05-29 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1084681 102 2020-05-30 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +1084682 102 2020-05-31 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1084683 102 2020-06-01 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1084684 102 2020-06-02 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1084685 102 2020-06-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1084686 102 2020-06-04 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1084687 102 2020-06-05 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1084688 102 2020-06-06 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +1084689 102 2020-06-07 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1084690 102 2020-06-08 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1084691 102 2020-06-09 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1085879 135 2020-06-21 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1085880 135 2020-06-22 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1085881 135 2020-06-23 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1085896 135 2020-07-08 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1086198 117 2020-08-08 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 06:40:00 +1084707 109 2020-04-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1084708 109 2020-05-01 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1084709 109 2020-05-02 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +1084710 109 2020-05-03 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1084711 109 2020-05-04 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1084712 109 2020-05-05 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1084713 109 2020-05-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1084714 109 2020-05-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1084715 109 2020-05-08 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1084716 109 2020-05-09 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +1084717 109 2020-05-10 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1084718 109 2020-05-11 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1084719 109 2020-05-12 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1084720 109 2020-05-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1085898 135 2020-07-10 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1085899 135 2020-07-11 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 06:40:00 +1085900 135 2020-07-12 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1085901 135 2020-07-13 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1086229 125 2020-07-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 03:20:00 +1086248 125 2020-08-02 \N \N \N \N \N 00:00:00 03:20:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1084736 109 2020-05-29 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1084737 109 2020-05-30 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +1084738 109 2020-05-31 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1084739 109 2020-06-01 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1084740 109 2020-06-02 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1084741 109 2020-06-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1084742 109 2020-06-04 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1084743 109 2020-06-05 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1084744 109 2020-06-06 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +1084745 109 2020-06-07 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1084746 109 2020-06-08 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1084747 109 2020-06-09 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1084748 109 2020-06-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1084749 109 2020-06-11 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1085902 135 2020-07-14 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1085903 135 2020-07-15 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1085904 135 2020-07-16 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1085905 135 2020-07-17 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1084766 118 2020-05-03 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1084767 118 2020-05-04 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1084768 118 2020-05-05 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1084769 118 2020-05-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1084770 118 2020-05-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1084771 118 2020-05-08 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1084772 118 2020-05-09 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +1084773 118 2020-05-10 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1084774 118 2020-05-11 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1084775 118 2020-05-12 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1084776 118 2020-05-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1084777 118 2020-05-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1084778 118 2020-05-15 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1084779 118 2020-05-16 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +1084780 118 2020-05-17 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1085907 135 2020-07-19 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1085908 135 2020-07-20 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1085909 135 2020-07-21 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1084795 118 2020-06-01 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1084796 118 2020-06-02 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1084797 118 2020-06-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1084798 118 2020-06-04 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1084799 118 2020-06-05 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1084800 118 2020-06-06 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +1084801 118 2020-06-07 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1084802 118 2020-06-08 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1084803 118 2020-06-09 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1084804 118 2020-06-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1084805 118 2020-06-11 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1084806 118 2020-06-12 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1084807 118 2020-06-13 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +1084808 118 2020-06-14 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1085925 135 2020-08-06 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1085926 135 2020-08-07 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1085927 135 2020-08-08 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 06:40:00 +1085928 135 2020-08-09 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1086258 119 2020-06-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086277 119 2020-07-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1084824 133 2020-05-05 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1084825 133 2020-05-06 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1084826 133 2020-05-07 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1084827 133 2020-05-08 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1084828 133 2020-05-09 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +1084829 133 2020-05-10 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1084830 133 2020-05-11 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1084831 133 2020-05-12 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1084832 133 2020-05-13 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1084833 133 2020-05-14 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1084834 133 2020-05-15 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1084835 133 2020-05-16 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +1084836 133 2020-05-17 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1084837 133 2020-05-18 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085929 127 2020-06-15 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1085930 127 2020-06-16 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1085931 127 2020-06-17 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1085932 127 2020-06-18 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1084853 133 2020-06-03 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1084854 133 2020-06-04 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1084855 133 2020-06-05 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1084856 133 2020-06-06 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +1084857 133 2020-06-07 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1084858 133 2020-06-08 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1084859 133 2020-06-09 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1084860 133 2020-06-10 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1084861 133 2020-06-11 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1084862 133 2020-06-12 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1084863 133 2020-06-13 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +1084864 133 2020-06-14 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1084865 111 2020-04-20 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1084866 111 2020-04-21 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085933 127 2020-06-19 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1085934 127 2020-06-20 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 06:40:00 +1085935 127 2020-06-21 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1085936 127 2020-06-22 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1084882 111 2020-05-07 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1084883 111 2020-05-08 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1084884 111 2020-05-09 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +1084885 111 2020-05-10 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1084886 111 2020-05-11 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1084887 111 2020-05-12 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1084888 111 2020-05-13 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1084889 111 2020-05-14 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1084890 111 2020-05-15 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1084891 111 2020-05-16 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +1084892 111 2020-05-17 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1084893 111 2020-05-18 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1084894 111 2020-05-19 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1084895 111 2020-05-20 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085938 127 2020-06-24 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1085939 127 2020-06-25 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1085954 127 2020-07-10 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1085955 127 2020-07-11 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 06:40:00 +1084911 111 2020-06-05 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1084912 111 2020-06-06 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +1084913 111 2020-06-07 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1084914 111 2020-06-08 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1084915 111 2020-06-09 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1084916 111 2020-06-10 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1084917 111 2020-06-11 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1084918 111 2020-06-12 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1084919 111 2020-06-13 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +1084920 111 2020-06-14 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1084921 128 2020-04-20 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1084922 128 2020-04-21 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1084923 128 2020-04-22 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1084924 128 2020-04-23 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085957 127 2020-07-13 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1085958 127 2020-07-14 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1085959 127 2020-07-15 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1084941 128 2020-05-10 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1084942 128 2020-05-11 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1084943 128 2020-05-12 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1084944 128 2020-05-13 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1084945 128 2020-05-14 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1084946 128 2020-05-15 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1084947 128 2020-05-16 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +1084948 128 2020-05-17 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1084949 128 2020-05-18 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1084950 128 2020-05-19 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1084951 128 2020-05-20 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1084952 128 2020-05-21 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1084953 128 2020-05-22 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1084954 128 2020-05-23 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +1084955 128 2020-05-24 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1085962 127 2020-07-18 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 06:40:00 +1085963 127 2020-07-19 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1085964 127 2020-07-20 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1085965 127 2020-07-21 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1084970 128 2020-06-08 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1084971 128 2020-06-09 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1084972 128 2020-06-10 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1084973 128 2020-06-11 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1084974 128 2020-06-12 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1084975 128 2020-06-13 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +1084976 128 2020-06-14 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1084977 142 2020-04-20 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1084978 142 2020-04-21 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1084979 142 2020-04-22 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1084980 142 2020-04-23 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1084981 142 2020-04-24 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1084982 142 2020-04-25 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +1084983 142 2020-04-26 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1085966 127 2020-07-22 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1085967 127 2020-07-23 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1085968 127 2020-07-24 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1085983 127 2020-08-08 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 06:40:00 +1084999 142 2020-05-12 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085000 142 2020-05-13 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085001 142 2020-05-14 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085002 142 2020-05-15 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085003 142 2020-05-16 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +1085004 142 2020-05-17 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1085005 142 2020-05-18 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085006 142 2020-05-19 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085007 142 2020-05-20 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085008 142 2020-05-21 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085009 142 2020-05-22 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085010 142 2020-05-23 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +1085011 142 2020-05-24 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1085012 142 2020-05-25 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085985 149 2020-06-15 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1085986 149 2020-06-16 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1085987 149 2020-06-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1085028 142 2020-06-10 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085029 142 2020-06-11 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085030 142 2020-06-12 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085031 142 2020-06-13 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +1085032 142 2020-06-14 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1085033 136 2020-04-20 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085034 136 2020-04-21 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085035 136 2020-04-22 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085036 136 2020-04-23 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085037 136 2020-04-24 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085038 136 2020-04-25 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +1085039 136 2020-04-26 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1085040 136 2020-04-27 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085041 136 2020-04-28 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085990 149 2020-06-20 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 06:40:00 +1085991 149 2020-06-21 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1085992 149 2020-06-22 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1085993 149 2020-06-23 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1012502 125 2019-12-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 03:20:00 +1012503 125 2019-12-31 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 03:20:00 +1085057 136 2020-05-14 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085058 136 2020-05-15 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085059 136 2020-05-16 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +1085060 136 2020-05-17 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1085061 136 2020-05-18 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085062 136 2020-05-19 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085063 136 2020-05-20 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085064 136 2020-05-21 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085065 136 2020-05-22 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085066 136 2020-05-23 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +1085067 136 2020-05-24 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1085068 136 2020-05-25 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085069 136 2020-05-26 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085995 149 2020-06-25 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1085996 149 2020-06-26 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1085997 149 2020-06-27 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 06:40:00 +1085083 136 2020-06-09 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085084 136 2020-06-10 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085085 136 2020-06-11 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085086 136 2020-06-12 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085087 136 2020-06-13 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +1085088 136 2020-06-14 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1085089 139 2020-04-20 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085090 139 2020-04-21 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085091 139 2020-04-22 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085092 139 2020-04-23 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085093 139 2020-04-24 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085094 139 2020-04-25 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +1085095 139 2020-04-26 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1085096 139 2020-04-27 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1086013 149 2020-07-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086014 149 2020-07-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086015 149 2020-07-15 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086016 149 2020-07-16 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1085112 139 2020-05-13 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085113 139 2020-05-14 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085114 139 2020-05-15 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085115 139 2020-05-16 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +1085116 139 2020-05-17 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1085117 139 2020-05-18 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085118 139 2020-05-19 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085119 139 2020-05-20 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085120 139 2020-05-21 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085121 139 2020-05-22 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085122 139 2020-05-23 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +1085123 139 2020-05-24 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1085124 139 2020-05-25 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085125 139 2020-05-26 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1086017 149 2020-07-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086018 149 2020-07-18 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 06:40:00 +1086019 149 2020-07-19 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1086020 149 2020-07-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1085141 139 2020-06-11 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085142 139 2020-06-12 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085143 139 2020-06-13 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +1085144 139 2020-06-14 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1085145 141 2020-04-20 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085146 141 2020-04-21 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085147 141 2020-04-22 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085148 141 2020-04-23 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085149 141 2020-04-24 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085150 141 2020-04-25 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +1085151 141 2020-04-26 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1085152 141 2020-04-27 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085153 141 2020-04-28 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085154 141 2020-04-29 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1086022 149 2020-07-22 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086023 149 2020-07-23 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086024 149 2020-07-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086025 149 2020-07-25 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 06:40:00 +1012448 125 2020-01-01 08:00:00 12:00:00 \N \N \N 00:00:00 03:20:00 \N \N \N 04:00:00 00:00:00 \N 27 04:00:00 \N 00:00:00 03:20:00 +1012449 125 2020-01-02 \N \N \N \N \N 00:00:00 03:20:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 03:20:00 +1012450 125 2020-01-03 \N \N \N \N \N 00:00:00 03:20:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 03:20:00 +1012451 125 2020-01-04 \N \N \N \N \N 00:00:00 03:20:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 03:20:00 +1012452 125 2020-01-05 \N \N \N \N \N 00:00:00 03:20:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1012453 125 2020-01-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 03:20:00 +1012454 125 2020-01-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 03:20:00 +1012455 125 2020-01-08 08:00:00 12:00:00 \N \N \N 00:00:00 03:20:00 \N \N \N 04:00:00 00:00:00 \N 27 04:00:00 \N 00:00:00 03:20:00 +1012456 125 2020-01-09 \N \N \N \N \N 00:00:00 03:20:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 03:20:00 +1012457 125 2020-01-10 \N \N \N \N \N 00:00:00 03:20:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 03:20:00 +1012458 125 2020-01-11 \N \N \N \N \N 00:00:00 03:20:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 03:20:00 +1012459 125 2020-01-12 \N \N \N \N \N 00:00:00 03:20:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1012460 125 2020-01-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 03:20:00 +1012461 125 2020-01-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 03:20:00 +1012462 125 2020-01-15 08:00:00 12:00:00 \N \N \N 00:00:00 03:20:00 \N \N \N 04:00:00 00:00:00 \N 27 04:00:00 \N 00:00:00 03:20:00 +1012463 125 2020-01-16 \N \N \N \N \N 00:00:00 03:20:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 03:20:00 +1012464 125 2020-01-17 \N \N \N \N \N 00:00:00 03:20:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 03:20:00 +1012465 125 2020-01-18 \N \N \N \N \N 00:00:00 03:20:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 03:20:00 +1012466 125 2020-01-19 \N \N \N \N \N 00:00:00 03:20:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1086027 149 2020-07-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1012479 125 2020-02-01 \N \N \N \N \N 00:00:00 03:20:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 03:20:00 +1012480 125 2020-02-02 \N \N \N \N \N 00:00:00 03:20:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1012481 125 2020-02-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 03:20:00 +1012482 125 2020-02-04 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 03:20:00 +1012483 125 2020-02-05 08:00:00 12:00:00 \N \N \N 00:00:00 03:20:00 \N \N \N 04:00:00 00:00:00 \N 27 04:00:00 \N 00:00:00 03:20:00 +1012484 125 2020-02-06 \N \N \N \N \N 00:00:00 03:20:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 03:20:00 +1012485 125 2020-02-07 \N \N \N \N \N 00:00:00 03:20:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 03:20:00 +1012486 125 2020-02-08 \N \N \N \N \N 00:00:00 03:20:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 03:20:00 +1012487 125 2020-02-09 \N \N \N \N \N 00:00:00 03:20:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1012488 125 2020-02-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 03:20:00 +1012489 125 2020-02-11 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 03:20:00 +1012490 125 2020-02-12 08:00:00 12:00:00 \N \N \N 00:00:00 03:20:00 \N \N \N 04:00:00 00:00:00 \N 27 04:00:00 \N 00:00:00 03:20:00 +1012491 125 2020-02-13 \N \N \N \N \N 00:00:00 03:20:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 03:20:00 +1012492 125 2020-02-14 \N \N \N \N \N 00:00:00 03:20:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 03:20:00 +1012493 125 2020-02-15 \N \N \N \N \N 00:00:00 03:20:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 03:20:00 +1012494 125 2020-02-16 \N \N \N \N \N 00:00:00 03:20:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1012495 125 2020-02-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 03:20:00 +1012496 125 2020-02-18 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 03:20:00 +1086043 103 2020-06-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086044 103 2020-06-18 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1085170 141 2020-05-15 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085171 141 2020-05-16 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +1085172 141 2020-05-17 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1085173 141 2020-05-18 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085174 141 2020-05-19 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085175 141 2020-05-20 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085176 141 2020-05-21 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085177 141 2020-05-22 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085178 141 2020-05-23 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +1085179 141 2020-05-24 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1085180 141 2020-05-25 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085181 141 2020-05-26 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085182 141 2020-05-27 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085183 141 2020-05-28 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1086045 103 2020-06-19 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086046 103 2020-06-20 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 06:40:00 +1086047 103 2020-06-21 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1086048 103 2020-06-22 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1085200 141 2020-06-14 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1085201 122 2020-04-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1085202 122 2020-04-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1085203 122 2020-04-22 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1085204 122 2020-04-23 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1085205 122 2020-04-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1085206 122 2020-04-25 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +1085207 122 2020-04-26 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1085208 122 2020-04-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1085209 122 2020-04-28 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1085210 122 2020-04-29 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1085211 122 2020-04-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1085212 122 2020-05-01 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1085213 122 2020-05-02 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +1085214 122 2020-05-03 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1086050 103 2020-06-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086051 103 2020-06-25 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086052 103 2020-06-26 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1085229 122 2020-05-18 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1085230 122 2020-05-19 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1085231 122 2020-05-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1085232 122 2020-05-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1085233 122 2020-05-22 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1085234 122 2020-05-23 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +1085235 122 2020-05-24 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1085236 122 2020-05-25 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1085237 122 2020-05-26 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1085238 122 2020-05-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1085239 122 2020-05-28 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1085240 122 2020-05-29 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1085241 122 2020-05-30 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +1085242 122 2020-05-31 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1086054 103 2020-06-28 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1086055 103 2020-06-29 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086056 103 2020-06-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086071 103 2020-07-15 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1085258 106 2020-04-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 04:10:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 04:10:00 +1085259 106 2020-04-22 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 04:10:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 04:10:00 +1085260 106 2020-04-23 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 04:10:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 04:10:00 +1085261 106 2020-04-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 04:10:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 \N +1085262 106 2020-04-25 \N \N \N \N \N 00:00:00 04:10:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1085263 106 2020-04-26 \N \N \N \N \N 00:00:00 04:10:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1085264 106 2020-04-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 04:10:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 04:10:00 +1085265 106 2020-04-28 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 04:10:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 04:10:00 +1085266 106 2020-04-29 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 04:10:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 04:10:00 +1085267 106 2020-04-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 04:10:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 04:10:00 +1085268 106 2020-05-01 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 04:10:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 \N +1085269 106 2020-05-02 \N \N \N \N \N 00:00:00 04:10:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1085270 106 2020-05-03 \N \N \N \N \N 00:00:00 04:10:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1085271 106 2020-05-04 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 04:10:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 04:10:00 +1086073 103 2020-07-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086074 103 2020-07-18 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 06:40:00 +1086075 103 2020-07-19 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1086076 103 2020-07-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086286 119 2020-07-15 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086305 119 2020-08-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086314 113 2020-06-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1085287 106 2020-05-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 04:10:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 04:10:00 +1085288 106 2020-05-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 04:10:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 04:10:00 +1085289 106 2020-05-22 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 04:10:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 \N +1085290 106 2020-05-23 \N \N \N \N \N 00:00:00 04:10:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1085291 106 2020-05-24 \N \N \N \N \N 00:00:00 04:10:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1085292 106 2020-05-25 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 04:10:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 04:10:00 +1085293 106 2020-05-26 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 04:10:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 04:10:00 +1085294 106 2020-05-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 04:10:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 04:10:00 +1085295 106 2020-05-28 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 04:10:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 04:10:00 +1085296 106 2020-05-29 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 04:10:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 \N +1085297 106 2020-05-30 \N \N \N \N \N 00:00:00 04:10:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1085298 106 2020-05-31 \N \N \N \N \N 00:00:00 04:10:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1085299 106 2020-06-01 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 04:10:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 04:10:00 +1085300 106 2020-06-02 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 04:10:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 04:10:00 +1086077 103 2020-07-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086078 103 2020-07-22 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086079 103 2020-07-23 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086080 103 2020-07-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1085316 110 2020-04-23 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1085317 110 2020-04-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1085318 110 2020-04-25 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +1085319 110 2020-04-26 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1085320 110 2020-04-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1085321 110 2020-04-28 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1085322 110 2020-04-29 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1085323 110 2020-04-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1085324 110 2020-05-01 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1085325 110 2020-05-02 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +1085326 110 2020-05-03 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1085327 110 2020-05-04 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1085328 110 2020-05-05 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1085329 110 2020-05-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1086083 103 2020-07-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086084 103 2020-07-28 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086085 103 2020-07-29 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086100 121 2020-06-18 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1085345 110 2020-05-22 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1085346 110 2020-05-23 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +1085347 110 2020-05-24 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1085348 110 2020-05-25 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1085349 110 2020-05-26 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1085350 110 2020-05-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1085351 110 2020-05-28 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1085352 110 2020-05-29 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1085353 110 2020-05-30 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +1085354 110 2020-05-31 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1085355 110 2020-06-01 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1085356 110 2020-06-02 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1085357 110 2020-06-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1085358 110 2020-06-04 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1086101 121 2020-06-19 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1086102 121 2020-06-20 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 06:40:00 +1086103 121 2020-06-21 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1086104 121 2020-06-22 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1085375 145 2020-04-26 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1085376 145 2020-04-27 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085377 145 2020-04-28 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085378 145 2020-04-29 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085379 145 2020-04-30 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085380 145 2020-05-01 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085381 145 2020-05-02 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +1085382 145 2020-05-03 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1085383 145 2020-05-04 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085384 145 2020-05-05 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085385 145 2020-05-06 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085386 145 2020-05-07 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085387 145 2020-05-08 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085388 145 2020-05-09 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +1085389 145 2020-05-10 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1086106 121 2020-06-24 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1086107 121 2020-06-25 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1086108 121 2020-06-26 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1085404 145 2020-05-25 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085405 145 2020-05-26 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085406 145 2020-05-27 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085407 145 2020-05-28 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085408 145 2020-05-29 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085409 145 2020-05-30 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +1085410 145 2020-05-31 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1085411 145 2020-06-01 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085412 145 2020-06-02 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085413 145 2020-06-03 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085414 145 2020-06-04 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085415 145 2020-06-05 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085416 145 2020-06-06 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +1085417 145 2020-06-07 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1086110 121 2020-06-28 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1086111 121 2020-06-29 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1086112 121 2020-06-30 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1086113 121 2020-07-01 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1085433 148 2020-04-28 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1085434 148 2020-04-29 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1085435 148 2020-04-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1085436 148 2020-05-01 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1085437 148 2020-05-02 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +1085438 148 2020-05-03 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1085439 148 2020-05-04 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1085440 148 2020-05-05 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1085441 148 2020-05-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1085442 148 2020-05-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1085443 148 2020-05-08 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1085444 148 2020-05-09 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +1085445 148 2020-05-10 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1085446 148 2020-05-11 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1086129 121 2020-07-17 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1086130 121 2020-07-18 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 06:40:00 +1086131 121 2020-07-19 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1086132 121 2020-07-20 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1086333 113 2020-07-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086342 113 2020-07-15 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1085462 148 2020-05-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1085463 148 2020-05-28 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1085464 148 2020-05-29 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1085465 148 2020-05-30 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +1085466 148 2020-05-31 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1085467 148 2020-06-01 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1085468 148 2020-06-02 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1085469 148 2020-06-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1085470 148 2020-06-04 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1085471 148 2020-06-05 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1085472 148 2020-06-06 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +1085473 148 2020-06-07 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1085474 148 2020-06-08 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1085475 148 2020-06-09 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1086133 121 2020-07-21 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1086134 121 2020-07-22 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1086135 121 2020-07-23 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1086136 121 2020-07-24 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1085491 130 2020-04-30 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085492 130 2020-05-01 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085493 130 2020-05-02 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +1085494 130 2020-05-03 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1085495 130 2020-05-04 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085496 130 2020-05-05 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085497 130 2020-05-06 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085498 130 2020-05-07 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085499 130 2020-05-08 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085500 130 2020-05-09 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +1085501 130 2020-05-10 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1085502 130 2020-05-11 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085503 130 2020-05-12 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085504 130 2020-05-13 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1086138 121 2020-07-26 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1086139 121 2020-07-27 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1086140 121 2020-07-28 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1086141 121 2020-07-29 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1085520 130 2020-05-29 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085521 130 2020-05-30 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +1085522 130 2020-05-31 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1085523 130 2020-06-01 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085524 130 2020-06-02 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085525 130 2020-06-03 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085526 130 2020-06-04 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085527 130 2020-06-05 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085528 130 2020-06-06 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +1085529 130 2020-06-07 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1085530 130 2020-06-08 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085531 130 2020-06-09 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085532 130 2020-06-10 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085533 130 2020-06-11 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1086143 121 2020-07-31 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1086158 117 2020-06-29 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086159 117 2020-06-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086160 117 2020-07-01 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1085550 129 2020-05-03 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1085551 129 2020-05-04 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085552 129 2020-05-05 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085553 129 2020-05-06 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085554 129 2020-05-07 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085555 129 2020-05-08 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085556 129 2020-05-09 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +1085557 129 2020-05-10 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1085558 129 2020-05-11 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085559 129 2020-05-12 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085560 129 2020-05-13 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085561 129 2020-05-14 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085562 129 2020-05-15 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085563 129 2020-05-16 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +1085564 129 2020-05-17 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1086161 117 2020-07-02 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086162 117 2020-07-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086163 117 2020-07-04 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 06:40:00 +1085579 129 2020-06-01 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085580 129 2020-06-02 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085581 129 2020-06-03 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085582 129 2020-06-04 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085583 129 2020-06-05 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085584 129 2020-06-06 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +1085585 129 2020-06-07 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1085586 129 2020-06-08 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085587 129 2020-06-09 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085588 129 2020-06-10 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085589 129 2020-06-11 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085590 129 2020-06-12 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085591 129 2020-06-13 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +1085592 129 2020-06-14 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1086166 117 2020-07-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086167 117 2020-07-08 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086168 117 2020-07-09 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086169 117 2020-07-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1085608 143 2020-05-05 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085609 143 2020-05-06 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085610 143 2020-05-07 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085611 143 2020-05-08 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085612 143 2020-05-09 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +1085613 143 2020-05-10 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1085614 143 2020-05-11 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085615 143 2020-05-12 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085616 143 2020-05-13 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085617 143 2020-05-14 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085618 143 2020-05-15 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085619 143 2020-05-16 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +1085620 143 2020-05-17 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1085621 143 2020-05-18 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1086170 117 2020-07-11 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 06:40:00 +1086171 117 2020-07-12 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1086172 117 2020-07-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086187 117 2020-07-28 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1085637 143 2020-06-03 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085638 143 2020-06-04 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085639 143 2020-06-05 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085640 143 2020-06-06 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +1085641 143 2020-06-07 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1085642 143 2020-06-08 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085643 143 2020-06-09 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085644 143 2020-06-10 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085645 143 2020-06-11 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085646 143 2020-06-12 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085647 143 2020-06-13 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +1085648 143 2020-06-14 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1085649 146 2020-06-15 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1085650 146 2020-06-16 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086189 117 2020-07-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086190 117 2020-07-31 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086191 117 2020-08-01 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 06:40:00 +1086192 117 2020-08-02 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1085666 146 2020-07-02 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1085667 146 2020-07-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1085668 146 2020-07-04 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 06:40:00 +1085669 146 2020-07-05 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1085670 146 2020-07-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1085671 146 2020-07-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1085672 146 2020-07-08 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1085673 146 2020-07-09 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1085674 146 2020-07-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1085675 146 2020-07-11 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 06:40:00 +1085676 146 2020-07-12 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1085677 146 2020-07-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1085678 146 2020-07-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1085679 146 2020-07-15 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086194 117 2020-08-04 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086195 117 2020-08-05 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086196 117 2020-08-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086197 117 2020-08-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1085695 146 2020-07-31 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1085696 146 2020-08-01 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 06:40:00 +1085697 146 2020-08-02 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1085698 146 2020-08-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1085699 146 2020-08-04 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1085700 146 2020-08-05 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1085701 146 2020-08-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1085702 146 2020-08-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1085703 146 2020-08-08 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 06:40:00 +1085704 146 2020-08-09 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1085705 115 2020-06-15 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1085706 115 2020-06-16 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1085707 115 2020-06-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1085708 115 2020-06-18 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086199 117 2020-08-09 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1086200 125 2020-06-15 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 03:20:00 +1086201 125 2020-06-16 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 03:20:00 +1086216 125 2020-07-01 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 03:20:00 +1086347 113 2020-07-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1085725 115 2020-07-05 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1085726 115 2020-07-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1085727 115 2020-07-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1085728 115 2020-07-08 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1085729 115 2020-07-09 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1085730 115 2020-07-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1085731 115 2020-07-11 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 06:40:00 +1085732 115 2020-07-12 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1085733 115 2020-07-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1085734 115 2020-07-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1085735 115 2020-07-15 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1085736 115 2020-07-16 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1085737 115 2020-07-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1085738 115 2020-07-18 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 06:40:00 +1085739 115 2020-07-19 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1086217 125 2020-07-02 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 03:20:00 +1086218 125 2020-07-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 03:20:00 +1086219 125 2020-07-04 \N \N \N \N \N 00:00:00 03:20:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 03:20:00 +1086220 125 2020-07-05 \N \N \N \N \N 00:00:00 03:20:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1085754 115 2020-08-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1085755 115 2020-08-04 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1085756 115 2020-08-05 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1085757 115 2020-08-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1085758 115 2020-08-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1085759 115 2020-08-08 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 06:40:00 +1085760 115 2020-08-09 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1085761 114 2020-06-15 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1085762 114 2020-06-16 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1085763 114 2020-06-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1085764 114 2020-06-18 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1085765 114 2020-06-19 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1085766 114 2020-06-20 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 06:40:00 +1085767 114 2020-06-21 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1086221 125 2020-07-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 03:20:00 +1086222 125 2020-07-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 03:20:00 +1086223 125 2020-07-08 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 03:20:00 +1086224 125 2020-07-09 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 03:20:00 +1086366 113 2020-08-08 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 06:40:00 +1085783 114 2020-07-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1085784 114 2020-07-08 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1085785 114 2020-07-09 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1085786 114 2020-07-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1085787 114 2020-07-11 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 06:40:00 +1085788 114 2020-07-12 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1085789 114 2020-07-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1085790 114 2020-07-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1085791 114 2020-07-15 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1085792 114 2020-07-16 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1085793 114 2020-07-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1085794 114 2020-07-18 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 06:40:00 +1085795 114 2020-07-19 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1085796 114 2020-07-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086225 125 2020-07-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 03:20:00 +1086226 125 2020-07-11 \N \N \N \N \N 00:00:00 03:20:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 03:20:00 +1086227 125 2020-07-12 \N \N \N \N \N 00:00:00 03:20:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1086228 125 2020-07-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 03:20:00 +1085812 114 2020-08-05 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1085813 114 2020-08-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1085814 114 2020-08-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1085815 114 2020-08-08 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 06:40:00 +1085816 114 2020-08-09 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1085817 108 2020-06-15 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1085818 108 2020-06-16 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1085819 108 2020-06-17 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1085820 108 2020-06-18 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1085821 108 2020-06-19 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1085822 108 2020-06-20 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 06:40:00 +1085823 108 2020-06-21 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1085824 108 2020-06-22 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1085825 108 2020-06-23 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1086230 125 2020-07-15 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 03:20:00 +1086245 125 2020-07-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 03:20:00 +1086246 125 2020-07-31 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 03:20:00 +1086247 125 2020-08-01 \N \N \N \N \N 00:00:00 03:20:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 03:20:00 +1085841 108 2020-07-09 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1085842 108 2020-07-10 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1085843 108 2020-07-11 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 06:40:00 +1085844 108 2020-07-12 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1085845 108 2020-07-13 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1085846 108 2020-07-14 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1085847 108 2020-07-15 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1085848 108 2020-07-16 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1085849 108 2020-07-17 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1085850 108 2020-07-18 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 06:40:00 +1085851 108 2020-07-19 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1085852 108 2020-07-20 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1085853 108 2020-07-21 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1085854 108 2020-07-22 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1086249 125 2020-08-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 03:20:00 +1086250 125 2020-08-04 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 03:20:00 +1086251 125 2020-08-05 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 03:20:00 +1086252 125 2020-08-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 03:20:00 +1014600 119 2020-01-01 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1014601 119 2020-01-02 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1014602 119 2020-01-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1014603 119 2020-01-04 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +1014604 119 2020-01-05 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1014605 119 2020-01-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1014606 119 2020-01-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1014607 119 2020-01-08 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1014608 119 2020-01-09 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1014609 119 2020-01-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1014610 119 2020-01-11 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +1014611 119 2020-01-12 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1085870 108 2020-08-07 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1085871 108 2020-08-08 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 06:40:00 +1085872 108 2020-08-09 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1085873 135 2020-06-15 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1085874 135 2020-06-16 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1086253 125 2020-08-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 03:20:00 +1086371 147 2020-06-18 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1085882 135 2020-06-24 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1085883 135 2020-06-25 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1085884 135 2020-06-26 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1085885 135 2020-06-27 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 06:40:00 +1085886 135 2020-06-28 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1085887 135 2020-06-29 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1085888 135 2020-06-30 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1085889 135 2020-07-01 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1085890 135 2020-07-02 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1085891 135 2020-07-03 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1085892 135 2020-07-04 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 06:40:00 +1085893 135 2020-07-05 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1085894 135 2020-07-06 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1085895 135 2020-07-07 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1086254 125 2020-08-08 \N \N \N \N \N 00:00:00 03:20:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 03:20:00 +1086255 125 2020-08-09 \N \N \N \N \N 00:00:00 03:20:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1086256 119 2020-06-15 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086257 119 2020-06-16 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1085911 135 2020-07-23 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1085912 135 2020-07-24 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1085913 135 2020-07-25 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 06:40:00 +1085914 135 2020-07-26 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1085915 135 2020-07-27 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1085916 135 2020-07-28 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1085917 135 2020-07-29 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1085918 135 2020-07-30 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1085919 135 2020-07-31 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1085920 135 2020-08-01 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 06:40:00 +1085921 135 2020-08-02 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1085922 135 2020-08-03 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1085923 135 2020-08-04 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1085924 135 2020-08-05 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1086259 119 2020-06-18 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086274 119 2020-07-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086275 119 2020-07-04 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 06:40:00 +1086276 119 2020-07-05 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1085940 127 2020-06-26 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1085941 127 2020-06-27 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 06:40:00 +1085942 127 2020-06-28 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1085943 127 2020-06-29 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1085944 127 2020-06-30 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1085945 127 2020-07-01 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1085946 127 2020-07-02 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1085947 127 2020-07-03 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1085948 127 2020-07-04 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 06:40:00 +1085949 127 2020-07-05 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1085950 127 2020-07-06 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1085951 127 2020-07-07 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1085952 127 2020-07-08 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1085953 127 2020-07-09 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1086278 119 2020-07-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086279 119 2020-07-08 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086280 119 2020-07-09 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086281 119 2020-07-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1085969 127 2020-07-25 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 06:40:00 +1085970 127 2020-07-26 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1085971 127 2020-07-27 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1085972 127 2020-07-28 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1085973 127 2020-07-29 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1085974 127 2020-07-30 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1085975 127 2020-07-31 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1085976 127 2020-08-01 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 06:40:00 +1085977 127 2020-08-02 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1085978 127 2020-08-03 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1085979 127 2020-08-04 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1085980 127 2020-08-05 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1085981 127 2020-08-06 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1085982 127 2020-08-07 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1086282 119 2020-07-11 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 06:40:00 +1086283 119 2020-07-12 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1086284 119 2020-07-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086285 119 2020-07-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1085999 149 2020-06-29 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086000 149 2020-06-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086001 149 2020-07-01 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086002 149 2020-07-02 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086003 149 2020-07-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086004 149 2020-07-04 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 06:40:00 +1086005 149 2020-07-05 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1086006 149 2020-07-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086007 149 2020-07-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086008 149 2020-07-08 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086009 149 2020-07-09 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086010 149 2020-07-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086011 149 2020-07-11 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 06:40:00 +1086012 149 2020-07-12 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1086287 119 2020-07-16 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086288 119 2020-07-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086303 119 2020-08-01 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 06:40:00 +1086304 119 2020-08-02 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1086028 149 2020-07-28 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086029 149 2020-07-29 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086030 149 2020-07-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086031 149 2020-07-31 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086032 149 2020-08-01 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 06:40:00 +1086033 149 2020-08-02 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1086034 149 2020-08-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086035 149 2020-08-04 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086036 149 2020-08-05 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086037 149 2020-08-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086038 149 2020-08-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086039 149 2020-08-08 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 06:40:00 +1086040 149 2020-08-09 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1086041 103 2020-06-15 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086306 119 2020-08-04 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086307 119 2020-08-05 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086308 119 2020-08-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086309 119 2020-08-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086394 147 2020-07-11 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 06:40:00 +1086057 103 2020-07-01 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086058 103 2020-07-02 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086059 103 2020-07-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086060 103 2020-07-04 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 06:40:00 +1086061 103 2020-07-05 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1086062 103 2020-07-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086063 103 2020-07-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086064 103 2020-07-08 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086065 103 2020-07-09 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086066 103 2020-07-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086067 103 2020-07-11 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 06:40:00 +1086068 103 2020-07-12 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1086069 103 2020-07-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086070 103 2020-07-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086310 119 2020-08-08 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 06:40:00 +1086311 119 2020-08-09 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1086312 113 2020-06-15 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086313 113 2020-06-16 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086086 103 2020-07-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086087 103 2020-07-31 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086088 103 2020-08-01 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 06:40:00 +1086089 103 2020-08-02 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1086090 103 2020-08-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086091 103 2020-08-04 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086092 103 2020-08-05 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086093 103 2020-08-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086094 103 2020-08-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086095 103 2020-08-08 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 06:40:00 +1086096 103 2020-08-09 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1086097 121 2020-06-15 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1086098 121 2020-06-16 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1086099 121 2020-06-17 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1086315 113 2020-06-18 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086316 113 2020-06-19 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086317 113 2020-06-20 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 06:40:00 +1086318 113 2020-06-21 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1086115 121 2020-07-03 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1086116 121 2020-07-04 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 06:40:00 +1086117 121 2020-07-05 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1086118 121 2020-07-06 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1086119 121 2020-07-07 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1086120 121 2020-07-08 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1086121 121 2020-07-09 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1086122 121 2020-07-10 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1086123 121 2020-07-11 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 06:40:00 +1086124 121 2020-07-12 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1086125 121 2020-07-13 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1086126 121 2020-07-14 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1086127 121 2020-07-15 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1086128 121 2020-07-16 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1086334 113 2020-07-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086335 113 2020-07-08 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086336 113 2020-07-09 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086337 113 2020-07-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086144 117 2020-06-15 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086145 117 2020-06-16 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086146 117 2020-06-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086147 117 2020-06-18 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086148 117 2020-06-19 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086149 117 2020-06-20 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 06:40:00 +1086150 117 2020-06-21 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1086151 117 2020-06-22 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086152 117 2020-06-23 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086153 117 2020-06-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086154 117 2020-06-25 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086155 117 2020-06-26 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086156 117 2020-06-27 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 06:40:00 +1086157 117 2020-06-28 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1086338 113 2020-07-11 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 06:40:00 +1086339 113 2020-07-12 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1086340 113 2020-07-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086341 113 2020-07-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086173 117 2020-07-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086174 117 2020-07-15 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086175 117 2020-07-16 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086176 117 2020-07-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086177 117 2020-07-18 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 06:40:00 +1086178 117 2020-07-19 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1086179 117 2020-07-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086180 117 2020-07-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086181 117 2020-07-22 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086182 117 2020-07-23 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086183 117 2020-07-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086184 117 2020-07-25 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 06:40:00 +1086185 117 2020-07-26 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1086186 117 2020-07-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086343 113 2020-07-16 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086344 113 2020-07-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086345 113 2020-07-18 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 06:40:00 +1086346 113 2020-07-19 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1086202 125 2020-06-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 03:20:00 +1086203 125 2020-06-18 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 03:20:00 +1086204 125 2020-06-19 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 03:20:00 +1086205 125 2020-06-20 \N \N \N \N \N 00:00:00 03:20:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 03:20:00 +1086206 125 2020-06-21 \N \N \N \N \N 00:00:00 03:20:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1086207 125 2020-06-22 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 03:20:00 +1086208 125 2020-06-23 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 03:20:00 +1086209 125 2020-06-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 03:20:00 +1086210 125 2020-06-25 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 03:20:00 +1086211 125 2020-06-26 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 03:20:00 +1086212 125 2020-06-27 \N \N \N \N \N 00:00:00 03:20:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 03:20:00 +1086213 125 2020-06-28 \N \N \N \N \N 00:00:00 03:20:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1086214 125 2020-06-29 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 03:20:00 +1086215 125 2020-06-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 03:20:00 +1086362 113 2020-08-04 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086363 113 2020-08-05 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086364 113 2020-08-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086365 113 2020-08-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086231 125 2020-07-16 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 03:20:00 +1086232 125 2020-07-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 03:20:00 +1086233 125 2020-07-18 \N \N \N \N \N 00:00:00 03:20:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 03:20:00 +1086234 125 2020-07-19 \N \N \N \N \N 00:00:00 03:20:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1086235 125 2020-07-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 03:20:00 +1086236 125 2020-07-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 03:20:00 +1086237 125 2020-07-22 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 03:20:00 +1086238 125 2020-07-23 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 03:20:00 +1086239 125 2020-07-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 03:20:00 +1086240 125 2020-07-25 \N \N \N \N \N 00:00:00 03:20:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 03:20:00 +1086241 125 2020-07-26 \N \N \N \N \N 00:00:00 03:20:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1086242 125 2020-07-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 03:20:00 +1086243 125 2020-07-28 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 03:20:00 +1086244 125 2020-07-29 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 03:20:00 +1086367 113 2020-08-09 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1086368 147 2020-06-15 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086369 147 2020-06-16 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086370 147 2020-06-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086260 119 2020-06-19 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086261 119 2020-06-20 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 06:40:00 +1086262 119 2020-06-21 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1086263 119 2020-06-22 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086264 119 2020-06-23 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086265 119 2020-06-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086266 119 2020-06-25 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086267 119 2020-06-26 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086268 119 2020-06-27 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 06:40:00 +1086269 119 2020-06-28 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1086270 119 2020-06-29 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086271 119 2020-06-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086272 119 2020-07-01 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086273 119 2020-07-02 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086372 147 2020-06-19 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086373 147 2020-06-20 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 06:40:00 +1086374 147 2020-06-21 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1086375 147 2020-06-22 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086399 147 2020-07-16 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086289 119 2020-07-18 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 06:40:00 +1086290 119 2020-07-19 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1086291 119 2020-07-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086292 119 2020-07-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086293 119 2020-07-22 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086294 119 2020-07-23 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086295 119 2020-07-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086296 119 2020-07-25 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 06:40:00 +1086297 119 2020-07-26 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1086298 119 2020-07-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086299 119 2020-07-28 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086300 119 2020-07-29 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086301 119 2020-07-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086302 119 2020-07-31 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086376 147 2020-06-23 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086391 147 2020-07-08 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086392 147 2020-07-09 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086393 147 2020-07-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086319 113 2020-06-22 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086320 113 2020-06-23 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086321 113 2020-06-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086322 113 2020-06-25 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086323 113 2020-06-26 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086324 113 2020-06-27 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 06:40:00 +1086325 113 2020-06-28 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1086326 113 2020-06-29 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086327 113 2020-06-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086328 113 2020-07-01 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086329 113 2020-07-02 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086330 113 2020-07-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086331 113 2020-07-04 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 06:40:00 +1086332 113 2020-07-05 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1086395 147 2020-07-12 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1086396 147 2020-07-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086397 147 2020-07-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086398 147 2020-07-15 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086348 113 2020-07-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086349 113 2020-07-22 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086350 113 2020-07-23 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086351 113 2020-07-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086352 113 2020-07-25 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 06:40:00 +1086353 113 2020-07-26 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1086354 113 2020-07-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086355 113 2020-07-28 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086356 113 2020-07-29 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086357 113 2020-07-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086358 113 2020-07-31 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086359 113 2020-08-01 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 06:40:00 +1086360 113 2020-08-02 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1086361 113 2020-08-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086400 147 2020-07-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086401 147 2020-07-18 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 06:40:00 +1086402 147 2020-07-19 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1086403 147 2020-07-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086377 147 2020-06-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086378 147 2020-06-25 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086379 147 2020-06-26 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086380 147 2020-06-27 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 06:40:00 +1086381 147 2020-06-28 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1086382 147 2020-06-29 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086383 147 2020-06-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086384 147 2020-07-01 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086385 147 2020-07-02 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086386 147 2020-07-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086387 147 2020-07-04 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 06:40:00 +1086388 147 2020-07-05 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1086389 147 2020-07-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086390 147 2020-07-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086404 147 2020-07-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086405 147 2020-07-22 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086420 147 2020-08-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086421 147 2020-08-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086406 147 2020-07-23 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086407 147 2020-07-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086408 147 2020-07-25 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 06:40:00 +1086409 147 2020-07-26 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1086410 147 2020-07-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086411 147 2020-07-28 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086412 147 2020-07-29 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086413 147 2020-07-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086414 147 2020-07-31 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086415 147 2020-08-01 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 06:40:00 +1086416 147 2020-08-02 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1086417 147 2020-08-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086418 147 2020-08-04 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086419 147 2020-08-05 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086422 147 2020-08-08 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 06:40:00 +1086423 147 2020-08-09 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1086424 131 2020-06-15 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 04:00:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 04:00:00 +1086425 131 2020-06-16 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 04:00:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 04:00:00 +1086426 131 2020-06-17 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 04:00:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 04:00:00 +1086427 131 2020-06-18 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 04:00:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 04:00:00 +1086428 131 2020-06-19 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 04:00:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 04:00:00 +1086429 131 2020-06-20 \N \N \N \N \N 00:00:00 04:00:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1086430 131 2020-06-21 \N \N \N \N \N 00:00:00 04:00:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1086431 131 2020-06-22 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 04:00:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 04:00:00 +1086432 131 2020-06-23 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 04:00:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 04:00:00 +1086433 131 2020-06-24 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 04:00:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 04:00:00 +1086434 131 2020-06-25 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 04:00:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 04:00:00 +1086435 131 2020-06-26 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 04:00:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 04:00:00 +1086436 131 2020-06-27 \N \N \N \N \N 00:00:00 04:00:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1086437 131 2020-06-28 \N \N \N \N \N 00:00:00 04:00:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1086438 131 2020-06-29 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 04:00:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 04:00:00 +1086439 131 2020-06-30 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 04:00:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 04:00:00 +1086440 131 2020-07-01 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 04:00:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 04:00:00 +1086441 131 2020-07-02 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 04:00:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 04:00:00 +1086442 131 2020-07-03 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 04:00:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 04:00:00 +1086443 131 2020-07-04 \N \N \N \N \N 00:00:00 04:00:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1086444 131 2020-07-05 \N \N \N \N \N 00:00:00 04:00:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1086445 131 2020-07-06 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 04:00:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 04:00:00 +1016806 113 2019-12-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1016807 113 2019-12-31 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1086446 131 2020-07-07 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 04:00:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 04:00:00 +1086447 131 2020-07-08 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 04:00:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 04:00:00 +1086448 131 2020-07-09 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 04:00:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 04:00:00 +1086449 131 2020-07-10 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 04:00:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 04:00:00 +1086450 131 2020-07-11 \N \N \N \N \N 00:00:00 04:00:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1086451 131 2020-07-12 \N \N \N \N \N 00:00:00 04:00:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1086452 131 2020-07-13 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 04:00:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 04:00:00 +1086453 131 2020-07-14 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 04:00:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 04:00:00 +1086454 131 2020-07-15 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 04:00:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 04:00:00 +1086455 131 2020-07-16 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 04:00:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 04:00:00 +1086456 131 2020-07-17 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 04:00:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 04:00:00 +1086457 131 2020-07-18 \N \N \N \N \N 00:00:00 04:00:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1086458 131 2020-07-19 \N \N \N \N \N 00:00:00 04:00:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1086459 131 2020-07-20 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 04:00:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 04:00:00 +1086460 131 2020-07-21 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 04:00:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 04:00:00 +1086461 131 2020-07-22 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 04:00:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 04:00:00 +1086462 131 2020-07-23 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 04:00:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 04:00:00 +1086463 131 2020-07-24 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 04:00:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 04:00:00 +1086464 131 2020-07-25 \N \N \N \N \N 00:00:00 04:00:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1086465 131 2020-07-26 \N \N \N \N \N 00:00:00 04:00:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1086466 131 2020-07-27 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 04:00:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 04:00:00 +1086467 131 2020-07-28 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 04:00:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 04:00:00 +1086468 131 2020-07-29 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 04:00:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 04:00:00 +1086469 131 2020-07-30 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 04:00:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 04:00:00 +1086470 131 2020-07-31 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 04:00:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 04:00:00 +1086471 131 2020-08-01 \N \N \N \N \N 00:00:00 04:00:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1086472 131 2020-08-02 \N \N \N \N \N 00:00:00 04:00:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1086473 131 2020-08-03 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 04:00:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 04:00:00 +1086474 131 2020-08-04 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 04:00:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 04:00:00 +1086475 131 2020-08-05 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 04:00:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 04:00:00 +1086476 131 2020-08-06 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 04:00:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 04:00:00 +1086477 131 2020-08-07 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 04:00:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 04:00:00 +1086478 131 2020-08-08 \N \N \N \N \N 00:00:00 04:00:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1086479 131 2020-08-09 \N \N \N \N \N 00:00:00 04:00:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1086480 104 2020-06-15 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:00:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:00:00 +1086481 104 2020-06-16 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:00:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:00:00 +1086482 104 2020-06-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:00:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:00:00 +1086483 104 2020-06-18 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:00:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:00:00 +1086484 104 2020-06-19 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:00:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:00:00 +1086485 104 2020-06-20 \N \N \N \N \N 00:00:00 06:00:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1086486 104 2020-06-21 \N \N \N \N \N 00:00:00 06:00:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1086487 104 2020-06-22 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:00:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:00:00 +1086488 104 2020-06-23 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:00:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:00:00 +1086489 104 2020-06-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:00:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:00:00 +1086490 104 2020-06-25 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:00:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:00:00 +1086491 104 2020-06-26 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:00:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:00:00 +1086492 104 2020-06-27 \N \N \N \N \N 00:00:00 06:00:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1086493 104 2020-06-28 \N \N \N \N \N 00:00:00 06:00:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1086494 104 2020-06-29 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:00:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:00:00 +1086495 104 2020-06-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:00:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:00:00 +1086496 104 2020-07-01 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:00:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:00:00 +1086497 104 2020-07-02 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:00:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:00:00 +1086498 104 2020-07-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:00:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:00:00 +1086499 104 2020-07-04 \N \N \N \N \N 00:00:00 06:00:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1086500 104 2020-07-05 \N \N \N \N \N 00:00:00 06:00:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1086501 104 2020-07-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:00:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:00:00 +1086502 104 2020-07-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:00:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:00:00 +1086503 104 2020-07-08 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:00:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:00:00 +1086504 104 2020-07-09 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:00:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:00:00 +1086505 104 2020-07-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:00:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:00:00 +1086506 104 2020-07-11 \N \N \N \N \N 00:00:00 06:00:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1086507 104 2020-07-12 \N \N \N \N \N 00:00:00 06:00:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1086508 104 2020-07-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:00:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:00:00 +1086509 104 2020-07-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:00:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:00:00 +1086510 104 2020-07-15 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:00:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:00:00 +1086511 104 2020-07-16 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:00:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:00:00 +1086512 104 2020-07-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:00:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:00:00 +1086513 104 2020-07-18 \N \N \N \N \N 00:00:00 06:00:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1086514 104 2020-07-19 \N \N \N \N \N 00:00:00 06:00:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1086515 104 2020-07-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:00:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:00:00 +1086516 104 2020-07-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:00:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:00:00 +1086517 104 2020-07-22 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:00:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:00:00 +1016752 113 2020-01-01 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1016753 113 2020-01-02 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1016754 113 2020-01-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1016755 113 2020-01-04 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +1016756 113 2020-01-05 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1016757 113 2020-01-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1016758 113 2020-01-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1016759 113 2020-01-08 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1016760 113 2020-01-09 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1016761 113 2020-01-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1016762 113 2020-01-11 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +1016763 113 2020-01-12 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1016764 113 2020-01-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1016765 113 2020-01-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1016766 113 2020-01-15 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1016767 113 2020-01-16 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1016768 113 2020-01-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1016769 113 2020-01-18 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +1086518 104 2020-07-23 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:00:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:00:00 +1016783 113 2020-02-01 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +1016784 113 2020-02-02 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1016785 113 2020-02-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1016786 113 2020-02-04 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1016787 113 2020-02-05 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1016788 113 2020-02-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1016789 113 2020-02-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1016790 113 2020-02-08 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +1016791 113 2020-02-09 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1016792 113 2020-02-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1016793 113 2020-02-11 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1016794 113 2020-02-12 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1016795 113 2020-02-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1016796 113 2020-02-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1016797 113 2020-02-15 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +1016798 113 2020-02-16 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1016799 113 2020-02-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1016800 113 2020-02-18 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1086519 104 2020-07-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:00:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:00:00 +1086520 104 2020-07-25 \N \N \N \N \N 00:00:00 06:00:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1086521 104 2020-07-26 \N \N \N \N \N 00:00:00 06:00:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1086522 104 2020-07-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:00:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:00:00 +1086523 104 2020-07-28 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:00:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:00:00 +1086524 104 2020-07-29 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:00:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:00:00 +1086525 104 2020-07-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:00:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:00:00 +1086526 104 2020-07-31 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:00:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:00:00 +1086527 104 2020-08-01 \N \N \N \N \N 00:00:00 06:00:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1086528 104 2020-08-02 \N \N \N \N \N 00:00:00 06:00:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1086529 104 2020-08-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:00:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:00:00 +1086530 104 2020-08-04 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:00:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:00:00 +1086531 104 2020-08-05 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:00:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:00:00 +1086532 104 2020-08-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:00:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:00:00 +1086533 104 2020-08-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:00:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:00:00 +1086534 104 2020-08-08 \N \N \N \N \N 00:00:00 06:00:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1086535 104 2020-08-09 \N \N \N \N \N 00:00:00 06:00:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1086536 151 2020-06-15 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1086537 151 2020-06-16 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1086538 151 2020-06-17 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1086539 151 2020-06-18 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1086540 151 2020-06-19 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1086541 151 2020-06-20 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 06:40:00 +1086542 151 2020-06-21 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1086543 151 2020-06-22 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1086544 151 2020-06-23 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1086545 151 2020-06-24 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1086546 151 2020-06-25 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1086547 151 2020-06-26 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1086548 151 2020-06-27 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 06:40:00 +1086549 151 2020-06-28 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1086550 151 2020-06-29 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1086551 151 2020-06-30 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1086552 151 2020-07-01 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1086553 151 2020-07-02 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1086554 151 2020-07-03 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1086555 151 2020-07-04 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 06:40:00 +1086556 151 2020-07-05 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1086557 151 2020-07-06 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1086558 151 2020-07-07 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1086559 151 2020-07-08 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1086560 151 2020-07-09 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1086561 151 2020-07-10 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1086562 151 2020-07-11 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 06:40:00 +1086563 151 2020-07-12 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1086564 151 2020-07-13 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1086565 151 2020-07-14 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1086566 151 2020-07-15 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1086567 151 2020-07-16 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1086568 151 2020-07-17 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1086569 151 2020-07-18 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 06:40:00 +1086570 151 2020-07-19 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1086571 151 2020-07-20 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1086572 151 2020-07-21 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1086573 151 2020-07-22 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1086574 151 2020-07-23 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1086575 151 2020-07-24 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1086576 151 2020-07-25 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 06:40:00 +1086577 151 2020-07-26 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1086578 151 2020-07-27 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1086579 151 2020-07-28 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1086580 151 2020-07-29 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1086581 151 2020-07-30 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1086582 151 2020-07-31 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1086583 151 2020-08-01 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 06:40:00 +1086584 151 2020-08-02 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1086585 151 2020-08-03 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1086586 151 2020-08-04 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1086587 151 2020-08-05 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1086588 151 2020-08-06 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1086589 151 2020-08-07 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1086590 151 2020-08-08 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 06:40:00 +1086591 151 2020-08-09 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1086592 138 2020-06-15 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1086593 138 2020-06-16 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1086594 138 2020-06-17 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1086595 138 2020-06-18 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1086596 138 2020-06-19 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1086597 138 2020-06-20 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 06:40:00 +1086598 138 2020-06-21 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1086599 138 2020-06-22 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1086600 138 2020-06-23 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1086601 138 2020-06-24 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1086602 138 2020-06-25 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1086603 138 2020-06-26 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1086604 138 2020-06-27 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 06:40:00 +1086605 138 2020-06-28 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1086606 138 2020-06-29 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1086607 138 2020-06-30 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1086608 105 2020-06-15 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1086609 105 2020-06-16 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1086610 105 2020-06-17 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1086611 105 2020-06-18 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1086612 105 2020-06-19 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1086613 105 2020-06-20 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 06:40:00 +1086614 105 2020-06-21 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1086615 105 2020-06-22 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1086616 105 2020-06-23 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1086617 105 2020-06-24 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1086618 105 2020-06-25 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1086619 105 2020-06-26 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1086620 105 2020-06-27 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 06:40:00 +1086621 105 2020-06-28 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1086622 105 2020-06-29 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1086623 105 2020-06-30 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1086624 105 2020-07-01 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1086625 105 2020-07-02 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1086626 105 2020-07-03 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1086627 105 2020-07-04 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 06:40:00 +1086628 105 2020-07-05 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1086629 105 2020-07-06 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1086630 105 2020-07-07 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1086631 105 2020-07-08 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1086632 105 2020-07-09 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1086633 105 2020-07-10 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1086634 105 2020-07-11 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 06:40:00 +1086635 105 2020-07-12 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1086636 105 2020-07-13 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1086637 105 2020-07-14 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1086638 105 2020-07-15 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1086639 105 2020-07-16 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1086640 105 2020-07-17 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1086641 105 2020-07-18 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 06:40:00 +1086642 105 2020-07-19 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1086643 105 2020-07-20 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1086644 105 2020-07-21 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1086645 105 2020-07-22 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1086646 105 2020-07-23 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1086647 105 2020-07-24 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1086648 105 2020-07-25 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 06:40:00 +1086649 105 2020-07-26 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1086650 105 2020-07-27 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1086651 105 2020-07-28 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1086652 105 2020-07-29 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1086653 105 2020-07-30 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1086654 105 2020-07-31 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1086655 105 2020-08-01 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 06:40:00 +1086656 105 2020-08-02 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1086657 105 2020-08-03 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1086658 105 2020-08-04 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1086659 105 2020-08-05 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1086660 105 2020-08-06 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1086661 105 2020-08-07 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1086662 105 2020-08-08 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 06:40:00 +1086663 105 2020-08-09 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1086664 134 2020-06-15 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1086665 134 2020-06-16 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1086666 134 2020-06-17 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1086667 134 2020-06-18 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1086668 134 2020-06-19 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1086669 134 2020-06-20 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 06:40:00 +1086670 134 2020-06-21 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1086671 134 2020-06-22 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1086672 134 2020-06-23 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1086673 134 2020-06-24 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1086674 134 2020-06-25 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1086675 134 2020-06-26 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1086676 134 2020-06-27 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 06:40:00 +1086677 134 2020-06-28 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1086678 134 2020-06-29 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1086679 134 2020-06-30 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1086680 134 2020-07-01 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1086681 134 2020-07-02 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1086682 134 2020-07-03 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1086683 134 2020-07-04 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 06:40:00 +1086684 134 2020-07-05 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1086685 134 2020-07-06 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1086686 134 2020-07-07 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1086687 134 2020-07-08 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1086688 134 2020-07-09 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1086689 134 2020-07-10 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1086690 134 2020-07-11 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 06:40:00 +1086691 134 2020-07-12 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1086692 134 2020-07-13 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1086693 134 2020-07-14 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1086694 134 2020-07-15 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1086695 134 2020-07-16 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1086696 134 2020-07-17 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1086697 134 2020-07-18 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 06:40:00 +1086698 134 2020-07-19 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1086699 134 2020-07-20 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1086700 134 2020-07-21 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1086701 134 2020-07-22 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1086702 134 2020-07-23 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1086703 134 2020-07-24 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1086704 134 2020-07-25 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 06:40:00 +1086705 134 2020-07-26 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1086706 134 2020-07-27 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1086707 134 2020-07-28 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1086708 134 2020-07-29 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1086709 134 2020-07-30 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1086710 134 2020-07-31 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1086711 134 2020-08-01 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 06:40:00 +1086712 134 2020-08-02 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1086713 134 2020-08-03 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1086714 134 2020-08-04 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1086715 134 2020-08-05 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1086716 134 2020-08-06 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1086717 134 2020-08-07 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1086718 134 2020-08-08 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 06:40:00 +1086719 134 2020-08-09 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1086720 102 2020-06-15 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086721 102 2020-06-16 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086722 102 2020-06-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086723 102 2020-06-18 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086724 102 2020-06-19 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086725 102 2020-06-20 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 06:40:00 +1086726 102 2020-06-21 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1086727 102 2020-06-22 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086728 102 2020-06-23 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086729 102 2020-06-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086730 102 2020-06-25 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086731 102 2020-06-26 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086732 102 2020-06-27 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 06:40:00 +1086733 102 2020-06-28 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1086734 102 2020-06-29 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086735 102 2020-06-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086736 102 2020-07-01 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086737 102 2020-07-02 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086738 102 2020-07-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086739 102 2020-07-04 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 06:40:00 +1086740 102 2020-07-05 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1086741 102 2020-07-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086742 102 2020-07-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086743 102 2020-07-08 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086744 102 2020-07-09 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086745 102 2020-07-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086746 102 2020-07-11 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 06:40:00 +1086747 102 2020-07-12 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1086748 102 2020-07-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086749 102 2020-07-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086750 102 2020-07-15 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086751 102 2020-07-16 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086752 102 2020-07-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086753 102 2020-07-18 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 06:40:00 +1086754 102 2020-07-19 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1086755 102 2020-07-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086756 102 2020-07-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086757 102 2020-07-22 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086758 102 2020-07-23 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086759 102 2020-07-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086760 102 2020-07-25 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 06:40:00 +1086761 102 2020-07-26 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1086762 102 2020-07-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086763 102 2020-07-28 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086764 102 2020-07-29 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086765 102 2020-07-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086766 102 2020-07-31 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086767 102 2020-08-01 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 06:40:00 +1086768 102 2020-08-02 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1086769 102 2020-08-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086770 102 2020-08-04 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086771 102 2020-08-05 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086772 102 2020-08-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086773 102 2020-08-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086774 102 2020-08-08 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 06:40:00 +1086775 102 2020-08-09 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1086776 109 2020-06-15 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086777 109 2020-06-16 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086778 109 2020-06-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086779 109 2020-06-18 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086780 109 2020-06-19 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086781 109 2020-06-20 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 06:40:00 +1086782 109 2020-06-21 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1086783 109 2020-06-22 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086784 109 2020-06-23 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086785 109 2020-06-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086786 109 2020-06-25 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086787 109 2020-06-26 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086788 109 2020-06-27 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 06:40:00 +1086789 109 2020-06-28 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1086790 109 2020-06-29 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086791 109 2020-06-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086792 109 2020-07-01 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086793 109 2020-07-02 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086794 109 2020-07-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086795 109 2020-07-04 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 06:40:00 +1086796 109 2020-07-05 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1086797 109 2020-07-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086798 109 2020-07-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086799 109 2020-07-08 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086800 109 2020-07-09 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086801 109 2020-07-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086802 109 2020-07-11 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 06:40:00 +1086803 109 2020-07-12 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1086804 109 2020-07-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086805 109 2020-07-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086806 109 2020-07-15 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086807 109 2020-07-16 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086808 109 2020-07-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086809 109 2020-07-18 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 06:40:00 +1086810 109 2020-07-19 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1086811 109 2020-07-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086812 109 2020-07-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086813 109 2020-07-22 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086814 109 2020-07-23 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086815 109 2020-07-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086816 109 2020-07-25 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 06:40:00 +1086817 109 2020-07-26 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1086818 109 2020-07-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086819 109 2020-07-28 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086820 109 2020-07-29 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086821 109 2020-07-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086822 109 2020-07-31 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086823 109 2020-08-01 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 06:40:00 +1086824 109 2020-08-02 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1086825 109 2020-08-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086826 109 2020-08-04 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086827 109 2020-08-05 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086828 109 2020-08-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086829 109 2020-08-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086830 109 2020-08-08 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 06:40:00 +1086831 109 2020-08-09 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1086832 118 2020-06-15 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086833 118 2020-06-16 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086834 118 2020-06-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086835 118 2020-06-18 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086836 118 2020-06-19 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086837 118 2020-06-20 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 06:40:00 +1086838 118 2020-06-21 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1086839 118 2020-06-22 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086840 118 2020-06-23 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086841 118 2020-06-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086842 118 2020-06-25 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086843 118 2020-06-26 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086844 118 2020-06-27 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 06:40:00 +1086845 118 2020-06-28 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1086846 118 2020-06-29 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086847 118 2020-06-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086848 118 2020-07-01 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086849 118 2020-07-02 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086850 118 2020-07-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086851 118 2020-07-04 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 06:40:00 +1086852 118 2020-07-05 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1086853 118 2020-07-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086854 118 2020-07-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086855 118 2020-07-08 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086856 118 2020-07-09 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086857 118 2020-07-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086858 118 2020-07-11 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 06:40:00 +1086859 118 2020-07-12 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1086860 118 2020-07-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086861 118 2020-07-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086862 118 2020-07-15 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086863 118 2020-07-16 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086864 118 2020-07-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086865 118 2020-07-18 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 06:40:00 +1086866 118 2020-07-19 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1086867 118 2020-07-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086868 118 2020-07-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086869 118 2020-07-22 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086870 118 2020-07-23 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086871 118 2020-07-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086872 118 2020-07-25 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 06:40:00 +1086873 118 2020-07-26 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1086874 118 2020-07-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086875 118 2020-07-28 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086876 118 2020-07-29 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086877 118 2020-07-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086878 118 2020-07-31 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086879 118 2020-08-01 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 06:40:00 +1086880 118 2020-08-02 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1086881 118 2020-08-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086882 118 2020-08-04 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086883 118 2020-08-05 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086884 118 2020-08-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086885 118 2020-08-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086886 118 2020-08-08 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 06:40:00 +1086887 118 2020-08-09 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1086888 133 2020-06-15 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1086889 133 2020-06-16 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1086890 133 2020-06-17 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1086891 133 2020-06-18 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1086892 133 2020-06-19 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1086893 133 2020-06-20 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 06:40:00 +1086894 133 2020-06-21 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1086895 133 2020-06-22 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1086896 133 2020-06-23 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1086897 133 2020-06-24 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1086898 133 2020-06-25 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1086899 133 2020-06-26 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1086900 133 2020-06-27 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 06:40:00 +1086901 133 2020-06-28 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1086902 133 2020-06-29 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1086903 133 2020-06-30 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1086904 133 2020-07-01 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1086905 133 2020-07-02 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1086906 133 2020-07-03 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1086907 133 2020-07-04 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 06:40:00 +1086908 133 2020-07-05 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1086909 133 2020-07-06 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1086910 133 2020-07-07 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1086911 133 2020-07-08 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1086912 133 2020-07-09 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1086913 133 2020-07-10 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1086914 133 2020-07-11 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 06:40:00 +1086915 133 2020-07-12 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1086916 133 2020-07-13 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1086917 133 2020-07-14 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1086918 133 2020-07-15 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1086919 133 2020-07-16 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1086920 133 2020-07-17 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1086921 133 2020-07-18 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 06:40:00 +1086922 133 2020-07-19 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1086923 133 2020-07-20 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1086924 133 2020-07-21 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1086925 133 2020-07-22 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1086926 133 2020-07-23 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1086927 133 2020-07-24 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1086928 133 2020-07-25 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 06:40:00 +1086929 133 2020-07-26 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1086930 133 2020-07-27 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1086931 133 2020-07-28 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1086932 133 2020-07-29 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1086933 133 2020-07-30 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1086934 133 2020-07-31 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1086935 133 2020-08-01 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 06:40:00 +1086936 133 2020-08-02 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1086937 133 2020-08-03 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1086938 133 2020-08-04 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1086939 133 2020-08-05 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1086940 133 2020-08-06 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1086941 133 2020-08-07 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1086942 133 2020-08-08 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 06:40:00 +1086943 133 2020-08-09 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1086944 111 2020-06-15 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1086945 111 2020-06-16 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1086946 111 2020-06-17 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1086947 111 2020-06-18 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1086948 111 2020-06-19 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1086949 111 2020-06-20 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 06:40:00 +1086950 111 2020-06-21 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1086951 111 2020-06-22 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1086952 111 2020-06-23 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1086953 111 2020-06-24 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1086954 111 2020-06-25 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1086955 111 2020-06-26 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1086956 111 2020-06-27 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 06:40:00 +1086957 111 2020-06-28 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1086958 111 2020-06-29 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1086959 111 2020-06-30 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1086960 111 2020-07-01 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1086961 111 2020-07-02 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1086962 111 2020-07-03 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1018904 147 2020-01-01 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1018905 147 2020-01-02 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1018906 147 2020-01-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1018907 147 2020-01-04 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +1018908 147 2020-01-05 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1018909 147 2020-01-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1018910 147 2020-01-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1018911 147 2020-01-08 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1018912 147 2020-01-09 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1018913 147 2020-01-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1018914 147 2020-01-11 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +1018915 147 2020-01-12 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1018916 147 2020-01-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1086963 111 2020-07-04 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 06:40:00 +1086964 111 2020-07-05 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1086965 111 2020-07-06 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1086966 111 2020-07-07 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1086967 111 2020-07-08 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1086968 111 2020-07-09 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1018955 147 2020-02-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1018956 147 2020-02-22 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +1018957 147 2020-02-23 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1086969 111 2020-07-10 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1086970 111 2020-07-11 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 06:40:00 +1086971 111 2020-07-12 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1086972 111 2020-07-13 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1086973 111 2020-07-14 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1086974 111 2020-07-15 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1086975 111 2020-07-16 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1086976 111 2020-07-17 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1086977 111 2020-07-18 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 06:40:00 +1086978 111 2020-07-19 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1086979 111 2020-07-20 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1086980 111 2020-07-21 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1086981 111 2020-07-22 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1086982 111 2020-07-23 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1086983 111 2020-07-24 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1086984 111 2020-07-25 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 06:40:00 +1086985 111 2020-07-26 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1086986 111 2020-07-27 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1086987 111 2020-07-28 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1086988 111 2020-07-29 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1086989 111 2020-07-30 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1086990 111 2020-07-31 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1086991 111 2020-08-01 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 06:40:00 +1086992 111 2020-08-02 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1086993 111 2020-08-03 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1086994 111 2020-08-04 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1086995 111 2020-08-05 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1086996 111 2020-08-06 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1086997 111 2020-08-07 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1086998 111 2020-08-08 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 06:40:00 +1086999 111 2020-08-09 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1087000 128 2020-06-15 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087001 128 2020-06-16 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087002 128 2020-06-17 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087003 128 2020-06-18 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087004 128 2020-06-19 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087005 128 2020-06-20 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 06:40:00 +1087006 128 2020-06-21 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1087007 128 2020-06-22 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087008 128 2020-06-23 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087009 128 2020-06-24 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087010 128 2020-06-25 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087011 128 2020-06-26 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087012 128 2020-06-27 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 06:40:00 +1087013 128 2020-06-28 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1087014 128 2020-06-29 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087015 128 2020-06-30 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087016 128 2020-07-01 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087017 128 2020-07-02 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087018 128 2020-07-03 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087019 128 2020-07-04 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 06:40:00 +1087020 128 2020-07-05 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1087021 128 2020-07-06 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087022 128 2020-07-07 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087023 128 2020-07-08 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087024 128 2020-07-09 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087025 128 2020-07-10 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087026 128 2020-07-11 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 06:40:00 +1087027 128 2020-07-12 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1087028 128 2020-07-13 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087029 128 2020-07-14 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087030 128 2020-07-15 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087031 128 2020-07-16 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087032 128 2020-07-17 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087033 128 2020-07-18 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 06:40:00 +1087034 128 2020-07-19 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1087035 128 2020-07-20 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087036 128 2020-07-21 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087037 128 2020-07-22 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087038 128 2020-07-23 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087039 128 2020-07-24 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087040 128 2020-07-25 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 06:40:00 +1087041 128 2020-07-26 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1087042 128 2020-07-27 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087043 128 2020-07-28 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087044 128 2020-07-29 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087045 128 2020-07-30 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087046 128 2020-07-31 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087047 128 2020-08-01 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 06:40:00 +1087048 128 2020-08-02 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1087049 128 2020-08-03 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087050 128 2020-08-04 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087051 128 2020-08-05 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087052 128 2020-08-06 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087053 128 2020-08-07 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087054 128 2020-08-08 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 06:40:00 +1087055 128 2020-08-09 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1087056 142 2020-06-15 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087057 142 2020-06-16 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087058 142 2020-06-17 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087059 142 2020-06-18 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087060 142 2020-06-19 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087061 142 2020-06-20 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 06:40:00 +1087062 142 2020-06-21 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1087063 142 2020-06-22 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087064 142 2020-06-23 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087065 142 2020-06-24 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087066 142 2020-06-25 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087067 142 2020-06-26 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087068 142 2020-06-27 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 06:40:00 +1087069 142 2020-06-28 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1087070 142 2020-06-29 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087071 142 2020-06-30 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087072 142 2020-07-01 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087073 142 2020-07-02 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087074 142 2020-07-03 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087075 142 2020-07-04 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 06:40:00 +1087076 142 2020-07-05 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1087077 142 2020-07-06 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087078 142 2020-07-07 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087079 142 2020-07-08 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087080 142 2020-07-09 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087081 142 2020-07-10 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087082 142 2020-07-11 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 06:40:00 +1087083 142 2020-07-12 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1087084 142 2020-07-13 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087085 142 2020-07-14 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087086 142 2020-07-15 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087087 142 2020-07-16 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087088 142 2020-07-17 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087089 142 2020-07-18 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 06:40:00 +1087090 142 2020-07-19 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1087091 142 2020-07-20 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087092 142 2020-07-21 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087093 142 2020-07-22 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087094 142 2020-07-23 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087095 142 2020-07-24 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087096 142 2020-07-25 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 06:40:00 +1087097 142 2020-07-26 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1087098 142 2020-07-27 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087099 142 2020-07-28 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087100 142 2020-07-29 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087101 142 2020-07-30 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087102 142 2020-07-31 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087103 142 2020-08-01 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 06:40:00 +1087104 142 2020-08-02 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1087105 142 2020-08-03 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087106 142 2020-08-04 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087107 142 2020-08-05 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087108 142 2020-08-06 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087109 142 2020-08-07 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087110 142 2020-08-08 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 06:40:00 +1087111 142 2020-08-09 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1087112 136 2020-06-15 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087113 136 2020-06-16 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087114 136 2020-06-17 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087115 136 2020-06-18 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087116 136 2020-06-19 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087117 136 2020-06-20 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 06:40:00 +1087118 136 2020-06-21 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1087119 136 2020-06-22 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087120 136 2020-06-23 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087121 136 2020-06-24 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087122 136 2020-06-25 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087123 136 2020-06-26 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087124 136 2020-06-27 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 06:40:00 +1087125 136 2020-06-28 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1087126 136 2020-06-29 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087127 136 2020-06-30 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087128 136 2020-07-01 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087129 136 2020-07-02 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087130 136 2020-07-03 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087131 136 2020-07-04 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 06:40:00 +1087132 136 2020-07-05 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1087133 136 2020-07-06 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087134 136 2020-07-07 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087135 136 2020-07-08 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087136 136 2020-07-09 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087137 136 2020-07-10 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087138 136 2020-07-11 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 06:40:00 +1087139 136 2020-07-12 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1087140 136 2020-07-13 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087141 136 2020-07-14 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087142 136 2020-07-15 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087143 136 2020-07-16 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087144 136 2020-07-17 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087145 136 2020-07-18 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 06:40:00 +1087146 136 2020-07-19 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1087147 136 2020-07-20 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087148 136 2020-07-21 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087149 136 2020-07-22 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087150 136 2020-07-23 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087151 136 2020-07-24 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087152 136 2020-07-25 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 06:40:00 +1087153 136 2020-07-26 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1087154 136 2020-07-27 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087155 136 2020-07-28 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087156 136 2020-07-29 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087157 136 2020-07-30 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087158 136 2020-07-31 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087159 136 2020-08-01 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 06:40:00 +1087160 136 2020-08-02 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1087161 136 2020-08-03 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087162 136 2020-08-04 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087163 136 2020-08-05 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087164 136 2020-08-06 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087165 136 2020-08-07 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087166 136 2020-08-08 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 06:40:00 +1087167 136 2020-08-09 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1087168 139 2020-06-15 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087169 139 2020-06-16 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087170 139 2020-06-17 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087171 139 2020-06-18 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087172 139 2020-06-19 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087173 139 2020-06-20 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 06:40:00 +1087174 139 2020-06-21 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1087175 139 2020-06-22 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087176 139 2020-06-23 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087177 139 2020-06-24 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087178 139 2020-06-25 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087179 139 2020-06-26 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087180 139 2020-06-27 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 06:40:00 +1087181 139 2020-06-28 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1087182 139 2020-06-29 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087183 139 2020-06-30 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087184 139 2020-07-01 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087185 139 2020-07-02 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087186 139 2020-07-03 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087187 139 2020-07-04 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 06:40:00 +1087188 139 2020-07-05 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1087189 139 2020-07-06 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087190 139 2020-07-07 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087191 139 2020-07-08 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087192 139 2020-07-09 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087193 139 2020-07-10 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087194 139 2020-07-11 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 06:40:00 +1087195 139 2020-07-12 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1087196 139 2020-07-13 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087197 139 2020-07-14 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087198 139 2020-07-15 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087199 139 2020-07-16 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087200 139 2020-07-17 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087201 139 2020-07-18 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 06:40:00 +1087202 139 2020-07-19 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1087203 139 2020-07-20 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087204 139 2020-07-21 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087205 139 2020-07-22 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087206 139 2020-07-23 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087207 139 2020-07-24 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087208 139 2020-07-25 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 06:40:00 +1087209 139 2020-07-26 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1087210 139 2020-07-27 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087211 139 2020-07-28 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087212 139 2020-07-29 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087213 139 2020-07-30 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087214 139 2020-07-31 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087215 139 2020-08-01 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 06:40:00 +1087216 139 2020-08-02 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1087217 139 2020-08-03 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087218 139 2020-08-04 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087219 139 2020-08-05 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087220 139 2020-08-06 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087221 139 2020-08-07 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087222 139 2020-08-08 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 06:40:00 +1087223 139 2020-08-09 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1087224 141 2020-06-15 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087225 141 2020-06-16 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087226 141 2020-06-17 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087227 141 2020-06-18 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087228 141 2020-06-19 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087229 141 2020-06-20 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 06:40:00 +1087230 141 2020-06-21 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1087231 141 2020-06-22 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087232 141 2020-06-23 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087233 141 2020-06-24 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087234 141 2020-06-25 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087235 141 2020-06-26 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087236 141 2020-06-27 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 06:40:00 +1087237 141 2020-06-28 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1087238 141 2020-06-29 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087239 141 2020-06-30 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087240 141 2020-07-01 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087241 141 2020-07-02 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087242 141 2020-07-03 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087243 141 2020-07-04 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 06:40:00 +1087244 141 2020-07-05 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1087245 141 2020-07-06 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087246 141 2020-07-07 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087247 141 2020-07-08 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087248 141 2020-07-09 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087249 141 2020-07-10 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087250 141 2020-07-11 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 06:40:00 +1087251 141 2020-07-12 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1087252 141 2020-07-13 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087253 141 2020-07-14 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087254 141 2020-07-15 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087255 141 2020-07-16 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087256 141 2020-07-17 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087257 141 2020-07-18 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 06:40:00 +1087258 141 2020-07-19 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1087259 141 2020-07-20 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087260 141 2020-07-21 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087261 141 2020-07-22 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087262 141 2020-07-23 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087263 141 2020-07-24 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087264 141 2020-07-25 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 06:40:00 +1087265 141 2020-07-26 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1087266 141 2020-07-27 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087267 141 2020-07-28 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087268 141 2020-07-29 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087269 141 2020-07-30 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087270 141 2020-07-31 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087271 141 2020-08-01 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 06:40:00 +1087272 141 2020-08-02 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1087273 141 2020-08-03 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087274 141 2020-08-04 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087275 141 2020-08-05 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087276 141 2020-08-06 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087277 141 2020-08-07 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087278 141 2020-08-08 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 06:40:00 +1087279 141 2020-08-09 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1087280 122 2020-06-15 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1087281 122 2020-06-16 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1087282 122 2020-06-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1087283 122 2020-06-18 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1087284 122 2020-06-19 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1087285 122 2020-06-20 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 06:40:00 +1087286 122 2020-06-21 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1087287 122 2020-06-22 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1087288 122 2020-06-23 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1087289 122 2020-06-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1087290 122 2020-06-25 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1087291 122 2020-06-26 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1087292 122 2020-06-27 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 06:40:00 +1087293 122 2020-06-28 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1087294 122 2020-06-29 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1087295 122 2020-06-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1087296 122 2020-07-01 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1087297 122 2020-07-02 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1087298 122 2020-07-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1087299 122 2020-07-04 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 06:40:00 +1087300 122 2020-07-05 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1087301 122 2020-07-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1087302 122 2020-07-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1087303 122 2020-07-08 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1087304 122 2020-07-09 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1087305 122 2020-07-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1087306 122 2020-07-11 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 06:40:00 +1087307 122 2020-07-12 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1087308 122 2020-07-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1087309 122 2020-07-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1087310 122 2020-07-15 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1087311 122 2020-07-16 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1087312 122 2020-07-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1087313 122 2020-07-18 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 06:40:00 +1087314 122 2020-07-19 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1087315 122 2020-07-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1087316 122 2020-07-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1087317 122 2020-07-22 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1087318 122 2020-07-23 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1087319 122 2020-07-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1087320 122 2020-07-25 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 06:40:00 +1087321 122 2020-07-26 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1087322 122 2020-07-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1087323 122 2020-07-28 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1087324 122 2020-07-29 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1087325 122 2020-07-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1087326 122 2020-07-31 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1087327 122 2020-08-01 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 06:40:00 +1087328 122 2020-08-02 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1087329 122 2020-08-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1087330 122 2020-08-04 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1087331 122 2020-08-05 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1087332 122 2020-08-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1087333 122 2020-08-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1087334 122 2020-08-08 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 06:40:00 +1087335 122 2020-08-09 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1087336 106 2020-06-15 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 04:10:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 04:10:00 +1087337 106 2020-06-16 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 04:10:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 04:10:00 +1021110 131 2019-12-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 04:00:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 04:00:00 +1021111 131 2019-12-31 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 04:00:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 04:00:00 +1087338 106 2020-06-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 04:10:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 04:10:00 +1087339 106 2020-06-18 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 04:10:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 04:10:00 +1087340 106 2020-06-19 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 04:10:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 \N +1087341 106 2020-06-20 \N \N \N \N \N 00:00:00 04:10:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1087342 106 2020-06-21 \N \N \N \N \N 00:00:00 04:10:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1087343 106 2020-06-22 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 04:10:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 04:10:00 +1087344 106 2020-06-23 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 04:10:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 04:10:00 +1087345 106 2020-06-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 04:10:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 04:10:00 +1087346 106 2020-06-25 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 04:10:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 04:10:00 +1087347 106 2020-06-26 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 04:10:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 \N +1087348 106 2020-06-27 \N \N \N \N \N 00:00:00 04:10:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1087349 106 2020-06-28 \N \N \N \N \N 00:00:00 04:10:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1087350 106 2020-06-29 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 04:10:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 04:10:00 +1087351 106 2020-06-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 04:10:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 04:10:00 +1087352 106 2020-07-01 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 04:10:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 04:10:00 +1087353 106 2020-07-02 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 04:10:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 04:10:00 +1087354 106 2020-07-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 04:10:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 \N +1087355 106 2020-07-04 \N \N \N \N \N 00:00:00 04:10:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1087356 106 2020-07-05 \N \N \N \N \N 00:00:00 04:10:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1087357 106 2020-07-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 04:10:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 04:10:00 +1087358 106 2020-07-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 04:10:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 04:10:00 +1087359 106 2020-07-08 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 04:10:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 04:10:00 +1087360 106 2020-07-09 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 04:10:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 04:10:00 +1087361 106 2020-07-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 04:10:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 \N +1087362 106 2020-07-11 \N \N \N \N \N 00:00:00 04:10:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1087363 106 2020-07-12 \N \N \N \N \N 00:00:00 04:10:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1087364 106 2020-07-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 04:10:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 04:10:00 +1087365 106 2020-07-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 04:10:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 04:10:00 +1087366 106 2020-07-15 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 04:10:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 04:10:00 +1087367 106 2020-07-16 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 04:10:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 04:10:00 +1087368 106 2020-07-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 04:10:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 \N +1087369 106 2020-07-18 \N \N \N \N \N 00:00:00 04:10:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1087370 106 2020-07-19 \N \N \N \N \N 00:00:00 04:10:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1087371 106 2020-07-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 04:10:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 04:10:00 +1087372 106 2020-07-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 04:10:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 04:10:00 +1087373 106 2020-07-22 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 04:10:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 04:10:00 +1087374 106 2020-07-23 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 04:10:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 04:10:00 +1087375 106 2020-07-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 04:10:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 \N +1087376 106 2020-07-25 \N \N \N \N \N 00:00:00 04:10:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1087377 106 2020-07-26 \N \N \N \N \N 00:00:00 04:10:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1087378 106 2020-07-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 04:10:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 04:10:00 +1087379 106 2020-07-28 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 04:10:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 04:10:00 +1087380 106 2020-07-29 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 04:10:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 04:10:00 +1087381 106 2020-07-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 04:10:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 04:10:00 +1087382 106 2020-07-31 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 04:10:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 \N +1087383 106 2020-08-01 \N \N \N \N \N 00:00:00 04:10:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1087384 106 2020-08-02 \N \N \N \N \N 00:00:00 04:10:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1087385 106 2020-08-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 04:10:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 04:10:00 +1087386 106 2020-08-04 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 04:10:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 04:10:00 +1087387 106 2020-08-05 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 04:10:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 04:10:00 +1087388 106 2020-08-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 04:10:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 04:10:00 +1087389 106 2020-08-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 04:10:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 \N +1087390 106 2020-08-08 \N \N \N \N \N 00:00:00 04:10:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1087391 106 2020-08-09 \N \N \N \N \N 00:00:00 04:10:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1087547 148 2020-07-28 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1087548 148 2020-07-29 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1087549 148 2020-07-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1087550 148 2020-07-31 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1087551 148 2020-08-01 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 06:40:00 +1087552 148 2020-08-02 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1087553 148 2020-08-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1087392 110 2020-06-15 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1087393 110 2020-06-16 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1087394 110 2020-06-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1087395 110 2020-06-18 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1087396 110 2020-06-19 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1087397 110 2020-06-20 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 06:40:00 +1087398 110 2020-06-21 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1087399 110 2020-06-22 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1087400 110 2020-06-23 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1087401 110 2020-06-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1087402 110 2020-06-25 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1087403 110 2020-06-26 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1087404 110 2020-06-27 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 06:40:00 +1087405 110 2020-06-28 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1087554 148 2020-08-04 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1087555 148 2020-08-05 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1087556 148 2020-08-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1087571 130 2020-06-26 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087572 130 2020-06-27 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 06:40:00 +1087573 130 2020-06-28 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1087574 130 2020-06-29 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1021056 131 2020-01-01 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 04:00:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 04:00:00 +1021057 131 2020-01-02 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 04:00:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 04:00:00 +1021058 131 2020-01-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 04:00:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 04:00:00 +1021059 131 2020-01-04 \N \N \N \N \N 00:00:00 04:00:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1021060 131 2020-01-05 \N \N \N \N \N 00:00:00 04:00:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1021061 131 2020-01-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 04:00:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 04:00:00 +1021062 131 2020-01-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 04:00:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 04:00:00 +1021063 131 2020-01-08 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 04:00:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 04:00:00 +1021064 131 2020-01-09 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 04:00:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 04:00:00 +1021065 131 2020-01-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 04:00:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 04:00:00 +1021066 131 2020-01-11 \N \N \N \N \N 00:00:00 04:00:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1021067 131 2020-01-12 \N \N \N \N \N 00:00:00 04:00:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1021068 131 2020-01-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 04:00:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 04:00:00 +1021069 131 2020-01-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 04:00:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 04:00:00 +1021070 131 2020-01-15 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 04:00:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 04:00:00 +1021071 131 2020-01-16 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 04:00:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 04:00:00 +1021072 131 2020-01-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 04:00:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 04:00:00 +1021073 131 2020-01-18 \N \N \N \N \N 00:00:00 04:00:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1087575 130 2020-06-30 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1021084 131 2020-01-29 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 04:00:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 04:00:00 +1021085 131 2020-01-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 04:00:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 04:00:00 +1021086 131 2020-01-31 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 04:00:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 04:00:00 +1021087 131 2020-02-01 \N \N \N \N \N 00:00:00 04:00:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1021088 131 2020-02-02 \N \N \N \N \N 00:00:00 04:00:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1021089 131 2020-02-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 04:00:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 04:00:00 +1021090 131 2020-02-04 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 04:00:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 04:00:00 +1021091 131 2020-02-05 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 04:00:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 04:00:00 +1021092 131 2020-02-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 04:00:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 04:00:00 +1021093 131 2020-02-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 04:00:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 04:00:00 +1021094 131 2020-02-08 \N \N \N \N \N 00:00:00 04:00:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1021095 131 2020-02-09 \N \N \N \N \N 00:00:00 04:00:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1021096 131 2020-02-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 04:00:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 04:00:00 +1021097 131 2020-02-11 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 04:00:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 04:00:00 +1021098 131 2020-02-12 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 04:00:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 04:00:00 +1021099 131 2020-02-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 04:00:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 04:00:00 +1021100 131 2020-02-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 04:00:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 04:00:00 +1087576 130 2020-07-01 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087406 110 2020-06-29 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1087407 110 2020-06-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1087408 110 2020-07-01 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1087409 110 2020-07-02 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1087410 110 2020-07-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1087411 110 2020-07-04 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 06:40:00 +1087412 110 2020-07-05 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1087413 110 2020-07-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1087414 110 2020-07-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1087415 110 2020-07-08 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1087416 110 2020-07-09 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1087417 110 2020-07-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1087418 110 2020-07-11 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 06:40:00 +1087419 110 2020-07-12 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1087577 130 2020-07-02 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087578 130 2020-07-03 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087579 130 2020-07-04 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 06:40:00 +1087580 130 2020-07-05 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1087581 130 2020-07-06 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087582 130 2020-07-07 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087583 130 2020-07-08 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087420 110 2020-07-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1087421 110 2020-07-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1087422 110 2020-07-15 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1087423 110 2020-07-16 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1087424 110 2020-07-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1087425 110 2020-07-18 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 06:40:00 +1087426 110 2020-07-19 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1087427 110 2020-07-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1087428 110 2020-07-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1087429 110 2020-07-22 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1087430 110 2020-07-23 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1087431 110 2020-07-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1087432 110 2020-07-25 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 06:40:00 +1087433 110 2020-07-26 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1087584 130 2020-07-09 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087599 130 2020-07-24 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087600 130 2020-07-25 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 06:40:00 +1087601 130 2020-07-26 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1087602 130 2020-07-27 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087603 130 2020-07-28 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087604 130 2020-07-29 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087434 110 2020-07-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1087435 110 2020-07-28 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1087436 110 2020-07-29 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1087437 110 2020-07-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1087438 110 2020-07-31 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1087439 110 2020-08-01 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 06:40:00 +1087440 110 2020-08-02 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1087441 110 2020-08-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1087442 110 2020-08-04 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1087443 110 2020-08-05 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1087444 110 2020-08-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1087445 110 2020-08-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1087446 110 2020-08-08 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 06:40:00 +1087447 110 2020-08-09 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1087605 130 2020-07-30 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087606 130 2020-07-31 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087607 130 2020-08-01 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 06:40:00 +1087608 130 2020-08-02 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1087609 130 2020-08-03 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087610 130 2020-08-04 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087611 130 2020-08-05 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087448 145 2020-06-15 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087449 145 2020-06-16 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087450 145 2020-06-17 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087451 145 2020-06-18 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087452 145 2020-06-19 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087453 145 2020-06-20 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 06:40:00 +1087454 145 2020-06-21 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1087455 145 2020-06-22 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087456 145 2020-06-23 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087457 145 2020-06-24 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087458 145 2020-06-25 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087459 145 2020-06-26 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087460 145 2020-06-27 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 06:40:00 +1087461 145 2020-06-28 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1087612 130 2020-08-06 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087627 129 2020-06-26 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087628 129 2020-06-27 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 06:40:00 +1087629 129 2020-06-28 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1087630 129 2020-06-29 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087631 129 2020-06-30 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087632 129 2020-07-01 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087462 145 2020-06-29 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087463 145 2020-06-30 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087464 145 2020-07-01 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087465 145 2020-07-02 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087466 145 2020-07-03 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087467 145 2020-07-04 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 06:40:00 +1087468 145 2020-07-05 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1087469 145 2020-07-06 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087470 145 2020-07-07 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087471 145 2020-07-08 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087472 145 2020-07-09 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087473 145 2020-07-10 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087474 145 2020-07-11 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 06:40:00 +1087475 145 2020-07-12 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1087633 129 2020-07-02 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087634 129 2020-07-03 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087635 129 2020-07-04 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 06:40:00 +1087636 129 2020-07-05 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1087637 129 2020-07-06 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087638 129 2020-07-07 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087639 129 2020-07-08 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087476 145 2020-07-13 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087477 145 2020-07-14 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087478 145 2020-07-15 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087479 145 2020-07-16 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087480 145 2020-07-17 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087481 145 2020-07-18 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 06:40:00 +1087482 145 2020-07-19 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1087483 145 2020-07-20 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087484 145 2020-07-21 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087485 145 2020-07-22 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087486 145 2020-07-23 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087487 145 2020-07-24 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087488 145 2020-07-25 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 06:40:00 +1087489 145 2020-07-26 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1087640 129 2020-07-09 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087655 129 2020-07-24 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087656 129 2020-07-25 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 06:40:00 +1087657 129 2020-07-26 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1087658 129 2020-07-27 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087659 129 2020-07-28 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087660 129 2020-07-29 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087490 145 2020-07-27 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087491 145 2020-07-28 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087492 145 2020-07-29 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087493 145 2020-07-30 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087494 145 2020-07-31 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087495 145 2020-08-01 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 06:40:00 +1087496 145 2020-08-02 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1087497 145 2020-08-03 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087498 145 2020-08-04 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087499 145 2020-08-05 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087500 145 2020-08-06 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087501 145 2020-08-07 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087502 145 2020-08-08 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 06:40:00 +1087503 145 2020-08-09 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1087661 129 2020-07-30 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087662 129 2020-07-31 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087663 129 2020-08-01 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 06:40:00 +1087664 129 2020-08-02 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1087665 129 2020-08-03 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087666 129 2020-08-04 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087667 129 2020-08-05 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087504 148 2020-06-15 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1087505 148 2020-06-16 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1087506 148 2020-06-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1087507 148 2020-06-18 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1087508 148 2020-06-19 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1087509 148 2020-06-20 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 06:40:00 +1087510 148 2020-06-21 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1087511 148 2020-06-22 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1087512 148 2020-06-23 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1087513 148 2020-06-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1087514 148 2020-06-25 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1087515 148 2020-06-26 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1087516 148 2020-06-27 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 06:40:00 +1087517 148 2020-06-28 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1087668 129 2020-08-06 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087683 143 2020-06-26 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087684 143 2020-06-27 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 06:40:00 +1087685 143 2020-06-28 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1087686 143 2020-06-29 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087687 143 2020-06-30 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087688 143 2020-07-01 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087518 148 2020-06-29 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1087519 148 2020-06-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1087520 148 2020-07-01 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1087521 148 2020-07-02 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1087522 148 2020-07-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1087523 148 2020-07-04 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 06:40:00 +1087524 148 2020-07-05 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1087525 148 2020-07-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1087526 148 2020-07-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1087527 148 2020-07-08 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1087528 148 2020-07-09 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1087529 148 2020-07-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1087530 148 2020-07-11 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 06:40:00 +1087531 148 2020-07-12 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1087689 143 2020-07-02 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087690 143 2020-07-03 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087691 143 2020-07-04 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 06:40:00 +1087692 143 2020-07-05 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1087693 143 2020-07-06 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087694 143 2020-07-07 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087695 143 2020-07-08 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087532 148 2020-07-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1087533 148 2020-07-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1087534 148 2020-07-15 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1087535 148 2020-07-16 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1087536 148 2020-07-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1087537 148 2020-07-18 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 06:40:00 +1087538 148 2020-07-19 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1087539 148 2020-07-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1087540 148 2020-07-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1087541 148 2020-07-22 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1087542 148 2020-07-23 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1087543 148 2020-07-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1087544 148 2020-07-25 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 06:40:00 +1087545 148 2020-07-26 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1087546 148 2020-07-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1087557 148 2020-08-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1087558 148 2020-08-08 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 06:40:00 +1087559 148 2020-08-09 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1087560 130 2020-06-15 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087561 130 2020-06-16 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087562 130 2020-06-17 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087563 130 2020-06-18 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087564 130 2020-06-19 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087565 130 2020-06-20 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 06:40:00 +1087566 130 2020-06-21 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1087567 130 2020-06-22 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087568 130 2020-06-23 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087569 130 2020-06-24 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087570 130 2020-06-25 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087585 130 2020-07-10 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087586 130 2020-07-11 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 06:40:00 +1087587 130 2020-07-12 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1087588 130 2020-07-13 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087589 130 2020-07-14 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087590 130 2020-07-15 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087591 130 2020-07-16 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087592 130 2020-07-17 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087593 130 2020-07-18 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 06:40:00 +1087594 130 2020-07-19 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1087595 130 2020-07-20 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087596 130 2020-07-21 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087597 130 2020-07-22 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087598 130 2020-07-23 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087613 130 2020-08-07 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087614 130 2020-08-08 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 06:40:00 +1087615 130 2020-08-09 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1087616 129 2020-06-15 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087617 129 2020-06-16 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087618 129 2020-06-17 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087619 129 2020-06-18 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087620 129 2020-06-19 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087621 129 2020-06-20 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 06:40:00 +1087622 129 2020-06-21 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1087623 129 2020-06-22 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087624 129 2020-06-23 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087625 129 2020-06-24 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087626 129 2020-06-25 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087641 129 2020-07-10 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087642 129 2020-07-11 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 06:40:00 +1087643 129 2020-07-12 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1087644 129 2020-07-13 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087645 129 2020-07-14 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087646 129 2020-07-15 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087647 129 2020-07-16 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087648 129 2020-07-17 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087649 129 2020-07-18 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 06:40:00 +1087650 129 2020-07-19 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1087651 129 2020-07-20 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087652 129 2020-07-21 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087653 129 2020-07-22 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087654 129 2020-07-23 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087669 129 2020-08-07 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087670 129 2020-08-08 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 06:40:00 +1087671 129 2020-08-09 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1087672 143 2020-06-15 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087673 143 2020-06-16 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087674 143 2020-06-17 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087675 143 2020-06-18 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087676 143 2020-06-19 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087677 143 2020-06-20 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 06:40:00 +1087678 143 2020-06-21 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1087679 143 2020-06-22 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087680 143 2020-06-23 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087681 143 2020-06-24 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087682 143 2020-06-25 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087696 143 2020-07-09 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087697 143 2020-07-10 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087698 143 2020-07-11 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 06:40:00 +1087699 143 2020-07-12 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1087700 143 2020-07-13 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087701 143 2020-07-14 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087702 143 2020-07-15 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087703 143 2020-07-16 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087704 143 2020-07-17 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087705 143 2020-07-18 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 06:40:00 +1087706 143 2020-07-19 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1087707 143 2020-07-20 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087708 143 2020-07-21 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087709 143 2020-07-22 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087710 143 2020-07-23 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087711 143 2020-07-24 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087712 143 2020-07-25 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 06:40:00 +1087713 143 2020-07-26 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1087714 143 2020-07-27 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087715 143 2020-07-28 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087716 143 2020-07-29 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087717 143 2020-07-30 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087718 143 2020-07-31 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087719 143 2020-08-01 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 06:40:00 +1087720 143 2020-08-02 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1087721 143 2020-08-03 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087722 143 2020-08-04 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087723 143 2020-08-05 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087724 143 2020-08-06 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087725 143 2020-08-07 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087726 143 2020-08-08 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 06:40:00 +1087727 143 2020-08-09 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1023262 104 2019-12-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:00:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:00:00 +1023263 104 2019-12-31 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:00:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:00:00 +1023208 104 2020-01-01 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:00:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:00:00 +1023209 104 2020-01-02 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:00:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:00:00 +1023210 104 2020-01-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:00:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:00:00 +1023211 104 2020-01-04 \N \N \N \N \N 00:00:00 06:00:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1023212 104 2020-01-05 \N \N \N \N \N 00:00:00 06:00:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1023213 104 2020-01-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:00:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:00:00 +1023214 104 2020-01-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:00:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:00:00 +1023215 104 2020-01-08 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:00:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:00:00 +1023216 104 2020-01-09 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:00:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:00:00 +1023217 104 2020-01-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:00:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:00:00 +1023218 104 2020-01-11 \N \N \N \N \N 00:00:00 06:00:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1023219 104 2020-01-12 \N \N \N \N \N 00:00:00 06:00:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1023220 104 2020-01-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:00:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:00:00 +1023221 104 2020-01-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:00:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:00:00 +1023222 104 2020-01-15 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:00:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:00:00 +1023253 104 2020-02-15 \N \N \N \N \N 00:00:00 06:00:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1023254 104 2020-02-16 \N \N \N \N \N 00:00:00 06:00:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1023255 104 2020-02-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:00:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:00:00 +1023256 104 2020-02-18 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:00:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:00:00 +1023257 104 2020-02-19 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:00:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:00:00 +1023258 104 2020-02-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:00:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:00:00 +1023259 104 2020-02-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:00:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:00:00 +1023260 104 2020-02-22 \N \N \N \N \N 00:00:00 06:00:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1023261 104 2020-02-23 \N \N \N \N \N 00:00:00 06:00:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1025391 151 2020-02-01 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +1025392 151 2020-02-02 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1025393 151 2020-02-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1025394 151 2020-02-04 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1025395 151 2020-02-05 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1025396 151 2020-02-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1025397 151 2020-02-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1025398 151 2020-02-08 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +1025399 151 2020-02-09 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1025400 151 2020-02-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1025401 151 2020-02-11 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1025402 151 2020-02-12 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1025403 151 2020-02-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1025404 151 2020-02-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1025405 151 2020-02-15 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +1025406 151 2020-02-16 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1025407 151 2020-02-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1025408 151 2020-02-18 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1027512 138 2020-01-01 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1027513 138 2020-01-02 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1027514 138 2020-01-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1027515 138 2020-01-04 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +1027516 138 2020-01-05 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1027517 138 2020-01-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1027518 138 2020-01-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1027519 138 2020-01-08 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1027520 138 2020-01-09 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1027521 138 2020-01-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1027522 138 2020-01-11 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +1027523 138 2020-01-12 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1027524 138 2020-01-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1027525 138 2020-01-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1027526 138 2020-01-15 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1027527 138 2020-01-16 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1027528 138 2020-01-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1027529 138 2020-01-18 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +1027552 138 2020-02-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1027553 138 2020-02-11 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1027554 138 2020-02-12 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1027555 138 2020-02-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1027556 138 2020-02-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1027558 138 2020-02-16 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1027559 138 2020-02-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1027560 138 2020-02-18 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1027561 138 2020-02-19 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1027562 138 2020-02-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1027563 138 2020-02-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1027564 138 2020-02-22 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +1027565 138 2020-02-23 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1029718 105 2019-12-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1029719 105 2019-12-31 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1029664 105 2020-01-01 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1029665 105 2020-01-02 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1029666 105 2020-01-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1029667 105 2020-01-04 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +1029668 105 2020-01-05 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1029669 105 2020-01-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1029670 105 2020-01-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1029671 105 2020-01-08 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1029672 105 2020-01-09 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1029673 105 2020-01-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1029674 105 2020-01-11 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +1029675 105 2020-01-12 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1029676 105 2020-01-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1029677 105 2020-01-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1029678 105 2020-01-15 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1029679 105 2020-01-16 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1029680 105 2020-01-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1029681 105 2020-01-18 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +1029682 105 2020-01-19 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1029683 105 2020-01-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1029684 105 2020-01-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1029685 105 2020-01-22 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1029686 105 2020-01-23 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1029687 105 2020-01-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1029688 105 2020-01-25 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +1029689 105 2020-01-26 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1029690 105 2020-01-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1029691 105 2020-01-28 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1029692 105 2020-01-29 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1029693 105 2020-01-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1029694 105 2020-01-31 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1029695 105 2020-02-01 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +1029696 105 2020-02-02 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1029697 105 2020-02-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1029698 105 2020-02-04 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1031816 134 2020-01-01 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1031817 134 2020-01-02 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1031818 134 2020-01-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1031819 134 2020-01-04 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +1031820 134 2020-01-05 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1031821 134 2020-01-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1031822 134 2020-01-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1031823 134 2020-01-08 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1031824 134 2020-01-09 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1031825 134 2020-01-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1031826 134 2020-01-11 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +1031827 134 2020-01-12 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1031828 134 2020-01-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1031829 134 2020-01-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1031830 134 2020-01-15 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1031831 134 2020-01-16 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1031832 134 2020-01-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1031833 134 2020-01-18 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +1031850 134 2020-02-04 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1031851 134 2020-02-05 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1031852 134 2020-02-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1031853 134 2020-02-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1031854 134 2020-02-08 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +1031855 134 2020-02-09 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1031856 134 2020-02-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1031857 134 2020-02-11 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1031858 134 2020-02-12 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1031859 134 2020-02-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1031860 134 2020-02-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1031861 134 2020-02-15 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +1031862 134 2020-02-16 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1031863 134 2020-02-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1031864 134 2020-02-18 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1031865 134 2020-02-19 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1031866 134 2020-02-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1031867 134 2020-02-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1033968 144 2020-01-01 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1033969 144 2020-01-02 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1033970 144 2020-01-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1033971 144 2020-01-04 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +1033972 144 2020-01-05 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1033973 144 2020-01-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1033974 144 2020-01-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1033975 144 2020-01-08 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1033976 144 2020-01-09 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1033977 144 2020-01-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1033978 144 2020-01-11 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +1033979 144 2020-01-12 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1033980 144 2020-01-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1033981 144 2020-01-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1033982 144 2020-01-15 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1033983 144 2020-01-16 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1033984 144 2020-01-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1033985 144 2020-01-18 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +1033986 144 2020-01-19 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1033987 144 2020-01-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1033988 144 2020-01-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1033989 144 2020-01-22 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1033990 144 2020-01-23 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1033991 144 2020-01-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1033992 144 2020-01-25 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +1033993 144 2020-01-26 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1033994 144 2020-01-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1036120 102 2020-01-01 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1036121 102 2020-01-02 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1036122 102 2020-01-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1036123 102 2020-01-04 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +1036124 102 2020-01-05 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1036125 102 2020-01-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1036126 102 2020-01-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1036127 102 2020-01-08 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1036128 102 2020-01-09 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1036129 102 2020-01-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1036130 102 2020-01-11 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +1036131 102 2020-01-12 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1036132 102 2020-01-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1036133 102 2020-01-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1036134 102 2020-01-15 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1036135 102 2020-01-16 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1036136 102 2020-01-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1036137 102 2020-01-18 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +1036151 102 2020-02-01 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +1036152 102 2020-02-02 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1036153 102 2020-02-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1036154 102 2020-02-04 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1036155 102 2020-02-05 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1036156 102 2020-02-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1036157 102 2020-02-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1036158 102 2020-02-08 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +1036159 102 2020-02-09 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1036160 102 2020-02-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1036161 102 2020-02-11 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1036162 102 2020-02-12 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1036163 102 2020-02-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1036164 102 2020-02-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1036165 102 2020-02-15 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +1036166 102 2020-02-16 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1036167 102 2020-02-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1036168 102 2020-02-18 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1038326 109 2019-12-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1038327 109 2019-12-31 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1038272 109 2020-01-01 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1038273 109 2020-01-02 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1038274 109 2020-01-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1038275 109 2020-01-04 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +1038276 109 2020-01-05 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1038277 109 2020-01-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1038278 109 2020-01-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1038279 109 2020-01-08 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1038280 109 2020-01-09 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1038281 109 2020-01-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1038282 109 2020-01-11 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +1038283 109 2020-01-12 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1038284 109 2020-01-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1038285 109 2020-01-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1038286 109 2020-01-15 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1038287 109 2020-01-16 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1040478 118 2019-12-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1040479 118 2019-12-31 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1040424 118 2020-01-01 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1040425 118 2020-01-02 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1040426 118 2020-01-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1040427 118 2020-01-04 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +1040428 118 2020-01-05 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1040429 118 2020-01-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1040430 118 2020-01-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1040431 118 2020-01-08 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1040432 118 2020-01-09 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1040433 118 2020-01-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1040434 118 2020-01-11 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +1040435 118 2020-01-12 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1040436 118 2020-01-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1040437 118 2020-01-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1040438 118 2020-01-15 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1040439 118 2020-01-16 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1040440 118 2020-01-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1040441 118 2020-01-18 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +1040455 118 2020-02-01 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +1040456 118 2020-02-02 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1040457 118 2020-02-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1040458 118 2020-02-04 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1040459 118 2020-02-05 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1040460 118 2020-02-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1040461 118 2020-02-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1040462 118 2020-02-08 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +1040463 118 2020-02-09 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1040464 118 2020-02-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1040465 118 2020-02-11 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1040466 118 2020-02-12 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1040467 118 2020-02-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1040468 118 2020-02-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1040469 118 2020-02-15 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +1040470 118 2020-02-16 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1040471 118 2020-02-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1040472 118 2020-02-18 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1042630 133 2019-12-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1042631 133 2019-12-31 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1042576 133 2020-01-01 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1042577 133 2020-01-02 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1042578 133 2020-01-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1042579 133 2020-01-04 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +1042580 133 2020-01-05 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1042581 133 2020-01-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1042582 133 2020-01-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1042583 133 2020-01-08 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1042584 133 2020-01-09 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1042585 133 2020-01-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1042586 133 2020-01-11 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +1042587 133 2020-01-12 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1044728 111 2020-01-01 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1044729 111 2020-01-02 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1044730 111 2020-01-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1044731 111 2020-01-04 08:00:00 10:40:00 \N \N \N 00:00:00 06:40:00 \N \N \N 02:40:00 00:00:00 \N 27 02:40:00 \N 00:00:00 06:40:00 +1044732 111 2020-01-05 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1044733 111 2020-01-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1044734 111 2020-01-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1044735 111 2020-01-08 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1044736 111 2020-01-09 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1044737 111 2020-01-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1044738 111 2020-01-11 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +1044739 111 2020-01-12 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1044740 111 2020-01-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1044741 111 2020-01-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1044742 111 2020-01-15 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1044743 111 2020-01-16 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1044744 111 2020-01-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1044745 111 2020-01-18 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +1044759 111 2020-02-01 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +1044760 111 2020-02-02 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1044761 111 2020-02-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1044762 111 2020-02-04 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1044763 111 2020-02-05 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1044764 111 2020-02-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1044765 111 2020-02-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1044766 111 2020-02-08 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +1044767 111 2020-02-09 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1044768 111 2020-02-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1044769 111 2020-02-11 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1044770 111 2020-02-12 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1044771 111 2020-02-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1044772 111 2020-02-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1044773 111 2020-02-15 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +1044774 111 2020-02-16 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1044775 111 2020-02-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1044776 111 2020-02-18 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1046880 128 2020-01-01 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1046881 128 2020-01-02 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1046882 128 2020-01-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1046883 128 2020-01-04 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +1046884 128 2020-01-05 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1046885 128 2020-01-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1046886 128 2020-01-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1046887 128 2020-01-08 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1046888 128 2020-01-09 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1046889 128 2020-01-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1046890 128 2020-01-11 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +1046891 128 2020-01-12 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1046892 128 2020-01-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1046931 128 2020-02-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1046932 128 2020-02-22 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +1046933 128 2020-02-23 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1049086 142 2019-12-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1049087 142 2019-12-31 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1049032 142 2020-01-01 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1049033 142 2020-01-02 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1049034 142 2020-01-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1049035 142 2020-01-04 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +1049036 142 2020-01-05 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1049037 142 2020-01-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1049038 142 2020-01-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1049039 142 2020-01-08 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1049040 142 2020-01-09 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1049041 142 2020-01-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1049042 142 2020-01-11 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +1049043 142 2020-01-12 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1049044 142 2020-01-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1049045 142 2020-01-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1049046 142 2020-01-15 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1049047 142 2020-01-16 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1049048 142 2020-01-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1049049 142 2020-01-18 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +1049060 142 2020-01-29 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1049061 142 2020-01-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1049062 142 2020-01-31 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1049063 142 2020-02-01 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +1049064 142 2020-02-02 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1049065 142 2020-02-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1049066 142 2020-02-04 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1049067 142 2020-02-05 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1049068 142 2020-02-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1049069 142 2020-02-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1049070 142 2020-02-08 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +1049071 142 2020-02-09 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1049072 142 2020-02-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1049073 142 2020-02-11 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1049074 142 2020-02-12 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1049075 142 2020-02-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1049076 142 2020-02-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1051238 136 2019-12-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1051239 136 2019-12-31 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1051184 136 2020-01-01 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1051185 136 2020-01-02 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1051186 136 2020-01-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1051187 136 2020-01-04 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +1051188 136 2020-01-05 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1051189 136 2020-01-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1051190 136 2020-01-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1051191 136 2020-01-08 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1051192 136 2020-01-09 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1051193 136 2020-01-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1051194 136 2020-01-11 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +1051195 136 2020-01-12 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1051196 136 2020-01-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1051197 136 2020-01-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1051198 136 2020-01-15 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1051229 136 2020-02-15 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +1051230 136 2020-02-16 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1051231 136 2020-02-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1051232 136 2020-02-18 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1051233 136 2020-02-19 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1051234 136 2020-02-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1051235 136 2020-02-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1051236 136 2020-02-22 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +1051237 136 2020-02-23 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1053336 140 2020-01-01 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1053337 140 2020-01-02 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1053338 140 2020-01-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1053339 140 2020-01-04 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +1053340 140 2020-01-05 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1053341 140 2020-01-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1053342 140 2020-01-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1053343 140 2020-01-08 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1053344 140 2020-01-09 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1053345 140 2020-01-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1053346 140 2020-01-11 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +1053347 140 2020-01-12 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1053348 140 2020-01-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1053349 140 2020-01-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1053350 140 2020-01-15 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1053351 140 2020-01-16 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1053352 140 2020-01-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1053353 140 2020-01-18 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +1053358 140 2020-01-23 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1053359 140 2020-01-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1053360 140 2020-01-25 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +1053361 140 2020-01-26 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1053362 140 2020-01-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1053363 140 2020-01-28 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1053364 140 2020-01-29 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1053365 140 2020-01-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1053366 140 2020-01-31 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1055488 139 2020-01-01 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1055489 139 2020-01-02 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1055490 139 2020-01-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1055491 139 2020-01-04 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +1055492 139 2020-01-05 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1055493 139 2020-01-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1055494 139 2020-01-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1055495 139 2020-01-08 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1055496 139 2020-01-09 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1055497 139 2020-01-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1055498 139 2020-01-11 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +1055499 139 2020-01-12 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1055500 139 2020-01-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1055501 139 2020-01-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1055502 139 2020-01-15 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1055503 139 2020-01-16 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1055504 139 2020-01-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1055505 139 2020-01-18 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +1055528 139 2020-02-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1055529 139 2020-02-11 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1055530 139 2020-02-12 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1055531 139 2020-02-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1055532 139 2020-02-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1055534 139 2020-02-16 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1055535 139 2020-02-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1055536 139 2020-02-18 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1055537 139 2020-02-19 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1055538 139 2020-02-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1055539 139 2020-02-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1055540 139 2020-02-22 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +1055541 139 2020-02-23 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1057640 141 2020-01-01 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1057641 141 2020-01-02 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1057642 141 2020-01-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1057643 141 2020-01-04 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +1057644 141 2020-01-05 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1057645 141 2020-01-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1057646 141 2020-01-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1057647 141 2020-01-08 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1057648 141 2020-01-09 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1057649 141 2020-01-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1057650 141 2020-01-11 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +1057651 141 2020-01-12 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1057652 141 2020-01-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1057653 141 2020-01-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1057654 141 2020-01-15 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1057655 141 2020-01-16 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1057656 141 2020-01-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1057657 141 2020-01-18 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +1057658 141 2020-01-19 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1057659 141 2020-01-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1057660 141 2020-01-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1057661 141 2020-01-22 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1057662 141 2020-01-23 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1057663 141 2020-01-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1057664 141 2020-01-25 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +1057665 141 2020-01-26 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1057666 141 2020-01-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1057667 141 2020-01-28 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1057668 141 2020-01-29 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1057669 141 2020-01-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1057670 141 2020-01-31 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1057671 141 2020-02-01 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +1057672 141 2020-02-02 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1057673 141 2020-02-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1057674 141 2020-02-04 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1059846 122 2019-12-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1059847 122 2019-12-31 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1059792 122 2020-01-01 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1059793 122 2020-01-02 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1059794 122 2020-01-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1059795 122 2020-01-04 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +1059796 122 2020-01-05 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1059797 122 2020-01-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1059798 122 2020-01-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1059799 122 2020-01-08 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1059800 122 2020-01-09 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1059801 122 2020-01-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1059802 122 2020-01-11 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +1059803 122 2020-01-12 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1059804 122 2020-01-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1059805 122 2020-01-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1059806 122 2020-01-15 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1059807 122 2020-01-16 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1059808 122 2020-01-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1059809 122 2020-01-18 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +1059826 122 2020-02-04 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1059827 122 2020-02-05 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1059828 122 2020-02-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1059829 122 2020-02-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1059830 122 2020-02-08 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +1059831 122 2020-02-09 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1059832 122 2020-02-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1059833 122 2020-02-11 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1059834 122 2020-02-12 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1059835 122 2020-02-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1059836 122 2020-02-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1059837 122 2020-02-15 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +1059838 122 2020-02-16 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1059839 122 2020-02-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1059840 122 2020-02-18 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1059841 122 2020-02-19 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1059842 122 2020-02-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1059843 122 2020-02-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1061998 106 2019-12-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 04:10:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 04:10:00 +1061999 106 2019-12-31 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 04:10:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 04:10:00 +1061944 106 2020-01-01 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 04:10:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 04:10:00 +1061945 106 2020-01-02 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 04:10:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 04:10:00 +1061946 106 2020-01-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 04:10:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 \N +1061947 106 2020-01-04 \N \N \N \N \N 00:00:00 04:10:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1061948 106 2020-01-05 \N \N \N \N \N 00:00:00 04:10:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1061949 106 2020-01-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 04:10:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 04:10:00 +1061950 106 2020-01-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 04:10:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 04:10:00 +1061951 106 2020-01-08 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 04:10:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 04:10:00 +1061952 106 2020-01-09 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 04:10:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 04:10:00 +1061953 106 2020-01-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 04:10:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 \N +1061954 106 2020-01-11 \N \N \N \N \N 00:00:00 04:10:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1061955 106 2020-01-12 \N \N \N \N \N 00:00:00 04:10:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1061956 106 2020-01-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 04:10:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 04:10:00 +1061957 106 2020-01-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 04:10:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 04:10:00 +1061958 106 2020-01-15 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 04:10:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 04:10:00 +1061959 106 2020-01-16 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 04:10:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 04:10:00 +1061960 106 2020-01-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 04:10:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 \N +1061961 106 2020-01-18 \N \N \N \N \N 00:00:00 04:10:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1061962 106 2020-01-19 \N \N \N \N \N 00:00:00 04:10:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1061963 106 2020-01-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 04:10:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 04:10:00 +1061964 106 2020-01-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 04:10:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 04:10:00 +1061965 106 2020-01-22 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 04:10:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 04:10:00 +1061966 106 2020-01-23 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 04:10:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 04:10:00 +1061967 106 2020-01-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 04:10:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 \N +1061968 106 2020-01-25 \N \N \N \N \N 00:00:00 04:10:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1061969 106 2020-01-26 \N \N \N \N \N 00:00:00 04:10:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1061970 106 2020-01-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 04:10:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 04:10:00 +1064096 110 2020-01-01 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1064097 110 2020-01-02 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1064098 110 2020-01-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1064099 110 2020-01-04 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +1064100 110 2020-01-05 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1064101 110 2020-01-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1064102 110 2020-01-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1064103 110 2020-01-08 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1064104 110 2020-01-09 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1064105 110 2020-01-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1064106 110 2020-01-11 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +1064107 110 2020-01-12 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1064108 110 2020-01-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1064109 110 2020-01-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1064110 110 2020-01-15 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1064111 110 2020-01-16 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1064112 110 2020-01-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1064113 110 2020-01-18 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +1064127 110 2020-02-01 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +1064128 110 2020-02-02 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1064129 110 2020-02-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1064130 110 2020-02-04 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1064131 110 2020-02-05 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1064132 110 2020-02-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1064133 110 2020-02-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1064134 110 2020-02-08 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +1064135 110 2020-02-09 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1064136 110 2020-02-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1064137 110 2020-02-11 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1064138 110 2020-02-12 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1064139 110 2020-02-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1064140 110 2020-02-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1064141 110 2020-02-15 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +1064142 110 2020-02-16 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1064143 110 2020-02-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1064144 110 2020-02-18 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1066248 145 2020-01-01 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1066249 145 2020-01-02 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1066250 145 2020-01-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1066251 145 2020-01-04 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +1066252 145 2020-01-05 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1066253 145 2020-01-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1066254 145 2020-01-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1066255 145 2020-01-08 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1066256 145 2020-01-09 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1066257 145 2020-01-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1066258 145 2020-01-11 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +1066259 145 2020-01-12 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1066260 145 2020-01-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1066261 145 2020-01-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1066262 145 2020-01-15 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1066263 145 2020-01-16 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1068400 148 2020-01-01 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1068401 148 2020-01-02 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1068402 148 2020-01-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1068403 148 2020-01-04 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +1068404 148 2020-01-05 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1068405 148 2020-01-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1068406 148 2020-01-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1068407 148 2020-01-08 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1068408 148 2020-01-09 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1068409 148 2020-01-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1068410 148 2020-01-11 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +1068411 148 2020-01-12 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1068412 148 2020-01-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1068413 148 2020-01-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1068414 148 2020-01-15 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1068415 148 2020-01-16 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1068416 148 2020-01-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1068417 148 2020-01-18 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +1068431 148 2020-02-01 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +1068432 148 2020-02-02 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1068433 148 2020-02-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1068434 148 2020-02-04 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1068435 148 2020-02-05 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1068436 148 2020-02-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1068437 148 2020-02-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1068438 148 2020-02-08 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +1068439 148 2020-02-09 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1068440 148 2020-02-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1068441 148 2020-02-11 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1068442 148 2020-02-12 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1068443 148 2020-02-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1068444 148 2020-02-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1068445 148 2020-02-15 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +1068446 148 2020-02-16 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1068447 148 2020-02-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1068448 148 2020-02-18 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1070606 130 2019-12-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1070607 130 2019-12-31 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1070552 130 2020-01-01 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1070553 130 2020-01-02 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1070554 130 2020-01-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1070555 130 2020-01-04 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +1070556 130 2020-01-05 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1070557 130 2020-01-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1070558 130 2020-01-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1070559 130 2020-01-08 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1070560 130 2020-01-09 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1070561 130 2020-01-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1070562 130 2020-01-11 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +1070563 130 2020-01-12 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +914518 129 2019-12-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +914519 129 2019-12-31 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +914464 129 2020-01-01 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +914465 129 2020-01-02 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +914466 129 2020-01-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +914467 129 2020-01-04 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +914468 129 2020-01-05 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +914469 129 2020-01-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +914470 129 2020-01-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +914471 129 2020-01-08 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +914472 129 2020-01-09 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +914473 129 2020-01-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +914474 129 2020-01-11 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +914475 129 2020-01-12 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +914476 129 2020-01-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +914477 129 2020-01-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +914478 129 2020-01-15 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +914481 129 2020-01-18 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +914479 129 2020-01-16 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +914480 129 2020-01-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +914482 129 2020-01-19 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +914483 129 2020-01-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +914484 129 2020-01-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +914485 129 2020-01-22 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +914486 129 2020-01-23 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +914487 129 2020-01-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +914488 129 2020-01-25 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +914489 129 2020-01-26 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +914517 129 2020-02-23 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1074856 143 2020-01-01 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1074857 143 2020-01-02 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1074858 143 2020-01-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1074859 143 2020-01-04 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +1074860 143 2020-01-05 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1074861 143 2020-01-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1074862 143 2020-01-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1074863 143 2020-01-08 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1074864 143 2020-01-09 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1074865 143 2020-01-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1074866 143 2020-01-11 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +1074867 143 2020-01-12 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1074868 143 2020-01-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1074869 143 2020-01-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1074870 143 2020-01-15 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1074871 143 2020-01-16 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1074872 143 2020-01-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1074873 143 2020-01-18 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +1074887 143 2020-02-01 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +1074888 143 2020-02-02 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1074889 143 2020-02-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1074890 143 2020-02-04 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1074891 143 2020-02-05 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1074892 143 2020-02-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1074893 143 2020-02-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1074894 143 2020-02-08 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +1074895 143 2020-02-09 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1074896 143 2020-02-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1074897 143 2020-02-11 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1074898 143 2020-02-12 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1074899 143 2020-02-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1074900 143 2020-02-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1074901 143 2020-02-15 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +1074902 143 2020-02-16 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1074903 143 2020-02-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1074904 143 2020-02-18 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 \. @@ -11313,631 +14787,1247 @@ COPY portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend -- COPY portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) FROM stdin; -5512 146 27 2020 1 33:20:00 24:00:00 00:00:00 00:00:00 00:00:00 -09:20:00 2019-12-30 \N 24:00:00 5 5 \N -5513 146 27 2020 2 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-06 \N 40:00:00 7 6 \N -5514 146 27 2020 3 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-13 \N 40:00:00 7 6 \N -5515 146 27 2020 4 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-20 \N 40:00:00 7 6 \N -5516 146 27 2020 5 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-27 \N 40:00:00 7 6 \N -5517 146 27 2020 6 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-03 \N 40:00:00 7 6 \N -5518 146 27 2020 7 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-10 \N 40:00:00 7 6 \N -5519 146 27 2020 8 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-17 \N 40:00:00 7 6 \N -5520 132 27 2020 1 33:20:00 24:00:00 00:00:00 00:00:00 00:00:00 -09:20:00 2019-12-30 \N 24:00:00 5 5 \N -5521 132 27 2020 2 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-06 \N 40:00:00 7 6 \N -5522 132 27 2020 3 20:00:00 24:00:00 00:00:00 00:00:00 00:00:00 04:00:00 2020-01-13 \N 24:00:00 3 3 \N -6142 146 29 2020 9 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-24 \N 40:00:00 7 6 \N -6143 146 29 2020 10 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-02 \N 40:00:00 7 6 \N -6144 146 29 2020 11 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-09 \N 40:00:00 7 6 \N -6145 146 29 2020 12 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-16 \N 40:00:00 7 6 \N -6146 146 29 2020 13 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-23 \N 40:00:00 7 6 \N -6147 146 29 2020 14 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-30 \N 40:00:00 7 6 \N -6148 146 29 2020 15 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-04-06 \N 40:00:00 7 6 \N -6149 146 29 2020 16 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-04-13 \N 40:00:00 7 6 \N -5523 115 27 2020 1 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2019-12-30 \N 40:00:00 7 6 \N -5524 115 27 2020 2 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-06 \N 40:00:00 7 6 \N -5525 115 27 2020 3 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-13 \N 40:00:00 7 6 \N -5526 115 27 2020 4 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-20 \N 40:00:00 7 6 \N -5527 115 27 2020 5 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-27 \N 40:00:00 7 6 \N -5528 115 27 2020 6 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-03 \N 40:00:00 7 6 \N -5529 115 27 2020 7 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-10 \N 40:00:00 7 6 \N -5530 115 27 2020 8 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-17 \N 40:00:00 7 6 \N -6150 115 29 2020 9 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-24 \N 40:00:00 7 6 \N -6151 115 29 2020 10 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-02 \N 40:00:00 7 6 \N -5531 114 27 2020 1 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2019-12-30 \N 40:00:00 7 6 \N -5532 114 27 2020 2 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-06 \N 40:00:00 7 6 \N -5533 114 27 2020 3 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-13 \N 40:00:00 7 6 \N -5534 114 27 2020 4 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-20 \N 40:00:00 7 6 \N -6152 115 29 2020 11 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-09 \N 40:00:00 7 6 \N -6153 115 29 2020 12 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-16 \N 40:00:00 7 6 \N -6154 115 29 2020 13 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-23 \N 40:00:00 7 6 \N -6155 115 29 2020 14 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-30 \N 40:00:00 7 6 \N -6156 115 29 2020 15 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-04-06 \N 40:00:00 7 6 \N -6157 115 29 2020 16 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-04-13 \N 40:00:00 7 6 \N -5535 114 27 2020 5 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-27 \N 40:00:00 7 6 \N -5536 114 27 2020 6 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-03 \N 40:00:00 7 6 \N -5537 114 27 2020 7 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-10 \N 40:00:00 7 6 \N -5538 114 27 2020 8 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-17 \N 40:00:00 7 6 \N -5539 112 27 2020 1 33:20:00 24:00:00 00:00:00 00:00:00 00:00:00 -09:20:00 2019-12-30 \N 24:00:00 5 5 \N -5540 112 27 2020 2 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-06 \N 40:00:00 7 6 \N -5541 112 27 2020 3 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-13 \N 40:00:00 7 6 \N -5542 112 27 2020 4 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-20 \N 40:00:00 7 6 \N -5543 112 27 2020 5 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-27 \N 40:00:00 7 6 \N -5544 112 27 2020 6 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-03 \N 40:00:00 7 6 \N -5545 112 27 2020 7 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-10 \N 40:00:00 7 6 \N -5546 112 27 2020 8 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-17 \N 40:00:00 7 6 \N -6158 114 29 2020 9 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-24 \N 40:00:00 7 6 \N -6159 114 29 2020 10 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-02 \N 40:00:00 7 6 \N -6160 114 29 2020 11 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-09 \N 40:00:00 7 6 \N -6161 114 29 2020 12 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-16 \N 40:00:00 7 6 \N -6162 114 29 2020 13 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-23 \N 40:00:00 7 6 \N -6163 114 29 2020 14 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-30 \N 40:00:00 7 6 \N -6164 114 29 2020 15 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-04-06 \N 40:00:00 7 6 \N -6165 114 29 2020 16 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-04-13 \N 40:00:00 7 6 \N -5547 108 27 2020 2 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-06 \N 40:00:00 7 6 \N -5548 108 27 2020 3 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-13 \N 40:00:00 7 6 \N -5549 108 27 2020 4 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-20 \N 40:00:00 7 6 \N -5550 108 27 2020 5 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-27 \N 40:00:00 7 6 \N -5551 108 27 2020 6 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-03 \N 40:00:00 7 6 \N -5552 108 27 2020 7 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-10 \N 40:00:00 7 6 \N -5553 108 27 2020 8 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-17 \N 40:00:00 7 6 \N -6166 112 29 2020 9 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-24 \N 40:00:00 7 6 \N -6167 112 29 2020 10 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-02 \N 40:00:00 7 6 \N -6168 112 29 2020 11 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-09 \N 40:00:00 7 6 \N -6169 112 29 2020 12 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-16 \N 40:00:00 7 6 \N -6170 112 29 2020 13 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-23 \N 40:00:00 7 6 \N -6171 112 29 2020 14 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-30 \N 40:00:00 7 6 \N -6172 112 29 2020 15 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-04-06 \N 40:00:00 7 6 \N -6173 112 29 2020 16 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-04-13 \N 40:00:00 7 6 \N -5554 135 27 2020 1 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2019-12-30 \N 40:00:00 7 6 \N -5555 135 27 2020 2 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-06 \N 40:00:00 7 6 \N -5556 135 27 2020 3 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-13 \N 40:00:00 7 6 \N -5557 135 27 2020 4 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-20 \N 40:00:00 7 6 \N -5558 135 27 2020 5 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-27 \N 40:00:00 7 6 \N -5559 135 27 2020 6 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-03 \N 40:00:00 7 6 \N -5560 135 27 2020 7 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-10 \N 40:00:00 7 6 \N -5561 135 27 2020 8 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-17 \N 40:00:00 7 6 \N -6174 108 29 2020 9 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-24 \N 40:00:00 7 6 \N -6175 108 29 2020 10 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-02 \N 40:00:00 7 6 \N -5562 127 27 2020 1 33:20:00 24:00:00 00:00:00 00:00:00 00:00:00 -09:20:00 2019-12-30 \N 24:00:00 5 5 \N -5563 127 27 2020 2 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-06 \N 40:00:00 7 6 \N -5564 127 27 2020 3 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-13 \N 40:00:00 7 6 \N -5565 127 27 2020 4 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-20 \N 40:00:00 7 6 \N -5566 127 27 2020 5 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-27 \N 40:00:00 7 6 \N -5567 127 27 2020 6 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-03 \N 40:00:00 7 6 \N -6176 108 29 2020 11 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-09 \N 40:00:00 7 6 \N -6177 108 29 2020 12 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-16 \N 40:00:00 7 6 \N -6178 108 29 2020 13 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-23 \N 40:00:00 7 6 \N -6179 108 29 2020 14 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-30 \N 40:00:00 7 6 \N -6180 108 29 2020 15 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-04-06 \N 40:00:00 7 6 \N -6181 108 29 2020 16 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-04-13 \N 40:00:00 7 6 \N -5568 127 27 2020 7 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-10 \N 40:00:00 7 6 \N -5569 127 27 2020 8 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-17 \N 40:00:00 7 6 \N -5570 149 27 2020 1 33:20:00 24:00:00 00:00:00 00:00:00 00:00:00 -09:20:00 2019-12-30 \N 24:00:00 5 5 \N -5571 149 27 2020 2 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-06 \N 40:00:00 7 6 \N -5572 149 27 2020 3 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-13 \N 40:00:00 7 6 \N -5573 149 27 2020 4 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-20 \N 40:00:00 7 6 \N -5574 149 27 2020 5 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-27 \N 40:00:00 7 6 \N -5575 149 27 2020 6 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-03 \N 40:00:00 7 6 \N -5576 149 27 2020 7 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-10 \N 40:00:00 7 6 \N -5577 149 27 2020 8 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-17 \N 40:00:00 7 6 \N -6182 135 29 2020 9 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-24 \N 40:00:00 7 6 \N -6183 135 29 2020 10 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-02 \N 40:00:00 7 6 \N -6184 135 29 2020 11 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-09 \N 40:00:00 7 6 \N -6185 135 29 2020 12 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-16 \N 40:00:00 7 6 \N -6186 135 29 2020 13 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-23 \N 40:00:00 7 6 \N -6187 135 29 2020 14 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-30 \N 40:00:00 7 6 \N -5578 103 27 2020 1 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2019-12-30 \N 40:00:00 7 6 \N -5579 103 27 2020 2 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-06 \N 40:00:00 7 6 \N -5580 103 27 2020 3 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-13 \N 40:00:00 7 6 \N -6188 135 29 2020 15 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-04-06 \N 40:00:00 7 6 \N -5581 103 27 2020 4 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-20 \N 40:00:00 7 6 \N -5582 103 27 2020 5 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-27 \N 40:00:00 7 6 \N -5583 103 27 2020 6 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-03 \N 40:00:00 7 6 \N -5584 103 27 2020 7 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-10 \N 40:00:00 7 6 \N -5585 103 27 2020 8 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-17 \N 40:00:00 7 6 \N -6189 135 29 2020 16 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-04-13 \N 40:00:00 7 6 \N -5586 121 27 2020 1 33:20:00 24:00:00 00:00:00 00:00:00 00:00:00 -09:20:00 2019-12-30 \N 24:00:00 5 5 \N -5587 121 27 2020 2 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-06 \N 40:00:00 7 6 \N -6190 127 29 2020 9 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-24 \N 40:00:00 7 6 \N -6191 127 29 2020 10 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-02 \N 40:00:00 7 6 \N -6192 127 29 2020 11 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-09 \N 40:00:00 7 6 \N -6193 127 29 2020 12 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-16 \N 40:00:00 7 6 \N -6194 127 29 2020 13 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-23 \N 40:00:00 7 6 \N -6195 127 29 2020 14 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-30 \N 40:00:00 7 6 \N -6196 127 29 2020 15 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-04-06 \N 40:00:00 7 6 \N -6197 127 29 2020 16 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-04-13 \N 40:00:00 7 6 \N -5588 121 27 2020 3 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-13 \N 40:00:00 7 6 \N -5589 121 27 2020 4 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-20 \N 40:00:00 7 6 \N -5590 121 27 2020 5 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-27 \N 40:00:00 7 6 \N -5591 121 27 2020 6 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-03 \N 40:00:00 7 6 \N -5592 121 27 2020 7 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-10 \N 40:00:00 7 6 \N -5593 121 27 2020 8 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-17 \N 40:00:00 7 6 \N -5594 125 27 2020 1 20:00:00 40:00:00 00:00:00 00:00:00 00:00:00 20:00:00 2019-12-30 \N 40:00:00 7 6 \N -5595 125 27 2020 2 20:00:00 40:00:00 00:00:00 00:00:00 00:00:00 20:00:00 2020-01-06 \N 40:00:00 7 6 \N -5596 125 27 2020 3 20:00:00 40:00:00 00:00:00 00:00:00 00:00:00 20:00:00 2020-01-13 \N 40:00:00 7 6 \N -5597 125 27 2020 4 20:00:00 40:00:00 00:00:00 00:00:00 00:00:00 20:00:00 2020-01-20 \N 40:00:00 7 6 \N -5598 125 27 2020 5 20:00:00 40:00:00 00:00:00 00:00:00 00:00:00 20:00:00 2020-01-27 \N 40:00:00 7 6 \N -5599 125 27 2020 6 20:00:00 40:00:00 00:00:00 00:00:00 00:00:00 20:00:00 2020-02-03 \N 40:00:00 7 6 \N -6198 149 29 2020 9 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-24 \N 40:00:00 7 6 \N -6199 149 29 2020 10 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-02 \N 40:00:00 7 6 \N -6200 149 29 2020 11 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-09 \N 40:00:00 7 6 \N -6201 149 29 2020 12 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-16 \N 40:00:00 7 6 \N -6202 149 29 2020 13 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-23 \N 40:00:00 7 6 \N -5600 125 27 2020 7 20:00:00 40:00:00 00:00:00 00:00:00 00:00:00 20:00:00 2020-02-10 \N 40:00:00 7 6 \N -6203 149 29 2020 14 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-30 \N 40:00:00 7 6 \N -6204 149 29 2020 15 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-04-06 \N 40:00:00 7 6 \N -6205 149 29 2020 16 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-04-13 \N 40:00:00 7 6 \N -5601 125 27 2020 8 20:00:00 40:00:00 00:00:00 00:00:00 00:00:00 20:00:00 2020-02-17 \N 40:00:00 7 6 \N -5602 119 27 2020 1 33:20:00 24:00:00 00:00:00 00:00:00 00:00:00 -09:20:00 2019-12-30 \N 24:00:00 5 5 \N -5603 119 27 2020 2 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-06 \N 40:00:00 7 6 \N -5604 119 27 2020 3 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-13 \N 40:00:00 7 6 \N -5605 119 27 2020 4 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-20 \N 40:00:00 7 6 \N -5606 119 27 2020 5 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-27 \N 40:00:00 7 6 \N -5607 119 27 2020 6 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-03 \N 40:00:00 7 6 \N -5608 119 27 2020 7 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-10 \N 40:00:00 7 6 \N -5609 119 27 2020 8 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-17 \N 40:00:00 7 6 \N -6206 103 29 2020 9 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-24 \N 40:00:00 7 6 \N -6207 103 29 2020 10 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-02 \N 40:00:00 7 6 \N -6208 103 29 2020 11 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-09 \N 40:00:00 7 6 \N -6209 103 29 2020 12 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-16 \N 40:00:00 7 6 \N -6210 103 29 2020 13 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-23 \N 40:00:00 7 6 \N -6211 103 29 2020 14 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-30 \N 40:00:00 7 6 \N -6212 103 29 2020 15 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-04-06 \N 40:00:00 7 6 \N -6213 103 29 2020 16 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-04-13 \N 40:00:00 7 6 \N -5610 113 27 2020 1 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2019-12-30 \N 40:00:00 7 6 \N -5611 113 27 2020 2 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-06 \N 40:00:00 7 6 \N -5612 113 27 2020 3 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-13 \N 40:00:00 7 6 \N -5613 113 27 2020 4 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-20 \N 40:00:00 7 6 \N -5614 113 27 2020 5 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-27 \N 40:00:00 7 6 \N -5615 113 27 2020 6 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-03 \N 40:00:00 7 6 \N -5616 113 27 2020 7 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-10 \N 40:00:00 7 6 \N -5617 113 27 2020 8 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-17 \N 40:00:00 7 6 \N -5618 147 27 2020 1 33:20:00 24:00:00 00:00:00 00:00:00 00:00:00 -09:20:00 2019-12-30 \N 24:00:00 5 5 \N -5619 147 27 2020 2 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-06 \N 40:00:00 7 6 \N -6214 121 29 2020 9 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-24 \N 40:00:00 7 6 \N -6215 121 29 2020 10 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-02 \N 40:00:00 7 6 \N -6216 121 29 2020 11 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-09 \N 40:00:00 7 6 \N -6217 121 29 2020 12 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-16 \N 40:00:00 7 6 \N -6218 121 29 2020 13 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-23 \N 40:00:00 7 6 \N -6219 121 29 2020 14 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-30 \N 40:00:00 7 6 \N -6220 121 29 2020 15 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-04-06 \N 40:00:00 7 6 \N -6221 121 29 2020 16 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-04-13 \N 40:00:00 7 6 \N -5620 147 27 2020 3 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-13 \N 40:00:00 7 6 \N -5621 147 27 2020 4 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-20 \N 40:00:00 7 6 \N -5622 147 27 2020 5 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-27 \N 40:00:00 7 6 \N -5623 147 27 2020 6 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-03 \N 40:00:00 7 6 \N -5624 147 27 2020 7 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-10 \N 40:00:00 7 6 \N -5625 147 27 2020 8 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-17 \N 40:00:00 7 6 \N -5626 131 27 2020 1 20:00:00 40:00:00 00:00:00 00:00:00 00:00:00 20:00:00 2019-12-30 \N 40:00:00 7 6 \N -5627 131 27 2020 2 20:00:00 40:00:00 00:00:00 00:00:00 00:00:00 20:00:00 2020-01-06 \N 40:00:00 7 6 \N -5628 131 27 2020 3 20:00:00 40:00:00 00:00:00 00:00:00 00:00:00 20:00:00 2020-01-13 \N 40:00:00 7 6 \N -5629 131 27 2020 4 20:00:00 40:00:00 00:00:00 00:00:00 00:00:00 20:00:00 2020-01-20 \N 40:00:00 7 6 \N -5630 131 27 2020 5 20:00:00 40:00:00 00:00:00 00:00:00 00:00:00 20:00:00 2020-01-27 \N 40:00:00 7 6 \N -5631 131 27 2020 6 20:00:00 40:00:00 00:00:00 00:00:00 00:00:00 20:00:00 2020-02-03 \N 40:00:00 7 6 \N -5632 131 27 2020 7 20:00:00 40:00:00 00:00:00 00:00:00 00:00:00 20:00:00 2020-02-10 \N 40:00:00 7 6 \N -6222 125 29 2020 9 20:00:00 40:00:00 00:00:00 00:00:00 00:00:00 20:00:00 2020-02-24 \N 40:00:00 7 6 \N -6223 125 29 2020 10 20:00:00 40:00:00 00:00:00 00:00:00 00:00:00 20:00:00 2020-03-02 \N 40:00:00 7 6 \N -6224 125 29 2020 11 20:00:00 40:00:00 00:00:00 00:00:00 00:00:00 20:00:00 2020-03-09 \N 40:00:00 7 6 \N -6225 125 29 2020 12 20:00:00 40:00:00 00:00:00 00:00:00 00:00:00 20:00:00 2020-03-16 \N 40:00:00 7 6 \N -6226 125 29 2020 13 20:00:00 40:00:00 00:00:00 00:00:00 00:00:00 20:00:00 2020-03-23 \N 40:00:00 7 6 \N -6227 125 29 2020 14 20:00:00 40:00:00 00:00:00 00:00:00 00:00:00 20:00:00 2020-03-30 \N 40:00:00 7 6 \N -6228 125 29 2020 15 20:00:00 40:00:00 00:00:00 00:00:00 00:00:00 20:00:00 2020-04-06 \N 40:00:00 7 6 \N -6229 125 29 2020 16 20:00:00 40:00:00 00:00:00 00:00:00 00:00:00 20:00:00 2020-04-13 \N 40:00:00 7 6 \N -5633 131 27 2020 8 20:00:00 40:00:00 00:00:00 00:00:00 00:00:00 20:00:00 2020-02-17 \N 40:00:00 7 6 \N -5634 104 27 2020 1 30:00:00 40:00:00 00:00:00 00:00:00 00:00:00 10:00:00 2019-12-30 \N 40:00:00 7 6 \N -5635 104 27 2020 2 30:00:00 40:00:00 00:00:00 00:00:00 00:00:00 10:00:00 2020-01-06 \N 40:00:00 7 6 \N -5636 104 27 2020 3 30:00:00 40:00:00 00:00:00 00:00:00 00:00:00 10:00:00 2020-01-13 \N 40:00:00 7 6 \N -5637 104 27 2020 4 30:00:00 40:00:00 00:00:00 00:00:00 00:00:00 10:00:00 2020-01-20 \N 40:00:00 7 6 \N -5638 104 27 2020 5 30:00:00 40:00:00 00:00:00 00:00:00 00:00:00 10:00:00 2020-01-27 \N 40:00:00 7 6 \N -5639 104 27 2020 6 30:00:00 40:00:00 00:00:00 00:00:00 00:00:00 10:00:00 2020-02-03 \N 40:00:00 7 6 \N -5640 104 27 2020 7 30:00:00 40:00:00 00:00:00 00:00:00 00:00:00 10:00:00 2020-02-10 \N 40:00:00 7 6 \N -5641 104 27 2020 8 30:00:00 40:00:00 00:00:00 00:00:00 00:00:00 10:00:00 2020-02-17 \N 40:00:00 7 6 \N -5642 151 27 2020 5 13:20:00 00:00:00 00:00:00 00:00:00 00:00:00 -13:20:00 2020-01-27 \N 00:00:00 2 2 \N -6230 119 29 2020 9 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-24 \N 40:00:00 7 6 \N -6231 119 29 2020 10 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-02 \N 40:00:00 7 6 \N -6232 119 29 2020 11 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-09 \N 40:00:00 7 6 \N -6233 119 29 2020 12 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-16 \N 40:00:00 7 6 \N -6234 119 29 2020 13 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-23 \N 40:00:00 7 6 \N -6235 119 29 2020 14 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-30 \N 40:00:00 7 6 \N -6236 119 29 2020 15 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-04-06 \N 40:00:00 7 6 \N -6237 119 29 2020 16 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-04-13 \N 40:00:00 7 6 \N -6238 113 29 2020 9 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-24 \N 40:00:00 7 6 \N -6239 113 29 2020 10 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-02 \N 40:00:00 7 6 \N -5643 151 27 2020 6 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-03 \N 40:00:00 7 6 \N -5644 151 27 2020 7 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-10 \N 40:00:00 7 6 \N -5645 151 27 2020 8 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-17 \N 40:00:00 7 6 \N -5646 138 27 2020 1 33:20:00 24:00:00 00:00:00 00:00:00 00:00:00 -09:20:00 2019-12-30 \N 24:00:00 5 5 \N -5647 138 27 2020 2 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-06 \N 40:00:00 7 6 \N -5648 138 27 2020 3 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-13 \N 40:00:00 7 6 \N -5649 138 27 2020 4 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-20 \N 40:00:00 7 6 \N -5650 138 27 2020 5 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-27 \N 40:00:00 7 6 \N -5651 138 27 2020 6 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-03 \N 40:00:00 7 6 \N -5652 138 27 2020 7 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-10 \N 40:00:00 7 6 \N -5653 138 27 2020 8 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-17 \N 40:00:00 7 6 \N -6240 113 29 2020 11 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-09 \N 40:00:00 7 6 \N -6241 113 29 2020 12 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-16 \N 40:00:00 7 6 \N -6242 113 29 2020 13 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-23 \N 40:00:00 7 6 \N -6243 113 29 2020 14 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-30 \N 40:00:00 7 6 \N -6244 113 29 2020 15 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-04-06 \N 40:00:00 7 6 \N -6245 113 29 2020 16 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-04-13 \N 40:00:00 7 6 \N -5654 105 27 2020 1 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2019-12-30 \N 40:00:00 7 6 \N -5655 105 27 2020 2 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-06 \N 40:00:00 7 6 \N -5656 105 27 2020 3 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-13 \N 40:00:00 7 6 \N -5657 105 27 2020 4 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-20 \N 40:00:00 7 6 \N -5658 105 27 2020 5 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-27 \N 40:00:00 7 6 \N -5659 105 27 2020 6 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-03 \N 40:00:00 7 6 \N -5660 105 27 2020 7 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-10 \N 40:00:00 7 6 \N -5661 105 27 2020 8 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-17 \N 40:00:00 7 6 \N -6246 147 29 2020 9 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-24 \N 40:00:00 7 6 \N -6247 147 29 2020 10 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-02 \N 40:00:00 7 6 \N -6248 147 29 2020 11 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-09 \N 40:00:00 7 6 \N -6249 147 29 2020 12 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-16 \N 40:00:00 7 6 \N -6250 147 29 2020 13 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-23 \N 40:00:00 7 6 \N -6251 147 29 2020 14 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-30 \N 40:00:00 7 6 \N -6252 147 29 2020 15 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-04-06 \N 40:00:00 7 6 \N -6253 147 29 2020 16 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-04-13 \N 40:00:00 7 6 \N -6254 131 29 2020 9 20:00:00 40:00:00 00:00:00 00:00:00 00:00:00 20:00:00 2020-02-24 \N 40:00:00 7 6 \N -6255 131 29 2020 10 20:00:00 40:00:00 00:00:00 00:00:00 00:00:00 20:00:00 2020-03-02 \N 40:00:00 7 6 \N -5662 134 27 2020 1 33:20:00 24:00:00 00:00:00 00:00:00 00:00:00 -09:20:00 2019-12-30 \N 24:00:00 5 5 \N -5663 134 27 2020 2 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-06 \N 40:00:00 7 6 \N -5664 134 27 2020 3 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-13 \N 40:00:00 7 6 \N -5665 134 27 2020 4 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-20 \N 40:00:00 7 6 \N -5666 134 27 2020 5 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-27 \N 40:00:00 7 6 \N -5667 134 27 2020 6 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-03 \N 40:00:00 7 6 \N -5668 134 27 2020 7 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-10 \N 40:00:00 7 6 \N -5669 134 27 2020 8 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-17 \N 40:00:00 7 6 \N -6256 131 29 2020 11 20:00:00 40:00:00 00:00:00 00:00:00 00:00:00 20:00:00 2020-03-09 \N 40:00:00 7 6 \N -5670 144 27 2020 1 33:20:00 24:00:00 00:00:00 00:00:00 00:00:00 -09:20:00 2019-12-30 \N 24:00:00 5 5 \N -5671 144 27 2020 2 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-06 \N 40:00:00 7 6 \N -5672 144 27 2020 3 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-13 \N 40:00:00 7 6 \N -5673 144 27 2020 4 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-20 \N 40:00:00 7 6 \N -5674 144 27 2020 5 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-27 \N 40:00:00 7 6 \N -5675 144 27 2020 6 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-03 \N 40:00:00 7 6 \N -5676 144 27 2020 7 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-10 \N 40:00:00 7 6 \N -5677 144 27 2020 8 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-17 \N 40:00:00 7 6 \N -5678 102 27 2020 1 33:20:00 24:00:00 00:00:00 00:00:00 00:00:00 -09:20:00 2019-12-30 \N 24:00:00 5 5 \N -5679 102 27 2020 2 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-06 \N 40:00:00 7 6 \N -5680 102 27 2020 3 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-13 \N 40:00:00 7 6 \N -5681 102 27 2020 4 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-20 \N 40:00:00 7 6 \N -5682 102 27 2020 5 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-27 \N 40:00:00 7 6 \N -5683 102 27 2020 6 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-03 \N 40:00:00 7 6 \N -5684 102 27 2020 7 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-10 \N 40:00:00 7 6 \N -5685 102 27 2020 8 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-17 \N 40:00:00 7 6 \N -5686 109 27 2020 1 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2019-12-30 \N 40:00:00 7 6 \N -5687 109 27 2020 2 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-06 \N 40:00:00 7 6 \N -5688 109 27 2020 3 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-13 \N 40:00:00 7 6 \N -5689 109 27 2020 4 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-20 \N 40:00:00 7 6 \N -5690 109 27 2020 5 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-27 \N 40:00:00 7 6 \N -5691 109 27 2020 6 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-03 \N 40:00:00 7 6 \N -5692 109 27 2020 7 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-10 \N 40:00:00 7 6 \N -5693 109 27 2020 8 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-17 \N 40:00:00 7 6 \N -5694 118 27 2020 1 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2019-12-30 \N 40:00:00 7 6 \N -6257 131 29 2020 12 20:00:00 40:00:00 00:00:00 00:00:00 00:00:00 20:00:00 2020-03-16 \N 40:00:00 7 6 \N -6258 131 29 2020 13 20:00:00 40:00:00 00:00:00 00:00:00 00:00:00 20:00:00 2020-03-23 \N 40:00:00 7 6 \N -6259 131 29 2020 14 20:00:00 40:00:00 00:00:00 00:00:00 00:00:00 20:00:00 2020-03-30 \N 40:00:00 7 6 \N -6260 131 29 2020 15 20:00:00 40:00:00 00:00:00 00:00:00 00:00:00 20:00:00 2020-04-06 \N 40:00:00 7 6 \N -6261 131 29 2020 16 20:00:00 40:00:00 00:00:00 00:00:00 00:00:00 20:00:00 2020-04-13 \N 40:00:00 7 6 \N -5695 118 27 2020 2 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-06 \N 40:00:00 7 6 \N -5696 118 27 2020 3 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-13 \N 40:00:00 7 6 \N -5697 118 27 2020 4 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-20 \N 40:00:00 7 6 \N -5698 118 27 2020 5 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-27 \N 40:00:00 7 6 \N -5699 118 27 2020 6 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-03 \N 40:00:00 7 6 \N -5700 118 27 2020 7 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-10 \N 40:00:00 7 6 \N -5701 118 27 2020 8 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-17 \N 40:00:00 7 6 \N -5702 133 27 2020 1 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2019-12-30 \N 40:00:00 7 6 \N -5703 133 27 2020 2 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-06 \N 40:00:00 7 6 \N -5704 133 27 2020 3 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-13 \N 40:00:00 7 6 \N -5705 133 27 2020 4 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-20 \N 40:00:00 7 6 \N -5706 133 27 2020 5 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-27 \N 40:00:00 7 6 \N -5707 133 27 2020 6 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-03 \N 40:00:00 7 6 \N -5708 133 27 2020 7 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-10 \N 40:00:00 7 6 \N -5709 133 27 2020 8 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-17 \N 40:00:00 7 6 \N -5710 111 27 2020 1 33:20:00 24:00:00 00:00:00 00:00:00 00:00:00 -09:20:00 2019-12-30 \N 24:00:00 5 5 \N -5711 111 27 2020 2 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-06 \N 40:00:00 7 6 \N -5712 111 27 2020 3 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-13 \N 40:00:00 7 6 \N -5713 111 27 2020 4 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-20 \N 40:00:00 7 6 \N -5714 111 27 2020 5 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-27 \N 40:00:00 7 6 \N -5715 111 27 2020 6 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-03 \N 40:00:00 7 6 \N -5716 111 27 2020 7 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-10 \N 40:00:00 7 6 \N -5717 111 27 2020 8 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-17 \N 40:00:00 7 6 \N -6262 104 29 2020 9 30:00:00 40:00:00 00:00:00 00:00:00 00:00:00 10:00:00 2020-02-24 \N 40:00:00 7 6 \N -6263 104 29 2020 10 30:00:00 40:00:00 00:00:00 00:00:00 00:00:00 10:00:00 2020-03-02 \N 40:00:00 7 6 \N -6264 104 29 2020 11 30:00:00 40:00:00 00:00:00 00:00:00 00:00:00 10:00:00 2020-03-09 \N 40:00:00 7 6 \N -6265 104 29 2020 12 30:00:00 40:00:00 00:00:00 00:00:00 00:00:00 10:00:00 2020-03-16 \N 40:00:00 7 6 \N -6266 104 29 2020 13 30:00:00 40:00:00 00:00:00 00:00:00 00:00:00 10:00:00 2020-03-23 \N 40:00:00 7 6 \N -5718 128 27 2020 1 33:20:00 24:00:00 00:00:00 00:00:00 00:00:00 -09:20:00 2019-12-30 \N 24:00:00 5 5 \N -5719 128 27 2020 2 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-06 \N 40:00:00 7 6 \N -5720 128 27 2020 3 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-13 \N 40:00:00 7 6 \N -5721 128 27 2020 4 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-20 \N 40:00:00 7 6 \N -5722 128 27 2020 5 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-27 \N 40:00:00 7 6 \N -5723 128 27 2020 6 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-03 \N 40:00:00 7 6 \N -5724 128 27 2020 7 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-10 \N 40:00:00 7 6 \N -5725 128 27 2020 8 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-17 \N 40:00:00 7 6 \N -5726 142 27 2020 1 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2019-12-30 \N 40:00:00 7 6 \N -5727 142 27 2020 2 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-06 \N 40:00:00 7 6 \N -5728 142 27 2020 3 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-13 \N 40:00:00 7 6 \N -5729 142 27 2020 4 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-20 \N 40:00:00 7 6 \N -5730 142 27 2020 5 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-27 \N 40:00:00 7 6 \N -5731 142 27 2020 6 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-03 \N 40:00:00 7 6 \N -5732 142 27 2020 7 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-10 \N 40:00:00 7 6 \N -5733 142 27 2020 8 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-17 \N 40:00:00 7 6 \N -5734 136 27 2020 1 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2019-12-30 \N 40:00:00 7 6 \N -5735 136 27 2020 2 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-06 \N 40:00:00 7 6 \N -5736 136 27 2020 3 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-13 \N 40:00:00 7 6 \N -5737 136 27 2020 4 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-20 \N 40:00:00 7 6 \N -5738 136 27 2020 5 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-27 \N 40:00:00 7 6 \N -5739 136 27 2020 6 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-03 \N 40:00:00 7 6 \N -5740 136 27 2020 7 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-10 \N 40:00:00 7 6 \N -6267 104 29 2020 14 30:00:00 40:00:00 00:00:00 00:00:00 00:00:00 10:00:00 2020-03-30 \N 40:00:00 7 6 \N -6268 104 29 2020 15 30:00:00 40:00:00 00:00:00 00:00:00 00:00:00 10:00:00 2020-04-06 \N 40:00:00 7 6 \N -6269 104 29 2020 16 30:00:00 40:00:00 00:00:00 00:00:00 00:00:00 10:00:00 2020-04-13 \N 40:00:00 7 6 \N -5741 136 27 2020 8 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-17 \N 40:00:00 7 6 \N -5742 140 27 2020 1 33:20:00 24:00:00 00:00:00 00:00:00 00:00:00 -09:20:00 2019-12-30 \N 24:00:00 5 5 \N -5743 140 27 2020 2 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-06 \N 40:00:00 7 6 \N -5744 140 27 2020 3 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-13 \N 40:00:00 7 6 \N -5745 140 27 2020 4 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-20 \N 40:00:00 7 6 \N -5746 140 27 2020 5 33:20:00 40:00:00 00:00:00 00:00:00 00:00:00 06:40:00 2020-01-27 \N 40:00:00 5 5 \N -5747 139 27 2020 1 33:20:00 24:00:00 00:00:00 00:00:00 00:00:00 -09:20:00 2019-12-30 \N 24:00:00 5 5 \N -5748 139 27 2020 2 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-06 \N 40:00:00 7 6 \N -5749 139 27 2020 3 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-13 \N 40:00:00 7 6 \N -5750 139 27 2020 4 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-20 \N 40:00:00 7 6 \N -5751 139 27 2020 5 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-27 \N 40:00:00 7 6 \N -5752 139 27 2020 6 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-03 \N 40:00:00 7 6 \N -5753 139 27 2020 7 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-10 \N 40:00:00 7 6 \N -5754 139 27 2020 8 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-17 \N 40:00:00 7 6 \N -5755 141 27 2020 1 33:20:00 24:00:00 00:00:00 00:00:00 00:00:00 -09:20:00 2019-12-30 \N 24:00:00 5 5 \N -5756 141 27 2020 2 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-06 \N 40:00:00 7 6 \N -5757 141 27 2020 3 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-13 \N 40:00:00 7 6 \N -5758 141 27 2020 4 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-20 \N 40:00:00 7 6 \N -5759 141 27 2020 5 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-27 \N 40:00:00 7 6 \N -5760 141 27 2020 6 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-03 \N 40:00:00 7 6 \N -5761 141 27 2020 7 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-10 \N 40:00:00 7 6 \N -5762 141 27 2020 8 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-17 \N 40:00:00 7 6 \N -6270 151 29 2020 9 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-24 \N 40:00:00 7 6 \N -6271 151 29 2020 10 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-02 \N 40:00:00 7 6 \N -6272 151 29 2020 11 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-09 \N 40:00:00 7 6 \N -6273 151 29 2020 12 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-16 \N 40:00:00 7 6 \N -6274 151 29 2020 13 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-23 \N 40:00:00 7 6 \N -6275 151 29 2020 14 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-30 \N 40:00:00 7 6 \N -6276 151 29 2020 15 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-04-06 \N 40:00:00 7 6 \N -6277 151 29 2020 16 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-04-13 \N 40:00:00 7 6 \N -5763 122 27 2020 1 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2019-12-30 \N 40:00:00 7 6 \N -5764 122 27 2020 2 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-06 \N 40:00:00 7 6 \N -5765 122 27 2020 3 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-13 \N 40:00:00 7 6 \N -5766 122 27 2020 4 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-20 \N 40:00:00 7 6 \N -5767 122 27 2020 5 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-27 \N 40:00:00 7 6 \N -5768 122 27 2020 6 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-03 \N 40:00:00 7 6 \N -5769 122 27 2020 7 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-10 \N 40:00:00 7 6 \N -5770 122 27 2020 8 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-17 \N 40:00:00 7 6 \N -5771 106 27 2020 1 12:30:00 40:00:00 00:00:00 00:00:00 00:00:00 27:30:00 2019-12-30 \N 40:00:00 7 6 \N -5772 106 27 2020 2 12:30:00 40:00:00 00:00:00 00:00:00 00:00:00 27:30:00 2020-01-06 \N 40:00:00 7 6 \N -5773 106 27 2020 3 12:30:00 40:00:00 00:00:00 00:00:00 00:00:00 27:30:00 2020-01-13 \N 40:00:00 7 6 \N -5774 106 27 2020 4 12:30:00 40:00:00 00:00:00 00:00:00 00:00:00 27:30:00 2020-01-20 \N 40:00:00 7 6 \N -5775 106 27 2020 5 12:30:00 40:00:00 00:00:00 00:00:00 00:00:00 27:30:00 2020-01-27 \N 40:00:00 7 6 \N -5776 106 27 2020 6 12:30:00 40:00:00 00:00:00 00:00:00 00:00:00 27:30:00 2020-02-03 \N 40:00:00 7 6 \N -5777 106 27 2020 7 12:30:00 40:00:00 00:00:00 00:00:00 00:00:00 27:30:00 2020-02-10 \N 40:00:00 7 6 \N -5778 106 27 2020 8 12:30:00 40:00:00 00:00:00 00:00:00 00:00:00 27:30:00 2020-02-17 \N 40:00:00 7 6 \N -5779 110 27 2020 1 33:20:00 24:00:00 00:00:00 00:00:00 00:00:00 -09:20:00 2019-12-30 \N 24:00:00 5 5 \N -5780 110 27 2020 2 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-06 \N 40:00:00 7 6 \N -5781 110 27 2020 3 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-13 \N 40:00:00 7 6 \N -6278 138 29 2020 9 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-24 \N 40:00:00 7 6 \N -6279 138 29 2020 10 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-02 \N 40:00:00 7 6 \N -6280 138 29 2020 11 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-09 \N 40:00:00 7 6 \N -5782 110 27 2020 4 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-20 \N 40:00:00 7 6 \N -5783 110 27 2020 5 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-27 \N 40:00:00 7 6 \N -5784 110 27 2020 6 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-03 \N 40:00:00 7 6 \N -5785 110 27 2020 7 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-10 \N 40:00:00 7 6 \N -5786 110 27 2020 8 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-17 \N 40:00:00 7 6 \N -5787 145 27 2020 1 33:20:00 24:00:00 00:00:00 00:00:00 00:00:00 -09:20:00 2019-12-30 \N 24:00:00 5 5 \N -5788 145 27 2020 2 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-06 \N 40:00:00 7 6 \N -5789 145 27 2020 3 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-13 \N 40:00:00 7 6 \N -5790 145 27 2020 4 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-20 \N 40:00:00 7 6 \N -5791 145 27 2020 5 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-27 \N 40:00:00 7 6 \N -5792 145 27 2020 6 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-03 \N 40:00:00 7 6 \N -5793 145 27 2020 7 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-10 \N 40:00:00 7 6 \N -5794 145 27 2020 8 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-17 \N 40:00:00 7 6 \N -5795 148 27 2020 1 33:20:00 24:00:00 00:00:00 00:00:00 00:00:00 -09:20:00 2019-12-30 \N 24:00:00 5 5 \N -5796 148 27 2020 2 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-06 \N 40:00:00 7 6 \N -5797 148 27 2020 3 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-13 \N 40:00:00 7 6 \N -5798 148 27 2020 4 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-20 \N 40:00:00 7 6 \N -5799 148 27 2020 5 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-27 \N 40:00:00 7 6 \N -5800 148 27 2020 6 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-03 \N 40:00:00 7 6 \N -5801 148 27 2020 7 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-10 \N 40:00:00 7 6 \N -5802 148 27 2020 8 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-17 \N 40:00:00 7 6 \N -6281 138 29 2020 12 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-16 \N 40:00:00 7 6 \N -6282 138 29 2020 13 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-23 \N 40:00:00 7 6 \N -6283 138 29 2020 14 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-30 \N 40:00:00 7 6 \N -6284 138 29 2020 15 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-04-06 \N 40:00:00 7 6 \N -6285 138 29 2020 16 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-04-13 \N 40:00:00 7 6 \N -5803 130 27 2020 1 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2019-12-30 \N 40:00:00 7 6 \N -5804 130 27 2020 2 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-06 \N 40:00:00 7 6 \N -5805 130 27 2020 3 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-13 \N 40:00:00 7 6 \N -5806 130 27 2020 4 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-20 \N 40:00:00 7 6 \N -5807 130 27 2020 5 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-27 \N 40:00:00 7 6 \N -5808 130 27 2020 6 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-03 \N 40:00:00 7 6 \N -5809 130 27 2020 7 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-10 \N 40:00:00 7 6 \N -5810 130 27 2020 8 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-17 \N 40:00:00 7 6 \N -5256 129 27 2020 1 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2019-12-30 \N 40:00:00 7 6 \N -5257 129 27 2020 2 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-06 \N 40:00:00 7 6 \N -5258 129 27 2020 3 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-13 \N 40:00:00 7 6 \N -5259 129 27 2020 4 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-20 \N 40:00:00 7 6 \N -5260 129 27 2020 5 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-27 \N 40:00:00 7 6 \N -5261 129 27 2020 6 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-03 \N 40:00:00 7 6 \N -5262 129 27 2020 7 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-10 \N 40:00:00 7 6 \N -5263 129 27 2020 8 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-17 \N 40:00:00 7 6 \N -5819 143 27 2020 1 33:20:00 24:00:00 00:00:00 00:00:00 00:00:00 -09:20:00 2019-12-30 \N 24:00:00 5 5 \N -5820 143 27 2020 2 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-06 \N 40:00:00 7 6 \N -5821 143 27 2020 3 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-13 \N 40:00:00 7 6 \N -5822 143 27 2020 4 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-20 \N 40:00:00 7 6 \N -5823 143 27 2020 5 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-27 \N 40:00:00 7 6 \N -5824 143 27 2020 6 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-03 \N 40:00:00 7 6 \N -5825 143 27 2020 7 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-10 \N 40:00:00 7 6 \N -5826 143 27 2020 8 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-17 \N 40:00:00 7 6 \N -6286 105 29 2020 9 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-24 \N 40:00:00 7 6 \N -6287 105 29 2020 10 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-02 \N 40:00:00 7 6 \N -6288 105 29 2020 11 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-09 \N 40:00:00 7 6 \N -6289 105 29 2020 12 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-16 \N 40:00:00 7 6 \N -6290 105 29 2020 13 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-23 \N 40:00:00 7 6 \N -6291 105 29 2020 14 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-30 \N 40:00:00 7 6 \N -6292 105 29 2020 15 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-04-06 \N 40:00:00 7 6 \N -6293 105 29 2020 16 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-04-13 \N 40:00:00 7 6 \N -6294 134 29 2020 9 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-24 \N 40:00:00 7 6 \N -6295 134 29 2020 10 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-02 \N 40:00:00 7 6 \N -6296 134 29 2020 11 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-09 \N 40:00:00 7 6 \N -6297 134 29 2020 12 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-16 \N 40:00:00 7 6 \N -6298 134 29 2020 13 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-23 \N 40:00:00 7 6 \N -6299 134 29 2020 14 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-30 \N 40:00:00 7 6 \N -6300 134 29 2020 15 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-04-06 \N 40:00:00 7 6 \N -6301 134 29 2020 16 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-04-13 \N 40:00:00 7 6 \N -6302 144 29 2020 9 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-24 \N 40:00:00 7 6 \N -6303 144 29 2020 10 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-02 \N 40:00:00 7 6 \N -6304 144 29 2020 11 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-09 \N 40:00:00 7 6 \N -6305 144 29 2020 12 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-16 \N 40:00:00 7 6 \N -6306 144 29 2020 13 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-23 \N 40:00:00 7 6 \N -6307 144 29 2020 14 13:20:00 16:00:00 00:00:00 00:00:00 00:00:00 02:40:00 2020-03-30 \N 16:00:00 2 2 \N -6308 102 29 2020 9 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-24 \N 40:00:00 7 6 \N -6309 102 29 2020 10 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-02 \N 40:00:00 7 6 \N -6310 102 29 2020 11 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-09 \N 40:00:00 7 6 \N -6311 102 29 2020 12 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-16 \N 40:00:00 7 6 \N -6312 102 29 2020 13 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-23 \N 40:00:00 7 6 \N -6313 102 29 2020 14 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-30 \N 40:00:00 7 6 \N -6314 102 29 2020 15 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-04-06 \N 40:00:00 7 6 \N -6315 102 29 2020 16 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-04-13 \N 40:00:00 7 6 \N -6316 109 29 2020 9 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-24 \N 40:00:00 7 6 \N -6317 109 29 2020 10 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-02 \N 40:00:00 7 6 \N -6318 109 29 2020 11 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-09 \N 40:00:00 7 6 \N -6319 109 29 2020 12 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-16 \N 40:00:00 7 6 \N -6320 109 29 2020 13 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-23 \N 40:00:00 7 6 \N -6321 109 29 2020 14 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-30 \N 40:00:00 7 6 \N -6322 109 29 2020 15 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-04-06 \N 40:00:00 7 6 \N -6323 109 29 2020 16 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-04-13 \N 40:00:00 7 6 \N -6324 118 29 2020 9 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-24 \N 40:00:00 7 6 \N -6325 118 29 2020 10 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-02 \N 40:00:00 7 6 \N -6326 118 29 2020 11 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-09 \N 40:00:00 7 6 \N -6327 118 29 2020 12 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-16 \N 40:00:00 7 6 \N -6328 118 29 2020 13 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-23 \N 40:00:00 7 6 \N -6329 118 29 2020 14 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-30 \N 40:00:00 7 6 \N -6330 118 29 2020 15 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-04-06 \N 40:00:00 7 6 \N -6331 118 29 2020 16 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-04-13 \N 40:00:00 7 6 \N -6332 133 29 2020 9 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-24 \N 40:00:00 7 6 \N -6333 133 29 2020 10 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-02 \N 40:00:00 7 6 \N -6334 133 29 2020 11 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-09 \N 40:00:00 7 6 \N -6335 133 29 2020 12 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-16 \N 40:00:00 7 6 \N -6336 133 29 2020 13 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-23 \N 40:00:00 7 6 \N -6337 133 29 2020 14 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-30 \N 40:00:00 7 6 \N -6338 133 29 2020 15 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-04-06 \N 40:00:00 7 6 \N -6339 133 29 2020 16 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-04-13 \N 40:00:00 7 6 \N -6340 111 29 2020 9 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-24 \N 40:00:00 7 6 \N -6341 111 29 2020 10 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-02 \N 40:00:00 7 6 \N -6342 111 29 2020 11 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-09 \N 40:00:00 7 6 \N -6343 111 29 2020 12 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-16 \N 40:00:00 7 6 \N -6344 111 29 2020 13 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-23 \N 40:00:00 7 6 \N -6345 111 29 2020 14 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-30 \N 40:00:00 7 6 \N -6346 111 29 2020 15 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-04-06 \N 40:00:00 7 6 \N -6347 111 29 2020 16 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-04-13 \N 40:00:00 7 6 \N -6348 128 29 2020 9 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-24 \N 40:00:00 7 6 \N -6349 128 29 2020 10 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-02 \N 40:00:00 7 6 \N -6350 128 29 2020 11 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-09 \N 40:00:00 7 6 \N -6351 128 29 2020 12 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-16 \N 40:00:00 7 6 \N -6352 128 29 2020 13 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-23 \N 40:00:00 7 6 \N -6353 128 29 2020 14 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-30 \N 40:00:00 7 6 \N -6354 128 29 2020 15 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-04-06 \N 40:00:00 7 6 \N -6355 128 29 2020 16 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-04-13 \N 40:00:00 7 6 \N -6356 142 29 2020 9 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-24 \N 40:00:00 7 6 \N -6357 142 29 2020 10 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-02 \N 40:00:00 7 6 \N -6358 142 29 2020 11 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-09 \N 40:00:00 7 6 \N -6359 142 29 2020 12 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-16 \N 40:00:00 7 6 \N -6360 142 29 2020 13 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-23 \N 40:00:00 7 6 \N -6361 142 29 2020 14 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-30 \N 40:00:00 7 6 \N -6362 142 29 2020 15 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-04-06 \N 40:00:00 7 6 \N -6363 142 29 2020 16 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-04-13 \N 40:00:00 7 6 \N -6364 136 29 2020 9 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-24 \N 40:00:00 7 6 \N -6365 136 29 2020 10 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-02 \N 40:00:00 7 6 \N -6366 136 29 2020 11 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-09 \N 40:00:00 7 6 \N -6367 136 29 2020 12 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-16 \N 40:00:00 7 6 \N -6368 136 29 2020 13 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-23 \N 40:00:00 7 6 \N -6369 136 29 2020 14 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-30 \N 40:00:00 7 6 \N -6370 136 29 2020 15 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-04-06 \N 40:00:00 7 6 \N -6371 136 29 2020 16 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-04-13 \N 40:00:00 7 6 \N -6372 139 29 2020 9 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-24 \N 40:00:00 7 6 \N -6373 139 29 2020 10 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-02 \N 40:00:00 7 6 \N -6374 139 29 2020 11 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-09 \N 40:00:00 7 6 \N -6375 139 29 2020 12 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-16 \N 40:00:00 7 6 \N -6376 139 29 2020 13 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-23 \N 40:00:00 7 6 \N -6377 139 29 2020 14 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-30 \N 40:00:00 7 6 \N -6378 139 29 2020 15 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-04-06 \N 40:00:00 7 6 \N -6379 139 29 2020 16 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-04-13 \N 40:00:00 7 6 \N -6380 141 29 2020 9 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-24 \N 40:00:00 7 6 \N -6381 141 29 2020 10 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-02 \N 40:00:00 7 6 \N -6382 141 29 2020 11 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-09 \N 40:00:00 7 6 \N -6383 141 29 2020 12 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-16 \N 40:00:00 7 6 \N -6384 141 29 2020 13 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-23 \N 40:00:00 7 6 \N -6385 141 29 2020 14 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-30 \N 40:00:00 7 6 \N -6386 141 29 2020 15 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-04-06 \N 40:00:00 7 6 \N -6387 141 29 2020 16 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-04-13 \N 40:00:00 7 6 \N -6388 122 29 2020 9 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-24 \N 40:00:00 7 6 \N -6389 122 29 2020 10 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-02 \N 40:00:00 7 6 \N -6390 122 29 2020 11 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-09 \N 40:00:00 7 6 \N -6391 122 29 2020 12 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-16 \N 40:00:00 7 6 \N -6392 122 29 2020 13 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-23 \N 40:00:00 7 6 \N -6393 122 29 2020 14 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-30 \N 40:00:00 7 6 \N -6394 122 29 2020 15 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-04-06 \N 40:00:00 7 6 \N -6395 122 29 2020 16 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-04-13 \N 40:00:00 7 6 \N -6396 106 29 2020 9 12:30:00 40:00:00 00:00:00 00:00:00 00:00:00 27:30:00 2020-02-24 \N 40:00:00 7 6 \N -6397 106 29 2020 10 12:30:00 40:00:00 00:00:00 00:00:00 00:00:00 27:30:00 2020-03-02 \N 40:00:00 7 6 \N -6398 106 29 2020 11 12:30:00 40:00:00 00:00:00 00:00:00 00:00:00 27:30:00 2020-03-09 \N 40:00:00 7 6 \N -6399 106 29 2020 12 12:30:00 40:00:00 00:00:00 00:00:00 00:00:00 27:30:00 2020-03-16 \N 40:00:00 7 6 \N -6400 106 29 2020 13 12:30:00 40:00:00 00:00:00 00:00:00 00:00:00 27:30:00 2020-03-23 \N 40:00:00 7 6 \N -6401 106 29 2020 14 12:30:00 40:00:00 00:00:00 00:00:00 00:00:00 27:30:00 2020-03-30 \N 40:00:00 7 6 \N -6402 106 29 2020 15 12:30:00 40:00:00 00:00:00 00:00:00 00:00:00 27:30:00 2020-04-06 \N 40:00:00 7 6 \N -6403 106 29 2020 16 12:30:00 40:00:00 00:00:00 00:00:00 00:00:00 27:30:00 2020-04-13 \N 40:00:00 7 6 \N -6404 110 29 2020 9 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-24 \N 40:00:00 7 6 \N -6405 110 29 2020 10 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-02 \N 40:00:00 7 6 \N -6406 110 29 2020 11 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-09 \N 40:00:00 7 6 \N -6407 110 29 2020 12 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-16 \N 40:00:00 7 6 \N -6408 110 29 2020 13 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-23 \N 40:00:00 7 6 \N -6409 110 29 2020 14 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-30 \N 40:00:00 7 6 \N -6410 110 29 2020 15 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-04-06 \N 40:00:00 7 6 \N -6411 110 29 2020 16 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-04-13 \N 40:00:00 7 6 \N -6412 145 29 2020 9 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-24 \N 40:00:00 7 6 \N -6413 145 29 2020 10 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-02 \N 40:00:00 7 6 \N -6414 145 29 2020 11 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-09 \N 40:00:00 7 6 \N -6415 145 29 2020 12 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-16 \N 40:00:00 7 6 \N -6416 145 29 2020 13 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-23 \N 40:00:00 7 6 \N -6417 145 29 2020 14 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-30 \N 40:00:00 7 6 \N -6418 145 29 2020 15 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-04-06 \N 40:00:00 7 6 \N -6419 145 29 2020 16 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-04-13 \N 40:00:00 7 6 \N -6420 148 29 2020 9 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-24 \N 40:00:00 7 6 \N -6421 148 29 2020 10 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-02 \N 40:00:00 7 6 \N -6422 148 29 2020 11 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-09 \N 40:00:00 7 6 \N -6423 148 29 2020 12 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-16 \N 40:00:00 7 6 \N -6424 148 29 2020 13 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-23 \N 40:00:00 7 6 \N -6425 148 29 2020 14 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-30 \N 40:00:00 7 6 \N -6426 148 29 2020 15 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-04-06 \N 40:00:00 7 6 \N -6427 148 29 2020 16 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-04-13 \N 40:00:00 7 6 \N -6428 130 29 2020 9 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-24 \N 40:00:00 7 6 \N -6429 130 29 2020 10 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-02 \N 40:00:00 7 6 \N -6430 130 29 2020 11 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-09 \N 40:00:00 7 6 \N -6431 130 29 2020 12 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-16 \N 40:00:00 7 6 \N -6432 130 29 2020 13 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-23 \N 40:00:00 7 6 \N -6433 130 29 2020 14 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-30 \N 40:00:00 7 6 \N -6434 130 29 2020 15 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-04-06 \N 40:00:00 7 6 \N -6435 130 29 2020 16 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-04-13 \N 40:00:00 7 6 \N -6436 129 29 2020 9 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-24 \N 40:00:00 7 6 \N -6437 129 29 2020 10 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-02 \N 40:00:00 7 6 \N -6438 129 29 2020 11 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-09 \N 40:00:00 7 6 \N -6439 129 29 2020 12 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-16 \N 40:00:00 7 6 \N -6440 129 29 2020 13 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-23 \N 40:00:00 7 6 \N -6441 129 29 2020 14 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-30 \N 40:00:00 7 6 \N -6442 129 29 2020 15 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-04-06 \N 40:00:00 7 6 \N -6443 129 29 2020 16 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-04-13 \N 40:00:00 7 6 \N -6444 143 29 2020 9 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-24 \N 40:00:00 7 6 \N -6445 143 29 2020 10 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-02 \N 40:00:00 7 6 \N -6446 143 29 2020 11 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-09 \N 40:00:00 7 6 \N -6447 143 29 2020 12 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-16 \N 40:00:00 7 6 \N -6448 143 29 2020 13 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-23 \N 40:00:00 7 6 \N -6449 143 29 2020 14 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-30 \N 40:00:00 7 6 \N -6450 143 29 2020 15 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-04-06 \N 40:00:00 7 6 \N -6451 143 29 2020 16 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-04-13 \N 40:00:00 7 6 \N +11297 116 27 2020 1 26:40:00 24:00:00 00:00:00 00:00:00 00:00:00 -02:40:00 2019-12-30 \N 24:00:00 4 6 \N +11298 116 27 2020 2 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-06 \N 40:00:00 6 6 \N +11299 116 27 2020 3 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-13 \N 40:00:00 6 6 \N +11300 116 27 2020 4 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-20 \N 40:00:00 6 6 \N +11301 116 27 2020 5 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-27 \N 40:00:00 6 6 \N +11302 116 27 2020 6 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-03 \N 40:00:00 6 6 \N +11303 116 27 2020 7 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-10 \N 40:00:00 6 6 \N +11304 116 27 2020 8 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-17 \N 40:00:00 6 6 \N +5670 144 27 2020 1 26:40:00 24:00:00 00:00:00 00:00:00 00:00:00 -02:40:00 2019-12-30 \N 24:00:00 4 6 \N +5691 109 27 2020 6 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-03 \N 40:00:00 6 6 \N +5692 109 27 2020 7 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-10 \N 40:00:00 6 6 \N +5693 109 27 2020 8 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-17 \N 40:00:00 6 6 \N +6762 146 30 2020 17 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-04-20 \N 40:00:00 6 6 \N +6763 146 30 2020 18 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-04-27 \N 40:00:00 6 6 \N +6764 146 30 2020 19 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-05-04 \N 40:00:00 6 6 \N +6765 146 30 2020 20 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-05-11 \N 40:00:00 6 6 \N +6824 103 30 2020 17 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-04-20 \N 40:00:00 6 6 \N +6825 103 30 2020 18 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-04-27 \N 40:00:00 6 6 \N +6826 103 30 2020 19 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-05-04 \N 40:00:00 6 6 \N +5671 144 27 2020 2 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-06 \N 40:00:00 6 6 \N +5672 144 27 2020 3 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-13 \N 40:00:00 6 6 \N +5673 144 27 2020 4 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-20 \N 40:00:00 6 6 \N +5674 144 27 2020 5 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-27 \N 40:00:00 6 6 \N +5675 144 27 2020 6 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-03 \N 40:00:00 6 6 \N +5676 144 27 2020 7 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-10 \N 40:00:00 6 6 \N +5677 144 27 2020 8 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-17 \N 40:00:00 6 6 \N +5686 109 27 2020 1 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2019-12-30 \N 40:00:00 6 6 \N +5687 109 27 2020 2 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-06 \N 40:00:00 6 6 \N +5688 109 27 2020 3 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-13 \N 40:00:00 6 6 \N +5689 109 27 2020 4 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-20 \N 40:00:00 6 6 \N +5690 109 27 2020 5 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-27 \N 40:00:00 6 6 \N +5694 118 27 2020 1 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2019-12-30 \N 40:00:00 6 6 \N +5695 118 27 2020 2 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-06 \N 40:00:00 6 6 \N +5696 118 27 2020 3 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-13 \N 40:00:00 6 6 \N +5697 118 27 2020 4 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-20 \N 40:00:00 6 6 \N +5698 118 27 2020 5 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-27 \N 40:00:00 6 6 \N +5699 118 27 2020 6 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-03 \N 40:00:00 6 6 \N +11620 116 29 2020 9 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-24 \N 40:00:00 5 6 \N +6352 128 29 2020 13 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-23 \N 40:00:00 6 6 \N +6353 128 29 2020 14 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-30 \N 40:00:00 6 6 \N +6354 128 29 2020 15 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-04-06 \N 40:00:00 6 6 \N +6834 121 30 2020 19 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-05-04 \N 40:00:00 6 6 \N +6835 121 30 2020 20 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-05-11 \N 40:00:00 6 6 \N +6836 121 30 2020 21 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-05-18 \N 40:00:00 6 6 \N +6837 121 30 2020 22 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-05-25 \N 40:00:00 6 6 \N +6838 121 30 2020 23 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-06-01 \N 40:00:00 6 6 \N +5710 111 27 2020 1 26:40:00 26:40:00 00:00:00 00:00:00 00:00:00 00:00:00 2019-12-30 \N 26:40:00 4 6 \N +5711 111 27 2020 2 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-06 \N 40:00:00 6 6 \N +5712 111 27 2020 3 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-13 \N 40:00:00 6 6 \N +5713 111 27 2020 4 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-20 \N 40:00:00 6 6 \N +5714 111 27 2020 5 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-27 \N 40:00:00 6 6 \N +5715 111 27 2020 6 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-03 \N 40:00:00 6 6 \N +5716 111 27 2020 7 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-10 \N 40:00:00 6 6 \N +5717 111 27 2020 8 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-17 \N 40:00:00 6 6 \N +5718 128 27 2020 1 26:40:00 24:00:00 00:00:00 00:00:00 00:00:00 -02:40:00 2019-12-30 \N 24:00:00 4 6 \N +6324 118 29 2020 9 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-24 \N 40:00:00 6 6 \N +6392 122 29 2020 13 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-23 \N 40:00:00 6 6 \N +6393 122 29 2020 14 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-30 \N 40:00:00 6 6 \N +6394 122 29 2020 15 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-04-06 \N 40:00:00 6 6 \N +6871 147 30 2020 17 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-04-20 \N 40:00:00 6 6 \N +6872 147 30 2020 18 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-04-27 \N 40:00:00 6 6 \N +5512 146 27 2020 1 26:40:00 24:00:00 00:00:00 00:00:00 00:00:00 -02:40:00 2019-12-30 \N 24:00:00 4 6 \N +5513 146 27 2020 2 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-06 \N 40:00:00 6 6 \N +5514 146 27 2020 3 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-13 \N 40:00:00 6 6 \N +5515 146 27 2020 4 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-20 \N 40:00:00 6 6 \N +5516 146 27 2020 5 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-27 \N 40:00:00 6 6 \N +5517 146 27 2020 6 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-03 \N 40:00:00 6 6 \N +5726 142 27 2020 1 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2019-12-30 \N 40:00:00 6 6 \N +5727 142 27 2020 2 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-06 \N 40:00:00 6 6 \N +5728 142 27 2020 3 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-13 \N 40:00:00 6 6 \N +5729 142 27 2020 4 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-20 \N 40:00:00 6 6 \N +5730 142 27 2020 5 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-27 \N 40:00:00 6 6 \N +5731 142 27 2020 6 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-03 \N 40:00:00 6 6 \N +6873 147 30 2020 19 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-05-04 \N 40:00:00 6 6 \N +6874 147 30 2020 20 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-05-11 \N 40:00:00 6 6 \N +6875 147 30 2020 21 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-05-18 \N 40:00:00 6 6 \N +6876 147 30 2020 22 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-05-25 \N 40:00:00 6 6 \N +5518 146 27 2020 7 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-10 \N 40:00:00 6 6 \N +5519 146 27 2020 8 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-17 \N 40:00:00 6 6 \N +5520 132 27 2020 1 26:40:00 24:00:00 00:00:00 00:00:00 00:00:00 -02:40:00 2019-12-30 \N 24:00:00 4 6 \N +5521 132 27 2020 2 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-06 \N 40:00:00 6 6 \N +5522 132 27 2020 3 40:00:00 24:00:00 00:00:00 00:00:00 00:00:00 -16:00:00 2020-01-13 \N 24:00:00 3 6 \N +5732 142 27 2020 7 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-10 \N 40:00:00 6 6 \N +5733 142 27 2020 8 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-17 \N 40:00:00 6 6 \N +5734 136 27 2020 1 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2019-12-30 \N 40:00:00 6 6 \N +5735 136 27 2020 2 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-06 \N 40:00:00 6 6 \N +6325 118 29 2020 10 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-02 \N 40:00:00 6 6 \N +6326 118 29 2020 11 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-09 \N 40:00:00 6 6 \N +6327 118 29 2020 12 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-16 \N 40:00:00 6 6 \N +6895 151 30 2020 17 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-04-20 \N 40:00:00 6 6 \N +6896 151 30 2020 18 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-04-27 \N 40:00:00 6 6 \N +5523 115 27 2020 1 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2019-12-30 \N 40:00:00 6 6 \N +5524 115 27 2020 2 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-06 \N 40:00:00 6 6 \N +5525 115 27 2020 3 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-13 \N 40:00:00 6 6 \N +5526 115 27 2020 4 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-20 \N 40:00:00 6 6 \N +5527 115 27 2020 5 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-27 \N 40:00:00 6 6 \N +5528 115 27 2020 6 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-03 \N 40:00:00 6 6 \N +5529 115 27 2020 7 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-10 \N 40:00:00 6 6 \N +5530 115 27 2020 8 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-17 \N 40:00:00 6 6 \N +5736 136 27 2020 3 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-13 \N 40:00:00 6 6 \N +5737 136 27 2020 4 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-20 \N 40:00:00 6 6 \N +5738 136 27 2020 5 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-27 \N 40:00:00 6 6 \N +5739 136 27 2020 6 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-03 \N 40:00:00 6 6 \N +5740 136 27 2020 7 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-10 \N 40:00:00 6 6 \N +5741 136 27 2020 8 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-17 \N 40:00:00 6 6 \N +5535 114 27 2020 5 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-27 \N 40:00:00 6 6 \N +5751 139 27 2020 5 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-27 \N 40:00:00 6 6 \N +5752 139 27 2020 6 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-03 \N 40:00:00 6 6 \N +5753 139 27 2020 7 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-10 \N 40:00:00 6 6 \N +5754 139 27 2020 8 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-17 \N 40:00:00 6 6 \N +5755 141 27 2020 1 26:40:00 24:00:00 00:00:00 00:00:00 00:00:00 -02:40:00 2019-12-30 \N 24:00:00 4 6 \N +5756 141 27 2020 2 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-06 \N 40:00:00 6 6 \N +6328 118 29 2020 13 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-23 \N 40:00:00 6 6 \N +6329 118 29 2020 14 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-30 \N 40:00:00 6 6 \N +6335 133 29 2020 12 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-16 \N 40:00:00 6 6 \N +6428 130 29 2020 9 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-24 \N 40:00:00 6 6 \N +6429 130 29 2020 10 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-02 \N 40:00:00 6 6 \N +6434 130 29 2020 15 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-04-06 \N 40:00:00 6 6 \N +6435 130 29 2020 16 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-04-13 \N 40:00:00 6 6 \N +5531 114 27 2020 1 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2019-12-30 \N 40:00:00 6 6 \N +5532 114 27 2020 2 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-06 \N 40:00:00 6 6 \N +5533 114 27 2020 3 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-13 \N 40:00:00 6 6 \N +5534 114 27 2020 4 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-20 \N 40:00:00 6 6 \N +5536 114 27 2020 6 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-03 \N 40:00:00 6 6 \N +5537 114 27 2020 7 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-10 \N 40:00:00 6 6 \N +5538 114 27 2020 8 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-17 \N 40:00:00 6 6 \N +5757 141 27 2020 3 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-13 \N 40:00:00 6 6 \N +5758 141 27 2020 4 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-20 \N 40:00:00 6 6 \N +5759 141 27 2020 5 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-27 \N 40:00:00 6 6 \N +5760 141 27 2020 6 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-03 \N 40:00:00 6 6 \N +5761 141 27 2020 7 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-10 \N 40:00:00 6 6 \N +5762 141 27 2020 8 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-17 \N 40:00:00 6 6 \N +6336 133 29 2020 13 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-23 \N 40:00:00 6 6 \N +5771 106 27 2020 1 12:30:00 40:00:00 00:00:00 00:00:00 00:00:00 27:30:00 2019-12-30 \N 40:00:00 4 3 \N +5772 106 27 2020 2 12:30:00 40:00:00 00:00:00 00:00:00 00:00:00 27:30:00 2020-01-06 \N 40:00:00 4 3 \N +5773 106 27 2020 3 12:30:00 40:00:00 00:00:00 00:00:00 00:00:00 27:30:00 2020-01-13 \N 40:00:00 4 3 \N +5774 106 27 2020 4 12:30:00 40:00:00 00:00:00 00:00:00 00:00:00 27:30:00 2020-01-20 \N 40:00:00 4 3 \N +5775 106 27 2020 5 12:30:00 40:00:00 00:00:00 00:00:00 00:00:00 27:30:00 2020-01-27 \N 40:00:00 4 3 \N +5776 106 27 2020 6 12:30:00 40:00:00 00:00:00 00:00:00 00:00:00 27:30:00 2020-02-03 \N 40:00:00 4 3 \N +5777 106 27 2020 7 12:30:00 40:00:00 00:00:00 00:00:00 00:00:00 27:30:00 2020-02-10 \N 40:00:00 4 3 \N +5778 106 27 2020 8 12:30:00 40:00:00 00:00:00 00:00:00 00:00:00 27:30:00 2020-02-17 \N 40:00:00 4 3 \N +6442 129 29 2020 15 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-04-06 \N 40:00:00 6 6 \N +6443 129 29 2020 16 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-04-13 \N 40:00:00 6 6 \N +6897 151 30 2020 19 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-05-04 \N 40:00:00 6 6 \N +6898 151 30 2020 20 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-05-11 \N 40:00:00 6 6 \N +6899 151 30 2020 21 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-05-18 \N 40:00:00 6 6 \N +6900 151 30 2020 22 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-05-25 \N 40:00:00 6 6 \N +6901 151 30 2020 23 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-06-01 \N 40:00:00 6 6 \N +6902 151 30 2020 24 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-06-08 \N 40:00:00 6 6 \N +6915 105 30 2020 21 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-05-18 \N 40:00:00 6 6 \N +5539 112 27 2020 1 26:40:00 24:00:00 00:00:00 00:00:00 00:00:00 -02:40:00 2019-12-30 \N 24:00:00 4 6 \N +5540 112 27 2020 2 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-06 \N 40:00:00 6 6 \N +5541 112 27 2020 3 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-13 \N 40:00:00 6 6 \N +5542 112 27 2020 4 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-20 \N 40:00:00 6 6 \N +5543 112 27 2020 5 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-27 \N 40:00:00 6 6 \N +5779 110 27 2020 1 26:40:00 24:00:00 00:00:00 00:00:00 00:00:00 -02:40:00 2019-12-30 \N 24:00:00 4 6 \N +5780 110 27 2020 2 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-06 \N 40:00:00 6 6 \N +5781 110 27 2020 3 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-13 \N 40:00:00 6 6 \N +5782 110 27 2020 4 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-20 \N 40:00:00 6 6 \N +5783 110 27 2020 5 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-27 \N 40:00:00 6 6 \N +5784 110 27 2020 6 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-03 \N 40:00:00 6 6 \N +5785 110 27 2020 7 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-10 \N 40:00:00 6 6 \N +6348 128 29 2020 9 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-24 \N 40:00:00 6 6 \N +6921 134 30 2020 19 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-05-04 \N 40:00:00 6 6 \N +6922 134 30 2020 20 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-05-11 \N 40:00:00 6 6 \N +6923 134 30 2020 21 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-05-18 \N 40:00:00 6 6 \N +6924 134 30 2020 22 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-05-25 \N 40:00:00 6 6 \N +5544 112 27 2020 6 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-03 \N 40:00:00 6 6 \N +5545 112 27 2020 7 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-10 \N 40:00:00 6 6 \N +5786 110 27 2020 8 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-17 \N 40:00:00 6 6 \N +5795 148 27 2020 1 26:40:00 24:00:00 00:00:00 00:00:00 00:00:00 -02:40:00 2019-12-30 \N 24:00:00 4 6 \N +5796 148 27 2020 2 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-06 \N 40:00:00 6 6 \N +5797 148 27 2020 3 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-13 \N 40:00:00 6 6 \N +5798 148 27 2020 4 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-20 \N 40:00:00 6 6 \N +5799 148 27 2020 5 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-27 \N 40:00:00 6 6 \N +5800 148 27 2020 6 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-03 \N 40:00:00 6 6 \N +6349 128 29 2020 10 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-02 \N 40:00:00 6 6 \N +6350 128 29 2020 11 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-09 \N 40:00:00 6 6 \N +6351 128 29 2020 12 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-16 \N 40:00:00 6 6 \N +5546 112 27 2020 8 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-17 \N 40:00:00 6 6 \N +5548 108 27 2020 3 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-13 \N 40:00:00 6 6 \N +5801 148 27 2020 7 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-10 \N 40:00:00 6 6 \N +5802 148 27 2020 8 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-17 \N 40:00:00 6 6 \N +5803 130 27 2020 1 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2019-12-30 \N 40:00:00 6 6 \N +5804 130 27 2020 2 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-06 \N 40:00:00 6 6 \N +5805 130 27 2020 3 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-13 \N 40:00:00 6 6 \N +5260 129 27 2020 5 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-27 \N 40:00:00 6 6 \N +6355 128 29 2020 16 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-04-13 \N 40:00:00 6 6 \N +6766 146 30 2020 21 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-05-18 \N 40:00:00 6 6 \N +6767 146 30 2020 22 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-05-25 \N 40:00:00 6 6 \N +6768 146 30 2020 23 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-06-01 \N 40:00:00 6 6 \N +6769 146 30 2020 24 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-06-08 \N 40:00:00 6 6 \N +5547 108 27 2020 2 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-06 \N 40:00:00 6 6 \N +5549 108 27 2020 4 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-20 \N 40:00:00 6 6 \N +5550 108 27 2020 5 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-27 \N 40:00:00 6 6 \N +5551 108 27 2020 6 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-03 \N 40:00:00 6 6 \N +5552 108 27 2020 7 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-10 \N 40:00:00 6 6 \N +5553 108 27 2020 8 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-17 \N 40:00:00 6 6 \N +5261 129 27 2020 6 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-03 \N 40:00:00 6 6 \N +5262 129 27 2020 7 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-10 \N 40:00:00 6 6 \N +5263 129 27 2020 8 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-17 \N 40:00:00 6 6 \N +6776 115 30 2020 23 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-06-01 \N 40:00:00 6 6 \N +6786 112 30 2020 17 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-04-20 \N 40:00:00 6 6 \N +6787 112 30 2020 18 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-04-27 \N 40:00:00 6 6 \N +6937 109 30 2020 19 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-05-04 \N 40:00:00 6 6 \N +6938 109 30 2020 20 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-05-11 \N 40:00:00 6 6 \N +6939 109 30 2020 21 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-05-18 \N 40:00:00 6 6 \N +6940 109 30 2020 22 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-05-25 \N 40:00:00 6 6 \N +6943 118 30 2020 17 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-04-20 \N 40:00:00 6 6 \N +5819 143 27 2020 1 26:40:00 24:00:00 00:00:00 00:00:00 00:00:00 -02:40:00 2019-12-30 \N 24:00:00 4 6 \N +5820 143 27 2020 2 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-06 \N 40:00:00 6 6 \N +5821 143 27 2020 3 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-13 \N 40:00:00 6 6 \N +5822 143 27 2020 4 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-20 \N 40:00:00 6 6 \N +5823 143 27 2020 5 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-27 \N 40:00:00 6 6 \N +5824 143 27 2020 6 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-03 \N 40:00:00 6 6 \N +5825 143 27 2020 7 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-10 \N 40:00:00 6 6 \N +5826 143 27 2020 8 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-17 \N 40:00:00 6 6 \N +6150 115 29 2020 9 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-24 \N 40:00:00 6 6 \N +6367 136 29 2020 12 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-16 \N 40:00:00 6 6 \N +6368 136 29 2020 13 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-23 \N 40:00:00 6 6 \N +6796 108 30 2020 21 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-05-18 \N 40:00:00 6 6 \N +6944 118 30 2020 18 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-04-27 \N 40:00:00 6 6 \N +6959 111 30 2020 17 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-04-20 \N 40:00:00 6 6 \N +6960 111 30 2020 18 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-04-27 \N 40:00:00 6 6 \N +5554 135 27 2020 1 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2019-12-30 \N 40:00:00 6 6 \N +5555 135 27 2020 2 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-06 \N 40:00:00 6 6 \N +6151 115 29 2020 10 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-02 \N 40:00:00 6 6 \N +6152 115 29 2020 11 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-09 \N 40:00:00 6 6 \N +6153 115 29 2020 12 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-16 \N 40:00:00 6 6 \N +6154 115 29 2020 13 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-23 \N 40:00:00 6 6 \N +6155 115 29 2020 14 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-30 \N 40:00:00 6 6 \N +6156 115 29 2020 15 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-04-06 \N 40:00:00 6 6 \N +6157 115 29 2020 16 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-04-13 \N 40:00:00 6 6 \N +6369 136 29 2020 14 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-30 \N 40:00:00 6 6 \N +6370 136 29 2020 15 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-04-06 \N 40:00:00 6 6 \N +6371 136 29 2020 16 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-04-13 \N 40:00:00 6 6 \N +6961 111 30 2020 19 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-05-04 \N 40:00:00 6 6 \N +6962 111 30 2020 20 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-05-11 \N 40:00:00 6 6 \N +6963 111 30 2020 21 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-05-18 \N 40:00:00 6 6 \N +6964 111 30 2020 22 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-05-25 \N 40:00:00 6 6 \N +6965 111 30 2020 23 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-06-01 \N 40:00:00 6 6 \N +5556 135 27 2020 3 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-13 \N 40:00:00 6 6 \N +5557 135 27 2020 4 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-20 \N 40:00:00 6 6 \N +5558 135 27 2020 5 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-27 \N 40:00:00 6 6 \N +5559 135 27 2020 6 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-03 \N 40:00:00 6 6 \N +5560 135 27 2020 7 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-10 \N 40:00:00 6 6 \N +5561 135 27 2020 8 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-17 \N 40:00:00 6 6 \N +6158 114 29 2020 9 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-24 \N 40:00:00 6 6 \N +6159 114 29 2020 10 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-02 \N 40:00:00 6 6 \N +6160 114 29 2020 11 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-09 \N 40:00:00 6 6 \N +6161 114 29 2020 12 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-16 \N 40:00:00 6 6 \N +6162 114 29 2020 13 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-23 \N 40:00:00 6 6 \N +6163 114 29 2020 14 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-30 \N 40:00:00 6 6 \N +6164 114 29 2020 15 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-04-06 \N 40:00:00 6 6 \N +6165 114 29 2020 16 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-04-13 \N 40:00:00 6 6 \N +6174 108 29 2020 9 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-24 \N 40:00:00 6 6 \N +6175 108 29 2020 10 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-02 \N 40:00:00 6 6 \N +6176 108 29 2020 11 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-09 \N 40:00:00 6 6 \N +6177 108 29 2020 12 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-16 \N 40:00:00 6 6 \N +6178 108 29 2020 13 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-23 \N 40:00:00 6 6 \N +6179 108 29 2020 14 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-30 \N 40:00:00 6 6 \N +6180 108 29 2020 15 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-04-06 \N 40:00:00 6 6 \N +6797 108 30 2020 22 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-05-25 \N 40:00:00 6 6 \N +6808 127 30 2020 17 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-04-20 \N 40:00:00 6 6 \N +6809 127 30 2020 18 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-04-27 \N 40:00:00 6 6 \N +6978 142 30 2020 20 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-05-11 \N 40:00:00 6 6 \N +6979 142 30 2020 21 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-05-18 \N 40:00:00 6 6 \N +6980 142 30 2020 22 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-05-25 \N 40:00:00 6 6 \N +6983 136 30 2020 17 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-04-20 \N 40:00:00 6 6 \N +6984 136 30 2020 18 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-04-27 \N 40:00:00 6 6 \N +6985 136 30 2020 19 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-05-04 \N 40:00:00 6 6 \N +6986 136 30 2020 20 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-05-11 \N 40:00:00 6 6 \N +6987 136 30 2020 21 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-05-18 \N 40:00:00 6 6 \N +6181 108 29 2020 16 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-04-13 \N 40:00:00 6 6 \N +6182 135 29 2020 9 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-24 \N 40:00:00 6 6 \N +6183 135 29 2020 10 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-02 \N 40:00:00 6 6 \N +6184 135 29 2020 11 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-09 \N 40:00:00 6 6 \N +6185 135 29 2020 12 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-16 \N 40:00:00 6 6 \N +6197 127 29 2020 16 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-04-13 \N 40:00:00 6 6 \N +6372 139 29 2020 9 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-24 \N 40:00:00 6 6 \N +6373 139 29 2020 10 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-02 \N 40:00:00 6 6 \N +6374 139 29 2020 11 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-09 \N 40:00:00 6 6 \N +6375 139 29 2020 12 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-16 \N 40:00:00 6 6 \N +6376 139 29 2020 13 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-23 \N 40:00:00 6 6 \N +6377 139 29 2020 14 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-30 \N 40:00:00 6 6 \N +6378 139 29 2020 15 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-04-06 \N 40:00:00 6 6 \N +6379 139 29 2020 16 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-04-13 \N 40:00:00 6 6 \N +5562 127 27 2020 1 26:40:00 24:00:00 00:00:00 00:00:00 00:00:00 -02:40:00 2019-12-30 \N 24:00:00 4 6 \N +5563 127 27 2020 2 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-06 \N 40:00:00 6 6 \N +6198 149 29 2020 9 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-24 \N 40:00:00 6 6 \N +6199 149 29 2020 10 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-02 \N 40:00:00 6 6 \N +6200 149 29 2020 11 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-09 \N 40:00:00 6 6 \N +6201 149 29 2020 12 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-16 \N 40:00:00 6 6 \N +6202 149 29 2020 13 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-23 \N 40:00:00 6 6 \N +6203 149 29 2020 14 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-30 \N 40:00:00 6 6 \N +6204 149 29 2020 15 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-04-06 \N 40:00:00 6 6 \N +6205 149 29 2020 16 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-04-13 \N 40:00:00 6 6 \N +6810 127 30 2020 19 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-05-04 \N 40:00:00 6 6 \N +6988 136 30 2020 22 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-05-25 \N 40:00:00 6 6 \N +6989 136 30 2020 23 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-06-01 \N 40:00:00 6 6 \N +7001 141 30 2020 19 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-05-04 \N 40:00:00 6 6 \N +7002 141 30 2020 20 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-05-11 \N 40:00:00 6 6 \N +7012 122 30 2020 22 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-05-25 \N 40:00:00 6 6 \N +5564 127 27 2020 3 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-13 \N 40:00:00 6 6 \N +5565 127 27 2020 4 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-20 \N 40:00:00 6 6 \N +5566 127 27 2020 5 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-27 \N 40:00:00 6 6 \N +5567 127 27 2020 6 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-03 \N 40:00:00 6 6 \N +5568 127 27 2020 7 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-10 \N 40:00:00 6 6 \N +5569 127 27 2020 8 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-17 \N 40:00:00 6 6 \N +6214 121 29 2020 9 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-24 \N 40:00:00 6 6 \N +6215 121 29 2020 10 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-02 \N 40:00:00 6 6 \N +6216 121 29 2020 11 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-09 \N 40:00:00 6 6 \N +6217 121 29 2020 12 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-16 \N 40:00:00 6 6 \N +6218 121 29 2020 13 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-23 \N 40:00:00 6 6 \N +6219 121 29 2020 14 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-30 \N 40:00:00 6 6 \N +6220 121 29 2020 15 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-04-06 \N 40:00:00 6 6 \N +6221 121 29 2020 16 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-04-13 \N 40:00:00 6 6 \N +6222 125 29 2020 9 20:00:00 40:00:00 00:00:00 00:00:00 00:00:00 20:00:00 2020-02-24 \N 40:00:00 6 6 \N +6223 125 29 2020 10 20:00:00 40:00:00 00:00:00 00:00:00 00:00:00 20:00:00 2020-03-02 \N 40:00:00 6 6 \N +6224 125 29 2020 11 20:00:00 40:00:00 00:00:00 00:00:00 00:00:00 20:00:00 2020-03-09 \N 40:00:00 6 6 \N +6225 125 29 2020 12 20:00:00 40:00:00 00:00:00 00:00:00 00:00:00 20:00:00 2020-03-16 \N 40:00:00 6 6 \N +6226 125 29 2020 13 20:00:00 40:00:00 00:00:00 00:00:00 00:00:00 20:00:00 2020-03-23 \N 40:00:00 6 6 \N +6227 125 29 2020 14 20:00:00 40:00:00 00:00:00 00:00:00 00:00:00 20:00:00 2020-03-30 \N 40:00:00 6 6 \N +6228 125 29 2020 15 20:00:00 40:00:00 00:00:00 00:00:00 00:00:00 20:00:00 2020-04-06 \N 40:00:00 6 6 \N +6229 125 29 2020 16 20:00:00 40:00:00 00:00:00 00:00:00 00:00:00 20:00:00 2020-04-13 \N 40:00:00 6 6 \N +6827 103 30 2020 20 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-05-11 \N 40:00:00 6 6 \N +6828 103 30 2020 21 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-05-18 \N 40:00:00 6 6 \N +7023 110 30 2020 17 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-04-20 \N 40:00:00 6 6 \N +7024 110 30 2020 18 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-04-27 \N 40:00:00 6 6 \N +7039 148 30 2020 17 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-04-20 \N 40:00:00 6 6 \N +7040 148 30 2020 18 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-04-27 \N 40:00:00 6 6 \N +6238 113 29 2020 9 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-24 \N 40:00:00 6 6 \N +6239 113 29 2020 10 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-02 \N 40:00:00 6 6 \N +6240 113 29 2020 11 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-09 \N 40:00:00 6 6 \N +6241 113 29 2020 12 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-16 \N 40:00:00 6 6 \N +6242 113 29 2020 13 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-23 \N 40:00:00 6 6 \N +6243 113 29 2020 14 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-30 \N 40:00:00 6 6 \N +6244 113 29 2020 15 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-04-06 \N 40:00:00 6 6 \N +6245 113 29 2020 16 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-04-13 \N 40:00:00 6 6 \N +6389 122 29 2020 10 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-02 \N 40:00:00 6 6 \N +7041 148 30 2020 19 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-05-04 \N 40:00:00 6 6 \N +7042 148 30 2020 20 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-05-11 \N 40:00:00 6 6 \N +7043 148 30 2020 21 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-05-18 \N 40:00:00 6 6 \N +7044 148 30 2020 22 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-05-25 \N 40:00:00 6 6 \N +7045 148 30 2020 23 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-06-01 \N 40:00:00 6 6 \N +7046 148 30 2020 24 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-06-08 \N 40:00:00 6 6 \N +7050 130 30 2020 20 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-05-11 \N 40:00:00 6 6 \N +7051 130 30 2020 21 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-05-18 \N 40:00:00 6 6 \N +7065 143 30 2020 19 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-05-04 \N 40:00:00 6 6 \N +7066 143 30 2020 20 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-05-11 \N 40:00:00 6 6 \N +7071 146 31 2020 25 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-06-15 \N 40:00:00 6 6 \N +7072 146 31 2020 26 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-06-22 \N 40:00:00 6 6 \N +5570 149 27 2020 1 26:40:00 24:00:00 00:00:00 00:00:00 00:00:00 -02:40:00 2019-12-30 \N 24:00:00 4 6 \N +5571 149 27 2020 2 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-06 \N 40:00:00 6 6 \N +6246 147 29 2020 9 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-24 \N 40:00:00 6 6 \N +6247 147 29 2020 10 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-02 \N 40:00:00 6 6 \N +6248 147 29 2020 11 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-09 \N 40:00:00 6 6 \N +6249 147 29 2020 12 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-16 \N 40:00:00 6 6 \N +6250 147 29 2020 13 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-23 \N 40:00:00 6 6 \N +6390 122 29 2020 11 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-09 \N 40:00:00 6 6 \N +7073 146 31 2020 27 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-06-29 \N 40:00:00 6 6 \N +7074 146 31 2020 28 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-07-06 \N 40:00:00 6 6 \N +7075 146 31 2020 29 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-07-13 \N 40:00:00 6 6 \N +7076 146 31 2020 30 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-07-20 \N 40:00:00 6 6 \N +7077 146 31 2020 31 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-07-27 \N 40:00:00 6 6 \N +7090 114 31 2020 28 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-07-06 \N 40:00:00 6 6 \N +7091 114 31 2020 29 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-07-13 \N 40:00:00 6 6 \N +7094 114 31 2020 32 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-08-03 \N 40:00:00 6 6 \N +7095 108 31 2020 25 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-06-15 \N 40:00:00 6 6 \N +7096 108 31 2020 26 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-06-22 \N 40:00:00 6 6 \N +7111 127 31 2020 25 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-06-15 \N 40:00:00 6 6 \N +5572 149 27 2020 3 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-13 \N 40:00:00 6 6 \N +5573 149 27 2020 4 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-20 \N 40:00:00 6 6 \N +5574 149 27 2020 5 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-27 \N 40:00:00 6 6 \N +5575 149 27 2020 6 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-03 \N 40:00:00 6 6 \N +5576 149 27 2020 7 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-10 \N 40:00:00 6 6 \N +5577 149 27 2020 8 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-17 \N 40:00:00 6 6 \N +6262 104 29 2020 9 30:00:00 40:00:00 00:00:00 00:00:00 00:00:00 10:00:00 2020-02-24 \N 40:00:00 5 5 \N +6263 104 29 2020 10 30:00:00 40:00:00 00:00:00 00:00:00 00:00:00 10:00:00 2020-03-02 \N 40:00:00 5 5 \N +6264 104 29 2020 11 30:00:00 40:00:00 00:00:00 00:00:00 00:00:00 10:00:00 2020-03-09 \N 40:00:00 5 5 \N +6265 104 29 2020 12 30:00:00 40:00:00 00:00:00 00:00:00 00:00:00 10:00:00 2020-03-16 \N 40:00:00 5 5 \N +6266 104 29 2020 13 30:00:00 40:00:00 00:00:00 00:00:00 00:00:00 10:00:00 2020-03-23 \N 40:00:00 5 5 \N +6391 122 29 2020 12 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-16 \N 40:00:00 6 6 \N +6267 104 29 2020 14 30:00:00 40:00:00 00:00:00 00:00:00 00:00:00 10:00:00 2020-03-30 \N 40:00:00 5 5 \N +6268 104 29 2020 15 30:00:00 40:00:00 00:00:00 00:00:00 00:00:00 10:00:00 2020-04-06 \N 40:00:00 5 5 \N +6269 104 29 2020 16 30:00:00 40:00:00 00:00:00 00:00:00 00:00:00 10:00:00 2020-04-13 \N 40:00:00 5 5 \N +6278 138 29 2020 9 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-24 \N 40:00:00 6 6 \N +6279 138 29 2020 10 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-02 \N 40:00:00 6 6 \N +6280 138 29 2020 11 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-09 \N 40:00:00 6 6 \N +6281 138 29 2020 12 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-16 \N 40:00:00 6 6 \N +6282 138 29 2020 13 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-23 \N 40:00:00 6 6 \N +6283 138 29 2020 14 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-30 \N 40:00:00 6 6 \N +6839 121 30 2020 24 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-06-08 \N 40:00:00 6 6 \N +6853 125 30 2020 23 20:00:00 40:00:00 00:00:00 00:00:00 00:00:00 20:00:00 2020-06-01 \N 40:00:00 6 6 \N +7112 127 31 2020 26 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-06-22 \N 40:00:00 6 6 \N +7113 127 31 2020 27 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-06-29 \N 40:00:00 6 6 \N +7114 127 31 2020 28 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-07-06 \N 40:00:00 6 6 \N +7115 127 31 2020 29 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-07-13 \N 40:00:00 6 6 \N +7116 127 31 2020 30 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-07-20 \N 40:00:00 6 6 \N +7117 127 31 2020 31 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-07-27 \N 40:00:00 6 6 \N +7118 127 31 2020 32 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-08-03 \N 40:00:00 6 6 \N +5578 103 27 2020 1 40:00:00 36:00:00 00:00:00 04:00:00 00:00:00 00:00:00 2019-12-30 \N 40:00:00 6 6 \N +6284 138 29 2020 15 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-04-06 \N 40:00:00 6 6 \N +6285 138 29 2020 16 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-04-13 \N 40:00:00 6 6 \N +6286 105 29 2020 9 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-24 \N 40:00:00 6 6 \N +6287 105 29 2020 10 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-02 \N 40:00:00 6 6 \N +6288 105 29 2020 11 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-09 \N 40:00:00 6 6 \N +6289 105 29 2020 12 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-16 \N 40:00:00 6 6 \N +6290 105 29 2020 13 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-23 \N 40:00:00 6 6 \N +6291 105 29 2020 14 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-30 \N 40:00:00 6 6 \N +6292 105 29 2020 15 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-04-06 \N 40:00:00 6 6 \N +6395 122 29 2020 16 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-04-13 \N 40:00:00 6 6 \N +6854 125 30 2020 24 20:00:00 40:00:00 00:00:00 00:00:00 00:00:00 20:00:00 2020-06-08 \N 40:00:00 6 6 \N +6859 119 30 2020 21 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-05-18 \N 40:00:00 6 6 \N +7135 121 31 2020 25 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-06-15 \N 40:00:00 6 6 \N +7136 121 31 2020 26 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-06-22 \N 40:00:00 6 6 \N +7137 121 31 2020 27 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-06-29 \N 40:00:00 6 6 \N +5579 103 27 2020 2 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-06 \N 40:00:00 6 6 \N +5580 103 27 2020 3 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-13 \N 40:00:00 6 6 \N +5581 103 27 2020 4 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-20 \N 40:00:00 6 6 \N +5582 103 27 2020 5 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-27 \N 40:00:00 6 6 \N +5583 103 27 2020 6 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-03 \N 40:00:00 6 6 \N +5584 103 27 2020 7 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-10 \N 40:00:00 6 6 \N +6293 105 29 2020 16 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-04-13 \N 40:00:00 6 6 \N +6302 144 29 2020 9 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-24 \N 40:00:00 6 6 \N +6303 144 29 2020 10 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-02 \N 40:00:00 6 6 \N +6396 106 29 2020 9 12:30:00 40:00:00 00:00:00 00:00:00 00:00:00 27:30:00 2020-02-24 \N 40:00:00 4 3 \N +6397 106 29 2020 10 12:30:00 40:00:00 00:00:00 00:00:00 00:00:00 27:30:00 2020-03-02 \N 40:00:00 4 3 \N +6398 106 29 2020 11 12:30:00 40:00:00 00:00:00 00:00:00 00:00:00 27:30:00 2020-03-09 \N 40:00:00 4 3 \N +6399 106 29 2020 12 12:30:00 40:00:00 00:00:00 00:00:00 00:00:00 27:30:00 2020-03-16 \N 40:00:00 4 3 \N +6400 106 29 2020 13 12:30:00 40:00:00 00:00:00 00:00:00 00:00:00 27:30:00 2020-03-23 \N 40:00:00 4 3 \N +5585 103 27 2020 8 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-17 \N 40:00:00 6 6 \N +6304 144 29 2020 11 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-09 \N 40:00:00 6 6 \N +6305 144 29 2020 12 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-16 \N 40:00:00 6 6 \N +6306 144 29 2020 13 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-23 \N 40:00:00 6 6 \N +6307 144 29 2020 14 40:00:00 16:00:00 00:00:00 00:00:00 00:00:00 -24:00:00 2020-03-30 \N 16:00:00 2 6 \N +6308 102 29 2020 9 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-24 \N 40:00:00 6 6 \N +6309 102 29 2020 10 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-02 \N 40:00:00 6 6 \N +6310 102 29 2020 11 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-09 \N 40:00:00 6 6 \N +6860 119 30 2020 22 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-05-25 \N 40:00:00 6 6 \N +7138 121 31 2020 28 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-07-06 \N 40:00:00 6 6 \N +7139 121 31 2020 29 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-07-13 \N 40:00:00 6 6 \N +7140 121 31 2020 30 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-07-20 \N 40:00:00 6 6 \N +7141 121 31 2020 31 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-07-27 \N 40:00:00 5 6 \N +7153 125 31 2020 28 20:00:00 40:00:00 00:00:00 00:00:00 00:00:00 20:00:00 2020-07-06 \N 40:00:00 6 6 \N +7154 125 31 2020 29 20:00:00 40:00:00 00:00:00 00:00:00 00:00:00 20:00:00 2020-07-13 \N 40:00:00 6 6 \N +7155 125 31 2020 30 20:00:00 40:00:00 00:00:00 00:00:00 00:00:00 20:00:00 2020-07-20 \N 40:00:00 6 6 \N +7156 125 31 2020 31 20:00:00 40:00:00 00:00:00 00:00:00 00:00:00 20:00:00 2020-07-27 \N 40:00:00 6 6 \N +7157 125 31 2020 32 20:00:00 40:00:00 00:00:00 00:00:00 00:00:00 20:00:00 2020-08-03 \N 40:00:00 6 6 \N +7174 147 31 2020 25 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-06-15 \N 40:00:00 6 6 \N +7175 147 31 2020 26 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-06-22 \N 40:00:00 6 6 \N +7176 147 31 2020 27 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-06-29 \N 40:00:00 6 6 \N +7177 147 31 2020 28 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-07-06 \N 40:00:00 6 6 \N +7178 147 31 2020 29 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-07-13 \N 40:00:00 6 6 \N +5586 121 27 2020 1 26:40:00 24:00:00 00:00:00 00:00:00 00:00:00 -02:40:00 2019-12-30 \N 24:00:00 4 6 \N +5587 121 27 2020 2 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-06 \N 40:00:00 6 6 \N +5588 121 27 2020 3 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-13 \N 40:00:00 6 6 \N +5589 121 27 2020 4 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-20 \N 40:00:00 6 6 \N +5590 121 27 2020 5 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-27 \N 40:00:00 6 6 \N +5591 121 27 2020 6 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-03 \N 40:00:00 6 6 \N +5592 121 27 2020 7 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-10 \N 40:00:00 6 6 \N +5593 121 27 2020 8 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-17 \N 40:00:00 6 6 \N +6311 102 29 2020 12 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-16 \N 40:00:00 6 6 \N +6312 102 29 2020 13 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-23 \N 40:00:00 6 6 \N +6313 102 29 2020 14 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-30 \N 40:00:00 6 6 \N +6314 102 29 2020 15 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-04-06 \N 40:00:00 6 6 \N +6315 102 29 2020 16 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-04-13 \N 40:00:00 6 6 \N +6412 145 29 2020 9 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-24 \N 40:00:00 6 6 \N +5594 125 27 2020 1 20:00:00 20:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2019-12-30 \N 20:00:00 6 6 \N +5595 125 27 2020 2 20:00:00 20:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-06 \N 20:00:00 6 6 \N +5596 125 27 2020 3 20:00:00 20:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-13 \N 20:00:00 6 6 \N +5597 125 27 2020 4 20:00:00 20:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-20 \N 20:00:00 6 6 \N +5598 125 27 2020 5 20:00:00 20:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-27 \N 20:00:00 6 6 \N +5599 125 27 2020 6 20:00:00 20:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-03 \N 20:00:00 6 6 \N +5600 125 27 2020 7 20:00:00 20:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-10 \N 20:00:00 6 6 \N +5601 125 27 2020 8 20:00:00 20:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-17 \N 20:00:00 6 6 \N +5602 119 27 2020 1 26:40:00 24:00:00 00:00:00 00:00:00 00:00:00 -02:40:00 2019-12-30 \N 24:00:00 4 6 \N +6413 145 29 2020 10 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-02 \N 40:00:00 6 6 \N +6414 145 29 2020 11 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-09 \N 40:00:00 6 6 \N +6415 145 29 2020 12 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-16 \N 40:00:00 6 6 \N +6416 145 29 2020 13 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-23 \N 40:00:00 6 6 \N +6417 145 29 2020 14 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-30 \N 40:00:00 6 6 \N +5603 119 27 2020 2 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-06 \N 40:00:00 6 6 \N +5604 119 27 2020 3 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-13 \N 40:00:00 6 6 \N +5605 119 27 2020 4 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-20 \N 40:00:00 6 6 \N +5606 119 27 2020 5 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-27 \N 40:00:00 6 6 \N +5607 119 27 2020 6 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-03 \N 40:00:00 6 6 \N +5608 119 27 2020 7 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-10 \N 40:00:00 6 6 \N +5609 119 27 2020 8 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-17 \N 40:00:00 6 6 \N +5610 113 27 2020 1 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2019-12-30 \N 40:00:00 6 6 \N +5611 113 27 2020 2 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-06 \N 40:00:00 6 6 \N +5612 113 27 2020 3 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-13 \N 40:00:00 6 6 \N +5613 113 27 2020 4 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-20 \N 40:00:00 6 6 \N +5614 113 27 2020 5 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-27 \N 40:00:00 6 6 \N +6418 145 29 2020 15 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-04-06 \N 40:00:00 6 6 \N +7190 104 31 2020 25 30:00:00 40:00:00 00:00:00 00:00:00 00:00:00 10:00:00 2020-06-15 \N 40:00:00 5 5 \N +7191 104 31 2020 26 30:00:00 40:00:00 00:00:00 00:00:00 00:00:00 10:00:00 2020-06-22 \N 40:00:00 5 5 \N +7192 104 31 2020 27 30:00:00 40:00:00 00:00:00 00:00:00 00:00:00 10:00:00 2020-06-29 \N 40:00:00 5 5 \N +7193 104 31 2020 28 30:00:00 40:00:00 00:00:00 00:00:00 00:00:00 10:00:00 2020-07-06 \N 40:00:00 5 5 \N +5615 113 27 2020 6 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-03 \N 40:00:00 6 6 \N +5616 113 27 2020 7 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-10 \N 40:00:00 6 6 \N +5617 113 27 2020 8 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-17 \N 40:00:00 6 6 \N +5618 147 27 2020 1 26:40:00 24:00:00 00:00:00 00:00:00 00:00:00 -02:40:00 2019-12-30 \N 24:00:00 4 6 \N +5619 147 27 2020 2 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-06 \N 40:00:00 6 6 \N +5620 147 27 2020 3 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-13 \N 40:00:00 6 6 \N +5621 147 27 2020 4 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-20 \N 40:00:00 6 6 \N +5622 147 27 2020 5 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-27 \N 40:00:00 6 6 \N +5623 147 27 2020 6 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-03 \N 40:00:00 6 6 \N +5624 147 27 2020 7 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-10 \N 40:00:00 6 6 \N +5625 147 27 2020 8 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-17 \N 40:00:00 6 6 \N +6330 118 29 2020 15 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-04-06 \N 40:00:00 6 6 \N +6331 118 29 2020 16 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-04-13 \N 40:00:00 6 6 \N +7194 104 31 2020 29 30:00:00 40:00:00 00:00:00 00:00:00 00:00:00 10:00:00 2020-07-13 \N 40:00:00 5 5 \N +5626 131 27 2020 1 20:00:00 40:00:00 00:00:00 00:00:00 00:00:00 20:00:00 2019-12-30 \N 40:00:00 5 5 \N +5627 131 27 2020 2 20:00:00 40:00:00 00:00:00 00:00:00 00:00:00 20:00:00 2020-01-06 \N 40:00:00 5 5 \N +5628 131 27 2020 3 20:00:00 40:00:00 00:00:00 00:00:00 00:00:00 20:00:00 2020-01-13 \N 40:00:00 5 5 \N +5629 131 27 2020 4 20:00:00 40:00:00 00:00:00 00:00:00 00:00:00 20:00:00 2020-01-20 \N 40:00:00 5 5 \N +5630 131 27 2020 5 20:00:00 40:00:00 00:00:00 00:00:00 00:00:00 20:00:00 2020-01-27 \N 40:00:00 5 5 \N +5631 131 27 2020 6 20:00:00 40:00:00 00:00:00 00:00:00 00:00:00 20:00:00 2020-02-03 \N 40:00:00 5 5 \N +5632 131 27 2020 7 20:00:00 40:00:00 00:00:00 00:00:00 00:00:00 20:00:00 2020-02-10 \N 40:00:00 5 5 \N +5633 131 27 2020 8 20:00:00 40:00:00 00:00:00 00:00:00 00:00:00 20:00:00 2020-02-17 \N 40:00:00 5 5 \N +5634 104 27 2020 1 30:00:00 40:00:00 00:00:00 00:00:00 00:00:00 10:00:00 2019-12-30 \N 40:00:00 5 5 \N +5635 104 27 2020 2 30:00:00 40:00:00 00:00:00 00:00:00 00:00:00 10:00:00 2020-01-06 \N 40:00:00 5 5 \N +6430 130 29 2020 11 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-09 \N 40:00:00 6 6 \N +6431 130 29 2020 12 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-16 \N 40:00:00 6 6 \N +6432 130 29 2020 13 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-23 \N 40:00:00 6 6 \N +6433 130 29 2020 14 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-30 \N 40:00:00 6 6 \N +7202 151 31 2020 29 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-07-13 \N 40:00:00 6 6 \N +5636 104 27 2020 3 30:00:00 40:00:00 00:00:00 00:00:00 00:00:00 10:00:00 2020-01-13 \N 40:00:00 5 5 \N +5637 104 27 2020 4 30:00:00 40:00:00 00:00:00 00:00:00 00:00:00 10:00:00 2020-01-20 \N 40:00:00 5 5 \N +5638 104 27 2020 5 30:00:00 40:00:00 00:00:00 00:00:00 00:00:00 10:00:00 2020-01-27 \N 40:00:00 5 5 \N +5639 104 27 2020 6 30:00:00 40:00:00 00:00:00 00:00:00 00:00:00 10:00:00 2020-02-03 \N 40:00:00 5 5 \N +5640 104 27 2020 7 30:00:00 40:00:00 00:00:00 00:00:00 00:00:00 10:00:00 2020-02-10 \N 40:00:00 5 5 \N +5641 104 27 2020 8 30:00:00 40:00:00 00:00:00 00:00:00 00:00:00 10:00:00 2020-02-17 \N 40:00:00 5 5 \N +5642 151 27 2020 5 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 -40:00:00 2020-01-27 \N 00:00:00 1 6 \N +5643 151 27 2020 6 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-03 \N 40:00:00 6 6 \N +5644 151 27 2020 7 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-10 \N 40:00:00 6 6 \N +5645 151 27 2020 8 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-17 \N 40:00:00 6 6 \N +6332 133 29 2020 9 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-24 \N 40:00:00 6 6 \N +6333 133 29 2020 10 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-02 \N 40:00:00 6 6 \N +6334 133 29 2020 11 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-09 \N 40:00:00 6 6 \N +5646 138 27 2020 1 26:40:00 24:00:00 00:00:00 00:00:00 00:00:00 -02:40:00 2019-12-30 \N 24:00:00 4 6 \N +5647 138 27 2020 2 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-06 \N 40:00:00 6 6 \N +5648 138 27 2020 3 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-13 \N 40:00:00 6 6 \N +5649 138 27 2020 4 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-20 \N 40:00:00 6 6 \N +5650 138 27 2020 5 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-27 \N 40:00:00 6 6 \N +5651 138 27 2020 6 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-03 \N 40:00:00 6 6 \N +5652 138 27 2020 7 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-10 \N 40:00:00 6 6 \N +5653 138 27 2020 8 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-17 \N 40:00:00 6 6 \N +5654 105 27 2020 1 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2019-12-30 \N 40:00:00 6 6 \N +5655 105 27 2020 2 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-06 \N 40:00:00 6 6 \N +5656 105 27 2020 3 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-13 \N 40:00:00 6 6 \N +5657 105 27 2020 4 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-20 \N 40:00:00 6 6 \N +5658 105 27 2020 5 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-27 \N 40:00:00 6 6 \N +6439 129 29 2020 12 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-16 \N 40:00:00 6 6 \N +7203 151 31 2020 30 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-07-20 \N 40:00:00 6 6 \N +5659 105 27 2020 6 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-03 \N 40:00:00 6 6 \N +5660 105 27 2020 7 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-10 \N 40:00:00 6 6 \N +5661 105 27 2020 8 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-17 \N 40:00:00 6 6 \N +5662 134 27 2020 1 26:40:00 24:00:00 00:00:00 00:00:00 00:00:00 -02:40:00 2019-12-30 \N 24:00:00 4 6 \N +5663 134 27 2020 2 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-06 \N 40:00:00 6 6 \N +5664 134 27 2020 3 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-13 \N 40:00:00 6 6 \N +5665 134 27 2020 4 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-20 \N 40:00:00 6 6 \N +5666 134 27 2020 5 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-27 \N 40:00:00 6 6 \N +5667 134 27 2020 6 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-03 \N 40:00:00 6 6 \N +5668 134 27 2020 7 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-10 \N 40:00:00 6 6 \N +5669 134 27 2020 8 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-17 \N 40:00:00 6 6 \N +6440 129 29 2020 13 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-23 \N 40:00:00 6 6 \N +6441 129 29 2020 14 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-30 \N 40:00:00 6 6 \N +5678 102 27 2020 1 26:40:00 24:00:00 00:00:00 00:00:00 00:00:00 -02:40:00 2019-12-30 \N 24:00:00 4 6 \N +5679 102 27 2020 2 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-06 \N 40:00:00 6 6 \N +5680 102 27 2020 3 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-13 \N 40:00:00 6 6 \N +5681 102 27 2020 4 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-20 \N 40:00:00 6 6 \N +5682 102 27 2020 5 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-27 \N 40:00:00 6 6 \N +5683 102 27 2020 6 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-03 \N 40:00:00 6 6 \N +5684 102 27 2020 7 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-10 \N 40:00:00 6 6 \N +5685 102 27 2020 8 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-17 \N 40:00:00 6 6 \N +6364 136 29 2020 9 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-24 \N 40:00:00 6 6 \N +6365 136 29 2020 10 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-02 \N 40:00:00 6 6 \N +6366 136 29 2020 11 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-09 \N 40:00:00 6 6 \N +6877 147 30 2020 23 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-06-01 \N 40:00:00 6 6 \N +6878 147 30 2020 24 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-06-08 \N 40:00:00 6 6 \N +7204 151 31 2020 31 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-07-27 \N 40:00:00 6 6 \N +7205 151 31 2020 32 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-08-03 \N 40:00:00 6 6 \N +5700 118 27 2020 7 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-10 \N 40:00:00 6 6 \N +5701 118 27 2020 8 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-17 \N 40:00:00 6 6 \N +5702 133 27 2020 1 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2019-12-30 \N 40:00:00 6 6 \N +5703 133 27 2020 2 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-06 \N 40:00:00 6 6 \N +5704 133 27 2020 3 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-13 \N 40:00:00 6 6 \N +5705 133 27 2020 4 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-20 \N 40:00:00 6 6 \N +5706 133 27 2020 5 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-27 \N 40:00:00 6 6 \N +5707 133 27 2020 6 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-03 \N 40:00:00 6 6 \N +5708 133 27 2020 7 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-10 \N 40:00:00 6 6 \N +5709 133 27 2020 8 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-17 \N 40:00:00 6 6 \N +6773 115 30 2020 20 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-05-11 \N 40:00:00 6 6 \N +6774 115 30 2020 21 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-05-18 \N 40:00:00 6 6 \N +6775 115 30 2020 22 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-05-25 \N 40:00:00 6 6 \N +5719 128 27 2020 2 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-06 \N 40:00:00 6 6 \N +5720 128 27 2020 3 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-13 \N 40:00:00 6 6 \N +5721 128 27 2020 4 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-20 \N 40:00:00 6 6 \N +5722 128 27 2020 5 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-27 \N 40:00:00 6 6 \N +5723 128 27 2020 6 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-03 \N 40:00:00 6 6 \N +5724 128 27 2020 7 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-10 \N 40:00:00 6 6 \N +5725 128 27 2020 8 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-17 \N 40:00:00 6 6 \N +6388 122 29 2020 9 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-24 \N 40:00:00 6 6 \N +6792 108 30 2020 17 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-04-20 \N 40:00:00 6 6 \N +6793 108 30 2020 18 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-04-27 \N 40:00:00 6 6 \N +6794 108 30 2020 19 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-05-04 \N 40:00:00 6 6 \N +6795 108 30 2020 20 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-05-11 \N 40:00:00 6 6 \N +5742 140 27 2020 1 26:40:00 24:00:00 00:00:00 00:00:00 00:00:00 -02:40:00 2019-12-30 \N 24:00:00 4 6 \N +5743 140 27 2020 2 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-06 \N 40:00:00 6 6 \N +5744 140 27 2020 3 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-13 \N 40:00:00 6 6 \N +5745 140 27 2020 4 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-20 \N 40:00:00 6 6 \N +5746 140 27 2020 5 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-27 \N 40:00:00 5 6 \N +5747 139 27 2020 1 26:40:00 24:00:00 00:00:00 00:00:00 00:00:00 -02:40:00 2019-12-30 \N 24:00:00 4 6 \N +5748 139 27 2020 2 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-06 \N 40:00:00 6 6 \N +5749 139 27 2020 3 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-13 \N 40:00:00 6 6 \N +5750 139 27 2020 4 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-20 \N 40:00:00 6 6 \N +6401 106 29 2020 14 12:30:00 40:00:00 00:00:00 00:00:00 00:00:00 27:30:00 2020-03-30 \N 40:00:00 4 3 \N +6811 127 30 2020 20 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-05-11 \N 40:00:00 6 6 \N +6812 127 30 2020 21 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-05-18 \N 40:00:00 6 6 \N +6916 105 30 2020 22 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-05-25 \N 40:00:00 6 6 \N +6920 134 30 2020 18 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-04-27 \N 40:00:00 6 6 \N +7223 134 31 2020 31 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-07-27 \N 40:00:00 6 6 \N +5763 122 27 2020 1 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2019-12-30 \N 40:00:00 6 6 \N +5764 122 27 2020 2 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-06 \N 40:00:00 6 6 \N +5765 122 27 2020 3 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-13 \N 40:00:00 6 6 \N +5766 122 27 2020 4 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-20 \N 40:00:00 6 6 \N +5767 122 27 2020 5 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-27 \N 40:00:00 6 6 \N +5768 122 27 2020 6 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-03 \N 40:00:00 6 6 \N +5769 122 27 2020 7 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-10 \N 40:00:00 6 6 \N +5770 122 27 2020 8 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-17 \N 40:00:00 6 6 \N +6419 145 29 2020 16 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-04-13 \N 40:00:00 6 6 \N +6420 148 29 2020 9 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-24 \N 40:00:00 6 6 \N +6829 103 30 2020 22 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-05-25 \N 40:00:00 6 6 \N +6832 121 30 2020 17 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-04-20 \N 40:00:00 6 6 \N +6833 121 30 2020 18 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-04-27 \N 40:00:00 6 6 \N +5787 145 27 2020 1 26:40:00 24:00:00 00:00:00 00:00:00 00:00:00 -02:40:00 2019-12-30 \N 24:00:00 4 6 \N +5788 145 27 2020 2 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-06 \N 40:00:00 6 6 \N +5789 145 27 2020 3 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-13 \N 40:00:00 6 6 \N +5790 145 27 2020 4 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-20 \N 40:00:00 6 6 \N +5791 145 27 2020 5 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-27 \N 40:00:00 6 6 \N +5792 145 27 2020 6 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-03 \N 40:00:00 6 6 \N +5793 145 27 2020 7 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-10 \N 40:00:00 6 6 \N +5794 145 27 2020 8 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-17 \N 40:00:00 6 6 \N +6436 129 29 2020 9 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-24 \N 40:00:00 6 6 \N +6437 129 29 2020 10 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-02 \N 40:00:00 6 6 \N +6438 129 29 2020 11 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-09 \N 40:00:00 6 6 \N +6935 109 30 2020 17 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-04-20 \N 40:00:00 6 6 \N +6936 109 30 2020 18 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-04-27 \N 40:00:00 6 6 \N +7224 134 31 2020 32 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-08-03 \N 40:00:00 6 6 \N +7233 109 31 2020 25 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-06-15 \N 40:00:00 6 6 \N +7234 109 31 2020 26 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-06-22 \N 40:00:00 6 6 \N +7235 109 31 2020 27 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-06-29 \N 40:00:00 6 6 \N +5806 130 27 2020 4 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-20 \N 40:00:00 6 6 \N +5807 130 27 2020 5 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-27 \N 40:00:00 6 6 \N +5808 130 27 2020 6 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-03 \N 40:00:00 6 6 \N +5809 130 27 2020 7 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-10 \N 40:00:00 6 6 \N +5810 130 27 2020 8 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-17 \N 40:00:00 6 6 \N +5256 129 27 2020 1 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2019-12-30 \N 40:00:00 6 6 \N +5257 129 27 2020 2 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-06 \N 40:00:00 6 6 \N +5258 129 27 2020 3 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-13 \N 40:00:00 6 6 \N +5259 129 27 2020 4 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-20 \N 40:00:00 6 6 \N +6855 119 30 2020 17 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-04-20 \N 40:00:00 6 6 \N +6856 119 30 2020 18 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-04-27 \N 40:00:00 6 6 \N +6857 119 30 2020 19 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-05-04 \N 40:00:00 6 6 \N +6858 119 30 2020 20 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-05-11 \N 40:00:00 6 6 \N +6142 146 29 2020 9 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-24 \N 40:00:00 6 6 \N +6143 146 29 2020 10 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-02 \N 40:00:00 6 6 \N +6144 146 29 2020 11 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-09 \N 40:00:00 6 6 \N +6145 146 29 2020 12 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-16 \N 40:00:00 6 6 \N +6146 146 29 2020 13 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-23 \N 40:00:00 6 6 \N +6147 146 29 2020 14 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-30 \N 40:00:00 6 6 \N +6148 146 29 2020 15 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-04-06 \N 40:00:00 6 6 \N +6149 146 29 2020 16 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-04-13 \N 40:00:00 6 6 \N +6770 115 30 2020 17 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-04-20 \N 40:00:00 6 6 \N +6771 115 30 2020 18 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-04-27 \N 40:00:00 6 6 \N +6772 115 30 2020 19 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-05-04 \N 40:00:00 6 6 \N +6941 109 30 2020 23 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-06-01 \N 40:00:00 6 6 \N +6942 109 30 2020 24 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-06-08 \N 40:00:00 6 6 \N +6166 112 29 2020 9 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-24 \N 40:00:00 6 6 \N +6167 112 29 2020 10 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-02 \N 40:00:00 6 6 \N +6168 112 29 2020 11 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-09 \N 40:00:00 6 6 \N +6169 112 29 2020 12 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-16 \N 40:00:00 6 6 \N +6170 112 29 2020 13 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-23 \N 40:00:00 6 6 \N +6171 112 29 2020 14 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-30 \N 40:00:00 6 6 \N +6172 112 29 2020 15 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-04-06 \N 40:00:00 6 6 \N +6173 112 29 2020 16 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-04-13 \N 40:00:00 6 6 \N +6788 112 30 2020 19 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-05-04 \N 40:00:00 6 6 \N +6789 112 30 2020 20 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-05-11 \N 40:00:00 6 6 \N +6790 112 30 2020 21 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-05-18 \N 40:00:00 6 6 \N +6791 112 30 2020 22 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-05-25 \N 40:00:00 6 6 \N +7236 109 31 2020 28 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-07-06 \N 40:00:00 6 6 \N +7237 109 31 2020 29 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-07-13 \N 40:00:00 6 6 \N +7241 118 31 2020 25 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-06-15 \N 40:00:00 6 6 \N +7242 118 31 2020 26 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-06-22 \N 40:00:00 6 6 \N +6186 135 29 2020 13 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-23 \N 40:00:00 6 6 \N +6187 135 29 2020 14 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-30 \N 40:00:00 6 6 \N +6188 135 29 2020 15 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-04-06 \N 40:00:00 6 6 \N +6189 135 29 2020 16 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-04-13 \N 40:00:00 6 6 \N +6190 127 29 2020 9 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-24 \N 40:00:00 6 6 \N +6191 127 29 2020 10 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-02 \N 40:00:00 6 6 \N +6192 127 29 2020 11 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-09 \N 40:00:00 6 6 \N +6193 127 29 2020 12 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-16 \N 40:00:00 6 6 \N +6194 127 29 2020 13 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-23 \N 40:00:00 6 6 \N +6195 127 29 2020 14 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-30 \N 40:00:00 6 6 \N +6196 127 29 2020 15 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-04-06 \N 40:00:00 6 6 \N +6206 103 29 2020 9 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-24 \N 40:00:00 6 6 \N +6207 103 29 2020 10 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-02 \N 40:00:00 6 6 \N +6208 103 29 2020 11 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-09 \N 40:00:00 6 6 \N +6209 103 29 2020 12 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-16 \N 40:00:00 6 6 \N +6210 103 29 2020 13 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-23 \N 40:00:00 6 6 \N +6211 103 29 2020 14 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-30 \N 40:00:00 6 6 \N +6212 103 29 2020 15 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-04-06 \N 40:00:00 6 6 \N +6213 103 29 2020 16 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-04-13 \N 40:00:00 6 6 \N +6813 127 30 2020 22 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-05-25 \N 40:00:00 6 6 \N +6814 127 30 2020 23 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-06-01 \N 40:00:00 6 6 \N +6815 127 30 2020 24 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-06-08 \N 40:00:00 6 6 \N +6816 149 30 2020 17 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-04-20 \N 40:00:00 6 6 \N +6914 105 30 2020 20 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-05-11 \N 40:00:00 6 6 \N +6230 119 29 2020 9 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-24 \N 40:00:00 6 6 \N +6231 119 29 2020 10 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-02 \N 40:00:00 6 6 \N +6232 119 29 2020 11 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-09 \N 40:00:00 6 6 \N +6233 119 29 2020 12 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-16 \N 40:00:00 6 6 \N +6234 119 29 2020 13 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-23 \N 40:00:00 6 6 \N +6235 119 29 2020 14 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-30 \N 40:00:00 6 6 \N +6236 119 29 2020 15 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-04-06 \N 40:00:00 6 6 \N +6237 119 29 2020 16 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-04-13 \N 40:00:00 6 6 \N +6830 103 30 2020 23 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-06-01 \N 40:00:00 6 6 \N +6831 103 30 2020 24 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-06-08 \N 40:00:00 6 6 \N +6917 105 30 2020 23 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-06-01 \N 40:00:00 6 6 \N +6918 105 30 2020 24 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-06-08 \N 40:00:00 6 6 \N +6981 142 30 2020 23 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-06-01 \N 40:00:00 6 6 \N +7243 118 31 2020 27 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-06-29 \N 40:00:00 6 6 \N +7244 118 31 2020 28 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-07-06 \N 40:00:00 6 6 \N +7245 118 31 2020 29 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-07-13 \N 40:00:00 6 6 \N +7246 118 31 2020 30 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-07-20 \N 40:00:00 6 6 \N +6251 147 29 2020 14 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-30 \N 40:00:00 6 6 \N +6252 147 29 2020 15 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-04-06 \N 40:00:00 6 6 \N +6253 147 29 2020 16 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-04-13 \N 40:00:00 6 6 \N +6254 131 29 2020 9 20:00:00 40:00:00 00:00:00 00:00:00 00:00:00 20:00:00 2020-02-24 \N 40:00:00 5 5 \N +6255 131 29 2020 10 20:00:00 40:00:00 00:00:00 00:00:00 00:00:00 20:00:00 2020-03-02 \N 40:00:00 5 5 \N +6256 131 29 2020 11 20:00:00 40:00:00 00:00:00 00:00:00 00:00:00 20:00:00 2020-03-09 \N 40:00:00 5 5 \N +6257 131 29 2020 12 20:00:00 40:00:00 00:00:00 00:00:00 00:00:00 20:00:00 2020-03-16 \N 40:00:00 5 5 \N +6258 131 29 2020 13 20:00:00 40:00:00 00:00:00 00:00:00 00:00:00 20:00:00 2020-03-23 \N 40:00:00 5 5 \N +6259 131 29 2020 14 20:00:00 40:00:00 00:00:00 00:00:00 00:00:00 20:00:00 2020-03-30 \N 40:00:00 5 5 \N +6260 131 29 2020 15 20:00:00 40:00:00 00:00:00 00:00:00 00:00:00 20:00:00 2020-04-06 \N 40:00:00 5 5 \N +6261 131 29 2020 16 20:00:00 40:00:00 00:00:00 00:00:00 00:00:00 20:00:00 2020-04-13 \N 40:00:00 5 5 \N +6847 125 30 2020 17 20:00:00 40:00:00 00:00:00 00:00:00 00:00:00 20:00:00 2020-04-20 \N 40:00:00 6 6 \N +6848 125 30 2020 18 20:00:00 40:00:00 00:00:00 00:00:00 00:00:00 20:00:00 2020-04-27 \N 40:00:00 6 6 \N +6849 125 30 2020 19 20:00:00 40:00:00 00:00:00 00:00:00 00:00:00 20:00:00 2020-05-04 \N 40:00:00 6 6 \N +7247 118 31 2020 31 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-07-27 \N 40:00:00 6 6 \N +6270 151 29 2020 9 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-24 \N 40:00:00 6 6 \N +6271 151 29 2020 10 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-02 \N 40:00:00 6 6 \N +6272 151 29 2020 11 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-09 \N 40:00:00 6 6 \N +6273 151 29 2020 12 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-16 \N 40:00:00 6 6 \N +6274 151 29 2020 13 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-23 \N 40:00:00 6 6 \N +6275 151 29 2020 14 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-30 \N 40:00:00 6 6 \N +6276 151 29 2020 15 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-04-06 \N 40:00:00 6 6 \N +6277 151 29 2020 16 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-04-13 \N 40:00:00 6 6 \N +6850 125 30 2020 20 20:00:00 40:00:00 00:00:00 00:00:00 00:00:00 20:00:00 2020-05-11 \N 40:00:00 6 6 \N +6851 125 30 2020 21 20:00:00 40:00:00 00:00:00 00:00:00 00:00:00 20:00:00 2020-05-18 \N 40:00:00 6 6 \N +6852 125 30 2020 22 20:00:00 40:00:00 00:00:00 00:00:00 00:00:00 20:00:00 2020-05-25 \N 40:00:00 6 6 \N +6925 134 30 2020 23 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-06-01 \N 40:00:00 6 6 \N +6926 134 30 2020 24 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-06-08 \N 40:00:00 6 6 \N +7248 118 31 2020 32 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-08-03 \N 40:00:00 6 6 \N +7260 111 31 2020 28 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-07-06 \N 40:00:00 6 6 \N +7261 111 31 2020 29 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-07-13 \N 40:00:00 6 6 \N +7262 111 31 2020 30 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-07-20 \N 40:00:00 6 6 \N +6294 134 29 2020 9 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-24 \N 40:00:00 6 6 \N +6295 134 29 2020 10 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-02 \N 40:00:00 6 6 \N +6296 134 29 2020 11 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-09 \N 40:00:00 6 6 \N +6297 134 29 2020 12 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-16 \N 40:00:00 6 6 \N +6298 134 29 2020 13 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-23 \N 40:00:00 6 6 \N +6299 134 29 2020 14 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-30 \N 40:00:00 6 6 \N +6300 134 29 2020 15 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-04-06 \N 40:00:00 6 6 \N +6301 134 29 2020 16 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-04-13 \N 40:00:00 6 6 \N +6861 119 30 2020 23 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-06-01 \N 40:00:00 6 6 \N +6862 119 30 2020 24 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-06-08 \N 40:00:00 6 6 \N +6316 109 29 2020 9 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-24 \N 40:00:00 6 6 \N +6317 109 29 2020 10 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-02 \N 40:00:00 6 6 \N +6318 109 29 2020 11 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-09 \N 40:00:00 6 6 \N +6319 109 29 2020 12 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-16 \N 40:00:00 6 6 \N +6320 109 29 2020 13 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-23 \N 40:00:00 6 6 \N +6321 109 29 2020 14 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-30 \N 40:00:00 6 6 \N +6322 109 29 2020 15 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-04-06 \N 40:00:00 6 6 \N +6323 109 29 2020 16 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-04-13 \N 40:00:00 6 6 \N +6879 131 30 2020 17 20:00:00 40:00:00 00:00:00 00:00:00 00:00:00 20:00:00 2020-04-20 \N 40:00:00 5 5 \N +6880 131 30 2020 18 20:00:00 40:00:00 00:00:00 00:00:00 00:00:00 20:00:00 2020-04-27 \N 40:00:00 5 5 \N +6881 131 30 2020 19 20:00:00 40:00:00 00:00:00 00:00:00 00:00:00 20:00:00 2020-05-04 \N 40:00:00 5 5 \N +6882 131 30 2020 20 20:00:00 40:00:00 00:00:00 00:00:00 00:00:00 20:00:00 2020-05-11 \N 40:00:00 5 5 \N +6894 104 30 2020 24 30:00:00 40:00:00 00:00:00 00:00:00 00:00:00 10:00:00 2020-06-08 \N 40:00:00 5 5 \N +7263 111 31 2020 31 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-07-27 \N 40:00:00 6 6 \N +7264 111 31 2020 32 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-08-03 \N 40:00:00 6 6 \N +7267 128 31 2020 27 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-06-29 \N 40:00:00 6 6 \N +7268 128 31 2020 28 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-07-06 \N 40:00:00 6 6 \N +6337 133 29 2020 14 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-30 \N 40:00:00 6 6 \N +6338 133 29 2020 15 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-04-06 \N 40:00:00 6 6 \N +6339 133 29 2020 16 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-04-13 \N 40:00:00 6 6 \N +6340 111 29 2020 9 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-24 \N 40:00:00 6 6 \N +6341 111 29 2020 10 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-02 \N 40:00:00 6 6 \N +6342 111 29 2020 11 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-09 \N 40:00:00 6 6 \N +6343 111 29 2020 12 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-16 \N 40:00:00 6 6 \N +6344 111 29 2020 13 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-23 \N 40:00:00 6 6 \N +6345 111 29 2020 14 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-30 \N 40:00:00 6 6 \N +6346 111 29 2020 15 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-04-06 \N 40:00:00 6 6 \N +6347 111 29 2020 16 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-04-13 \N 40:00:00 6 6 \N +7005 141 30 2020 23 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-06-01 \N 40:00:00 6 6 \N +7006 141 30 2020 24 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-06-08 \N 40:00:00 6 6 \N +6356 142 29 2020 9 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-24 \N 40:00:00 6 6 \N +6357 142 29 2020 10 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-02 \N 40:00:00 6 6 \N +6358 142 29 2020 11 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-09 \N 40:00:00 6 6 \N +6359 142 29 2020 12 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-16 \N 40:00:00 6 6 \N +6360 142 29 2020 13 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-23 \N 40:00:00 6 6 \N +6361 142 29 2020 14 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-30 \N 40:00:00 6 6 \N +6362 142 29 2020 15 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-04-06 \N 40:00:00 6 6 \N +6363 142 29 2020 16 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-04-13 \N 40:00:00 6 6 \N +6911 105 30 2020 17 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-04-20 \N 40:00:00 6 6 \N +6912 105 30 2020 18 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-04-27 \N 40:00:00 6 6 \N +6913 105 30 2020 19 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-05-04 \N 40:00:00 6 6 \N +6966 111 30 2020 24 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-06-08 \N 40:00:00 6 6 \N +7269 128 31 2020 29 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-07-13 \N 40:00:00 6 6 \N +7270 128 31 2020 30 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-07-20 \N 40:00:00 6 6 \N +7288 136 31 2020 32 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-08-03 \N 40:00:00 6 6 \N +7289 139 31 2020 25 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-06-15 \N 40:00:00 6 6 \N +6380 141 29 2020 9 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-24 \N 40:00:00 6 6 \N +6381 141 29 2020 10 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-02 \N 40:00:00 6 6 \N +6382 141 29 2020 11 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-09 \N 40:00:00 6 6 \N +6383 141 29 2020 12 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-16 \N 40:00:00 6 6 \N +6384 141 29 2020 13 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-23 \N 40:00:00 6 6 \N +6385 141 29 2020 14 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-30 \N 40:00:00 6 6 \N +6386 141 29 2020 15 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-04-06 \N 40:00:00 6 6 \N +6387 141 29 2020 16 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-04-13 \N 40:00:00 6 6 \N +6919 134 30 2020 17 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-04-20 \N 40:00:00 6 6 \N +6982 142 30 2020 24 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-06-08 \N 40:00:00 6 6 \N +6402 106 29 2020 15 12:30:00 40:00:00 00:00:00 00:00:00 00:00:00 27:30:00 2020-04-06 \N 40:00:00 4 3 \N +6403 106 29 2020 16 12:30:00 40:00:00 00:00:00 00:00:00 00:00:00 27:30:00 2020-04-13 \N 40:00:00 4 3 \N +6404 110 29 2020 9 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-24 \N 40:00:00 6 6 \N +6405 110 29 2020 10 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-02 \N 40:00:00 6 6 \N +6406 110 29 2020 11 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-09 \N 40:00:00 6 6 \N +6407 110 29 2020 12 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-16 \N 40:00:00 6 6 \N +6408 110 29 2020 13 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-23 \N 40:00:00 6 6 \N +6409 110 29 2020 14 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-30 \N 40:00:00 6 6 \N +6410 110 29 2020 15 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-04-06 \N 40:00:00 6 6 \N +6411 110 29 2020 16 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-04-13 \N 40:00:00 6 6 \N +6990 136 30 2020 24 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-06-08 \N 40:00:00 6 6 \N +6999 141 30 2020 17 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-04-20 \N 40:00:00 6 6 \N +7000 141 30 2020 18 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-04-27 \N 40:00:00 6 6 \N +7063 143 30 2020 17 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-04-20 \N 40:00:00 6 6 \N +7297 141 31 2020 25 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-06-15 \N 40:00:00 6 6 \N +6421 148 29 2020 10 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-02 \N 40:00:00 6 6 \N +6422 148 29 2020 11 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-09 \N 40:00:00 6 6 \N +6423 148 29 2020 12 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-16 \N 40:00:00 6 6 \N +6424 148 29 2020 13 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-23 \N 40:00:00 6 6 \N +6425 148 29 2020 14 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-30 \N 40:00:00 6 6 \N +6426 148 29 2020 15 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-04-06 \N 40:00:00 6 6 \N +6427 148 29 2020 16 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-04-13 \N 40:00:00 6 6 \N +6945 118 30 2020 19 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-05-04 \N 40:00:00 6 6 \N +6946 118 30 2020 20 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-05-11 \N 40:00:00 6 6 \N +6947 118 30 2020 21 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-05-18 \N 40:00:00 6 6 \N +7003 141 30 2020 21 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-05-18 \N 40:00:00 6 6 \N +7004 141 30 2020 22 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-05-25 \N 40:00:00 6 6 \N +7064 143 30 2020 18 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-04-27 \N 40:00:00 6 6 \N +6444 143 29 2020 9 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-24 \N 40:00:00 6 6 \N +6445 143 29 2020 10 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-02 \N 40:00:00 6 6 \N +6446 143 29 2020 11 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-09 \N 40:00:00 6 6 \N +6447 143 29 2020 12 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-16 \N 40:00:00 6 6 \N +6448 143 29 2020 13 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-23 \N 40:00:00 6 6 \N +6449 143 29 2020 14 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-30 \N 40:00:00 6 6 \N +6450 143 29 2020 15 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-04-06 \N 40:00:00 6 6 \N +6451 143 29 2020 16 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-04-13 \N 40:00:00 6 6 \N +6975 142 30 2020 17 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-04-20 \N 40:00:00 6 6 \N +6976 142 30 2020 18 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-04-27 \N 40:00:00 6 6 \N +6977 142 30 2020 19 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-05-04 \N 40:00:00 6 6 \N +7025 110 30 2020 19 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-05-04 \N 40:00:00 6 6 \N +7026 110 30 2020 20 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-05-11 \N 40:00:00 6 6 \N +7027 110 30 2020 21 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-05-18 \N 40:00:00 6 6 \N +7298 141 31 2020 26 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-06-22 \N 40:00:00 6 6 \N +6777 115 30 2020 24 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-06-08 \N 40:00:00 6 6 \N +6778 114 30 2020 17 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-04-20 \N 40:00:00 6 6 \N +6779 114 30 2020 18 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-04-27 \N 40:00:00 6 6 \N +6780 114 30 2020 19 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-05-04 \N 40:00:00 6 6 \N +6781 114 30 2020 20 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-05-11 \N 40:00:00 6 6 \N +6782 114 30 2020 21 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-05-18 \N 40:00:00 6 6 \N +6783 114 30 2020 22 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-05-25 \N 40:00:00 6 6 \N +6784 114 30 2020 23 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-06-01 \N 40:00:00 6 6 \N +6785 114 30 2020 24 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-06-08 \N 40:00:00 6 6 \N +6798 108 30 2020 23 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-06-01 \N 40:00:00 6 6 \N +6799 108 30 2020 24 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-06-08 \N 40:00:00 6 6 \N +6800 135 30 2020 17 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-04-20 \N 40:00:00 6 6 \N +6801 135 30 2020 18 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-04-27 \N 40:00:00 6 6 \N +6802 135 30 2020 19 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-05-04 \N 40:00:00 6 6 \N +6803 135 30 2020 20 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-05-11 \N 40:00:00 6 6 \N +6804 135 30 2020 21 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-05-18 \N 40:00:00 6 6 \N +6805 135 30 2020 22 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-05-25 \N 40:00:00 6 6 \N +6806 135 30 2020 23 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-06-01 \N 40:00:00 6 6 \N +6807 135 30 2020 24 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-06-08 \N 40:00:00 6 6 \N +7052 130 30 2020 22 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-05-25 \N 40:00:00 6 6 \N +7053 130 30 2020 23 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-06-01 \N 40:00:00 6 6 \N +7054 130 30 2020 24 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-06-08 \N 40:00:00 6 6 \N +6817 149 30 2020 18 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-04-27 \N 40:00:00 6 6 \N +6818 149 30 2020 19 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-05-04 \N 40:00:00 6 6 \N +6819 149 30 2020 20 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-05-11 \N 40:00:00 6 6 \N +6820 149 30 2020 21 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-05-18 \N 40:00:00 6 6 \N +6821 149 30 2020 22 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-05-25 \N 40:00:00 6 6 \N +6822 149 30 2020 23 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-06-01 \N 40:00:00 6 6 \N +6823 149 30 2020 24 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-06-08 \N 40:00:00 6 6 \N +7007 122 30 2020 17 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-04-20 \N 40:00:00 6 6 \N +7008 122 30 2020 18 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-04-27 \N 40:00:00 6 6 \N +7009 122 30 2020 19 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-05-04 \N 40:00:00 6 6 \N +7010 122 30 2020 20 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-05-11 \N 40:00:00 6 6 \N +7011 122 30 2020 21 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-05-18 \N 40:00:00 6 6 \N +7067 143 30 2020 21 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-05-18 \N 40:00:00 6 6 \N +7068 143 30 2020 22 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-05-25 \N 40:00:00 6 6 \N +7299 141 31 2020 27 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-06-29 \N 40:00:00 6 6 \N +6840 117 30 2020 18 40:00:00 08:00:00 00:00:00 00:00:00 00:00:00 -32:00:00 2020-04-27 \N 08:00:00 2 6 \N +6841 117 30 2020 19 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-05-04 \N 40:00:00 6 6 \N +6842 117 30 2020 20 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-05-11 \N 40:00:00 6 6 \N +6843 117 30 2020 21 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-05-18 \N 40:00:00 6 6 \N +6844 117 30 2020 22 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-05-25 \N 40:00:00 6 6 \N +6845 117 30 2020 23 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-06-01 \N 40:00:00 6 6 \N +6846 117 30 2020 24 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-06-08 \N 40:00:00 6 6 \N +7028 110 30 2020 22 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-05-25 \N 40:00:00 6 6 \N +7029 110 30 2020 23 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-06-01 \N 40:00:00 6 6 \N +7030 110 30 2020 24 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-06-08 \N 40:00:00 6 6 \N +7031 145 30 2020 17 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-04-20 \N 40:00:00 6 6 \N +7107 135 31 2020 29 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-07-13 \N 40:00:00 6 6 \N +7108 135 31 2020 30 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-07-20 \N 40:00:00 6 6 \N +7300 141 31 2020 28 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-07-06 \N 40:00:00 6 6 \N +6863 113 30 2020 17 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-04-20 \N 40:00:00 6 6 \N +6864 113 30 2020 18 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-04-27 \N 40:00:00 6 6 \N +6865 113 30 2020 19 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-05-04 \N 40:00:00 6 6 \N +6866 113 30 2020 20 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-05-11 \N 40:00:00 6 6 \N +6867 113 30 2020 21 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-05-18 \N 40:00:00 6 6 \N +6868 113 30 2020 22 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-05-25 \N 40:00:00 6 6 \N +6869 113 30 2020 23 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-06-01 \N 40:00:00 6 6 \N +6870 113 30 2020 24 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-06-08 \N 40:00:00 6 6 \N +7047 130 30 2020 17 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-04-20 \N 40:00:00 6 6 \N +7048 130 30 2020 18 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-04-27 \N 40:00:00 6 6 \N +7049 130 30 2020 19 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-05-04 \N 40:00:00 6 6 \N +7088 114 31 2020 26 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-06-22 \N 40:00:00 6 6 \N +7089 114 31 2020 27 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-06-29 \N 40:00:00 6 6 \N +6883 131 30 2020 21 20:00:00 40:00:00 00:00:00 00:00:00 00:00:00 20:00:00 2020-05-18 \N 40:00:00 5 5 \N +6884 131 30 2020 22 20:00:00 40:00:00 00:00:00 00:00:00 00:00:00 20:00:00 2020-05-25 \N 40:00:00 5 5 \N +6885 131 30 2020 23 20:00:00 40:00:00 00:00:00 00:00:00 00:00:00 20:00:00 2020-06-01 \N 40:00:00 5 5 \N +6886 131 30 2020 24 20:00:00 40:00:00 00:00:00 00:00:00 00:00:00 20:00:00 2020-06-08 \N 40:00:00 5 5 \N +6887 104 30 2020 17 30:00:00 40:00:00 00:00:00 00:00:00 00:00:00 10:00:00 2020-04-20 \N 40:00:00 5 5 \N +6888 104 30 2020 18 30:00:00 40:00:00 00:00:00 00:00:00 00:00:00 10:00:00 2020-04-27 \N 40:00:00 5 5 \N +6889 104 30 2020 19 30:00:00 40:00:00 00:00:00 00:00:00 00:00:00 10:00:00 2020-05-04 \N 40:00:00 5 5 \N +6890 104 30 2020 20 30:00:00 40:00:00 00:00:00 00:00:00 00:00:00 10:00:00 2020-05-11 \N 40:00:00 5 5 \N +6891 104 30 2020 21 30:00:00 40:00:00 00:00:00 00:00:00 00:00:00 10:00:00 2020-05-18 \N 40:00:00 5 5 \N +6892 104 30 2020 22 30:00:00 40:00:00 00:00:00 00:00:00 00:00:00 10:00:00 2020-05-25 \N 40:00:00 5 5 \N +6893 104 30 2020 23 30:00:00 40:00:00 00:00:00 00:00:00 00:00:00 10:00:00 2020-06-01 \N 40:00:00 5 5 \N +7092 114 31 2020 30 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-07-20 \N 40:00:00 6 6 \N +7093 114 31 2020 31 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-07-27 \N 40:00:00 6 6 \N +6903 138 30 2020 17 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-04-20 \N 40:00:00 6 6 \N +6904 138 30 2020 18 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-04-27 \N 40:00:00 6 6 \N +6905 138 30 2020 19 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-05-04 \N 40:00:00 6 6 \N +6906 138 30 2020 20 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-05-11 \N 40:00:00 6 6 \N +6907 138 30 2020 21 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-05-18 \N 40:00:00 6 6 \N +6908 138 30 2020 22 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-05-25 \N 40:00:00 6 6 \N +6909 138 30 2020 23 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-06-01 \N 40:00:00 6 6 \N +6910 138 30 2020 24 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-06-08 \N 40:00:00 6 6 \N +7069 143 30 2020 23 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-06-01 \N 40:00:00 6 6 \N +7070 143 30 2020 24 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-06-08 \N 40:00:00 6 6 \N +7104 135 31 2020 26 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-06-22 \N 40:00:00 6 6 \N +7105 135 31 2020 27 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-06-29 \N 40:00:00 6 6 \N +7106 135 31 2020 28 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-07-06 \N 40:00:00 6 6 \N +6927 102 30 2020 17 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-04-20 \N 40:00:00 6 6 \N +6928 102 30 2020 18 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-04-27 \N 40:00:00 6 6 \N +6929 102 30 2020 19 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-05-04 \N 40:00:00 6 6 \N +6930 102 30 2020 20 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-05-11 \N 40:00:00 6 6 \N +6931 102 30 2020 21 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-05-18 \N 40:00:00 6 6 \N +6932 102 30 2020 22 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-05-25 \N 40:00:00 6 6 \N +6933 102 30 2020 23 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-06-01 \N 40:00:00 6 6 \N +6934 102 30 2020 24 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-06-08 \N 40:00:00 6 6 \N +7087 114 31 2020 25 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-06-15 \N 40:00:00 6 6 \N +7130 103 31 2020 28 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-07-06 \N 40:00:00 6 6 \N +7133 103 31 2020 31 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-07-27 \N 40:00:00 6 6 \N +7134 103 31 2020 32 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-08-03 \N 40:00:00 6 6 \N +6948 118 30 2020 22 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-05-25 \N 40:00:00 6 6 \N +6949 118 30 2020 23 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-06-01 \N 40:00:00 6 6 \N +6950 118 30 2020 24 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-06-08 \N 40:00:00 6 6 \N +6951 133 30 2020 17 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-04-20 \N 40:00:00 6 6 \N +6952 133 30 2020 18 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-04-27 \N 40:00:00 6 6 \N +6953 133 30 2020 19 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-05-04 \N 40:00:00 6 6 \N +6954 133 30 2020 20 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-05-11 \N 40:00:00 6 6 \N +6955 133 30 2020 21 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-05-18 \N 40:00:00 6 6 \N +6956 133 30 2020 22 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-05-25 \N 40:00:00 6 6 \N +6957 133 30 2020 23 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-06-01 \N 40:00:00 6 6 \N +6958 133 30 2020 24 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-06-08 \N 40:00:00 6 6 \N +7131 103 31 2020 29 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-07-13 \N 40:00:00 6 6 \N +7132 103 31 2020 30 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-07-20 \N 40:00:00 6 6 \N +6967 128 30 2020 17 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-04-20 \N 40:00:00 6 6 \N +6968 128 30 2020 18 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-04-27 \N 40:00:00 6 6 \N +6969 128 30 2020 19 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-05-04 \N 40:00:00 6 6 \N +6970 128 30 2020 20 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-05-11 \N 40:00:00 6 6 \N +6971 128 30 2020 21 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-05-18 \N 40:00:00 6 6 \N +6972 128 30 2020 22 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-05-25 \N 40:00:00 6 6 \N +6973 128 30 2020 23 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-06-01 \N 40:00:00 6 6 \N +6974 128 30 2020 24 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-06-08 \N 40:00:00 6 6 \N +7109 135 31 2020 31 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-07-27 \N 40:00:00 6 6 \N +7110 135 31 2020 32 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-08-03 \N 40:00:00 6 6 \N +7152 125 31 2020 27 20:00:00 40:00:00 00:00:00 00:00:00 00:00:00 20:00:00 2020-06-29 \N 40:00:00 6 6 \N +6991 139 30 2020 17 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-04-20 \N 40:00:00 6 6 \N +6992 139 30 2020 18 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-04-27 \N 40:00:00 6 6 \N +6993 139 30 2020 19 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-05-04 \N 40:00:00 6 6 \N +6994 139 30 2020 20 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-05-11 \N 40:00:00 6 6 \N +6995 139 30 2020 21 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-05-18 \N 40:00:00 6 6 \N +6996 139 30 2020 22 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-05-25 \N 40:00:00 6 6 \N +6997 139 30 2020 23 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-06-01 \N 40:00:00 6 6 \N +6998 139 30 2020 24 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-06-08 \N 40:00:00 6 6 \N +7127 103 31 2020 25 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-06-15 \N 40:00:00 6 6 \N +7128 103 31 2020 26 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-06-22 \N 40:00:00 6 6 \N +7129 103 31 2020 27 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-06-29 \N 40:00:00 6 6 \N +7013 122 30 2020 23 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-06-01 \N 40:00:00 6 6 \N +7014 122 30 2020 24 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-06-08 \N 40:00:00 6 6 \N +7015 106 30 2020 17 12:30:00 40:00:00 00:00:00 00:00:00 00:00:00 27:30:00 2020-04-20 \N 40:00:00 4 3 \N +7016 106 30 2020 18 12:30:00 40:00:00 00:00:00 00:00:00 00:00:00 27:30:00 2020-04-27 \N 40:00:00 4 3 \N +7017 106 30 2020 19 12:30:00 40:00:00 00:00:00 00:00:00 00:00:00 27:30:00 2020-05-04 \N 40:00:00 4 3 \N +7018 106 30 2020 20 12:30:00 40:00:00 00:00:00 00:00:00 00:00:00 27:30:00 2020-05-11 \N 40:00:00 4 3 \N +7019 106 30 2020 21 12:30:00 40:00:00 00:00:00 00:00:00 00:00:00 27:30:00 2020-05-18 \N 40:00:00 4 3 \N +7020 106 30 2020 22 12:30:00 40:00:00 00:00:00 00:00:00 00:00:00 27:30:00 2020-05-25 \N 40:00:00 4 3 \N +7021 106 30 2020 23 12:30:00 40:00:00 00:00:00 00:00:00 00:00:00 27:30:00 2020-06-01 \N 40:00:00 4 3 \N +7022 106 30 2020 24 12:30:00 40:00:00 00:00:00 00:00:00 00:00:00 27:30:00 2020-06-08 \N 40:00:00 4 3 \N +7158 119 31 2020 25 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-06-15 \N 40:00:00 6 6 \N +7159 119 31 2020 26 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-06-22 \N 40:00:00 6 6 \N +7160 119 31 2020 27 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-06-29 \N 40:00:00 6 6 \N +7161 119 31 2020 28 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-07-06 \N 40:00:00 6 6 \N +7305 122 31 2020 25 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-06-15 \N 40:00:00 6 6 \N +7032 145 30 2020 18 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-04-27 \N 40:00:00 6 6 \N +7033 145 30 2020 19 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-05-04 \N 40:00:00 6 6 \N +7034 145 30 2020 20 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-05-11 \N 40:00:00 6 6 \N +7035 145 30 2020 21 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-05-18 \N 40:00:00 6 6 \N +7036 145 30 2020 22 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-05-25 \N 40:00:00 6 6 \N +7037 145 30 2020 23 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-06-01 \N 40:00:00 6 6 \N +7038 145 30 2020 24 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-06-08 \N 40:00:00 6 6 \N +7150 125 31 2020 25 20:00:00 40:00:00 00:00:00 00:00:00 00:00:00 20:00:00 2020-06-15 \N 40:00:00 6 6 \N +7151 125 31 2020 26 20:00:00 40:00:00 00:00:00 00:00:00 00:00:00 20:00:00 2020-06-22 \N 40:00:00 6 6 \N +7179 147 31 2020 30 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-07-20 \N 40:00:00 6 6 \N +7180 147 31 2020 31 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-07-27 \N 40:00:00 6 6 \N +7181 147 31 2020 32 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-08-03 \N 40:00:00 6 6 \N +7055 129 30 2020 17 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-04-20 \N 40:00:00 6 6 \N +7056 129 30 2020 18 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-04-27 \N 40:00:00 6 6 \N +7057 129 30 2020 19 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-05-04 \N 40:00:00 6 6 \N +7058 129 30 2020 20 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-05-11 \N 40:00:00 6 6 \N +7059 129 30 2020 21 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-05-18 \N 40:00:00 6 6 \N +7060 129 30 2020 22 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-05-25 \N 40:00:00 6 6 \N +7061 129 30 2020 23 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-06-01 \N 40:00:00 6 6 \N +7062 129 30 2020 24 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-06-08 \N 40:00:00 6 6 \N +7162 119 31 2020 29 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-07-13 \N 40:00:00 6 6 \N +7195 104 31 2020 30 30:00:00 40:00:00 00:00:00 00:00:00 00:00:00 10:00:00 2020-07-20 \N 40:00:00 5 5 \N +7196 104 31 2020 31 30:00:00 40:00:00 00:00:00 00:00:00 00:00:00 10:00:00 2020-07-27 \N 40:00:00 5 5 \N +7197 104 31 2020 32 30:00:00 40:00:00 00:00:00 00:00:00 00:00:00 10:00:00 2020-08-03 \N 40:00:00 5 5 \N +7078 146 31 2020 32 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-08-03 \N 40:00:00 6 6 \N +7079 115 31 2020 25 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-06-15 \N 40:00:00 6 6 \N +7080 115 31 2020 26 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-06-22 \N 40:00:00 6 6 \N +7081 115 31 2020 27 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-06-29 \N 40:00:00 6 6 \N +7082 115 31 2020 28 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-07-06 \N 40:00:00 6 6 \N +7083 115 31 2020 29 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-07-13 \N 40:00:00 6 6 \N +7084 115 31 2020 30 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-07-20 \N 40:00:00 6 6 \N +7085 115 31 2020 31 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-07-27 \N 40:00:00 6 6 \N +7086 115 31 2020 32 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-08-03 \N 40:00:00 6 6 \N +7217 134 31 2020 25 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-06-15 \N 40:00:00 6 6 \N +7218 134 31 2020 26 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-06-22 \N 40:00:00 6 6 \N +7221 134 31 2020 29 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-07-13 \N 40:00:00 6 6 \N +7222 134 31 2020 30 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-07-20 \N 40:00:00 6 6 \N +7306 122 31 2020 26 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-06-22 \N 40:00:00 6 6 \N +7307 122 31 2020 27 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-06-29 \N 40:00:00 6 6 \N +7308 122 31 2020 28 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-07-06 \N 40:00:00 6 6 \N +7309 122 31 2020 29 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-07-13 \N 40:00:00 6 6 \N +7097 108 31 2020 27 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-06-29 \N 40:00:00 6 6 \N +7098 108 31 2020 28 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-07-06 \N 40:00:00 6 6 \N +7099 108 31 2020 29 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-07-13 \N 40:00:00 6 6 \N +7100 108 31 2020 30 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-07-20 \N 40:00:00 6 6 \N +7101 108 31 2020 31 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-07-27 \N 40:00:00 6 6 \N +7102 108 31 2020 32 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-08-03 \N 40:00:00 6 6 \N +7103 135 31 2020 25 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-06-15 \N 40:00:00 6 6 \N +7198 151 31 2020 25 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-06-15 \N 40:00:00 6 6 \N +7199 151 31 2020 26 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-06-22 \N 40:00:00 6 6 \N +7200 151 31 2020 27 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-06-29 \N 40:00:00 6 6 \N +7201 151 31 2020 28 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-07-06 \N 40:00:00 6 6 \N +7119 149 31 2020 25 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-06-15 \N 40:00:00 6 6 \N +7120 149 31 2020 26 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-06-22 \N 40:00:00 6 6 \N +7121 149 31 2020 27 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-06-29 \N 40:00:00 6 6 \N +7122 149 31 2020 28 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-07-06 \N 40:00:00 6 6 \N +7123 149 31 2020 29 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-07-13 \N 40:00:00 6 6 \N +7124 149 31 2020 30 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-07-20 \N 40:00:00 6 6 \N +7125 149 31 2020 31 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-07-27 \N 40:00:00 6 6 \N +7126 149 31 2020 32 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-08-03 \N 40:00:00 6 6 \N +7219 134 31 2020 27 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-06-29 \N 40:00:00 6 6 \N +7220 134 31 2020 28 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-07-06 \N 40:00:00 6 6 \N +7142 117 31 2020 25 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-06-15 \N 40:00:00 6 6 \N +7143 117 31 2020 26 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-06-22 \N 40:00:00 6 6 \N +7144 117 31 2020 27 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-06-29 \N 40:00:00 6 6 \N +7145 117 31 2020 28 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-07-06 \N 40:00:00 6 6 \N +7146 117 31 2020 29 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-07-13 \N 40:00:00 6 6 \N +7147 117 31 2020 30 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-07-20 \N 40:00:00 6 6 \N +7148 117 31 2020 31 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-07-27 \N 40:00:00 6 6 \N +7149 117 31 2020 32 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-08-03 \N 40:00:00 6 6 \N +7238 109 31 2020 30 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-07-20 \N 40:00:00 6 6 \N +7239 109 31 2020 31 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-07-27 \N 40:00:00 6 6 \N +7240 109 31 2020 32 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-08-03 \N 40:00:00 6 6 \N +7163 119 31 2020 30 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-07-20 \N 40:00:00 6 6 \N +7164 119 31 2020 31 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-07-27 \N 40:00:00 6 6 \N +7165 119 31 2020 32 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-08-03 \N 40:00:00 6 6 \N +7166 113 31 2020 25 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-06-15 \N 40:00:00 6 6 \N +7167 113 31 2020 26 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-06-22 \N 40:00:00 6 6 \N +7168 113 31 2020 27 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-06-29 \N 40:00:00 6 6 \N +7169 113 31 2020 28 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-07-06 \N 40:00:00 6 6 \N +7170 113 31 2020 29 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-07-13 \N 40:00:00 6 6 \N +7171 113 31 2020 30 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-07-20 \N 40:00:00 6 6 \N +7172 113 31 2020 31 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-07-27 \N 40:00:00 6 6 \N +7173 113 31 2020 32 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-08-03 \N 40:00:00 6 6 \N +7257 111 31 2020 25 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-06-15 \N 40:00:00 6 6 \N +7258 111 31 2020 26 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-06-22 \N 40:00:00 6 6 \N +7310 122 31 2020 30 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-07-20 \N 40:00:00 6 6 \N +7311 122 31 2020 31 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-07-27 \N 40:00:00 6 6 \N +7312 122 31 2020 32 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-08-03 \N 40:00:00 6 6 \N +7325 110 31 2020 29 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-07-13 \N 40:00:00 6 6 \N +7182 131 31 2020 25 20:00:00 40:00:00 00:00:00 00:00:00 00:00:00 20:00:00 2020-06-15 \N 40:00:00 5 5 \N +7183 131 31 2020 26 20:00:00 40:00:00 00:00:00 00:00:00 00:00:00 20:00:00 2020-06-22 \N 40:00:00 5 5 \N +7184 131 31 2020 27 20:00:00 40:00:00 00:00:00 00:00:00 00:00:00 20:00:00 2020-06-29 \N 40:00:00 5 5 \N +7185 131 31 2020 28 20:00:00 40:00:00 00:00:00 00:00:00 00:00:00 20:00:00 2020-07-06 \N 40:00:00 5 5 \N +7186 131 31 2020 29 20:00:00 40:00:00 00:00:00 00:00:00 00:00:00 20:00:00 2020-07-13 \N 40:00:00 5 5 \N +7187 131 31 2020 30 20:00:00 40:00:00 00:00:00 00:00:00 00:00:00 20:00:00 2020-07-20 \N 40:00:00 5 5 \N +7188 131 31 2020 31 20:00:00 40:00:00 00:00:00 00:00:00 00:00:00 20:00:00 2020-07-27 \N 40:00:00 5 5 \N +7189 131 31 2020 32 20:00:00 40:00:00 00:00:00 00:00:00 00:00:00 20:00:00 2020-08-03 \N 40:00:00 5 5 \N +7259 111 31 2020 27 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-06-29 \N 40:00:00 6 6 \N +7265 128 31 2020 25 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-06-15 \N 40:00:00 6 6 \N +7266 128 31 2020 26 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-06-22 \N 40:00:00 6 6 \N +7206 138 31 2020 25 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-06-15 \N 40:00:00 6 6 \N +7207 138 31 2020 26 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-06-22 \N 40:00:00 6 6 \N +7208 138 31 2020 27 40:00:00 16:00:00 00:00:00 00:00:00 00:00:00 -24:00:00 2020-06-29 \N 16:00:00 2 6 \N +7209 105 31 2020 25 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-06-15 \N 40:00:00 6 6 \N +7210 105 31 2020 26 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-06-22 \N 40:00:00 6 6 \N +7211 105 31 2020 27 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-06-29 \N 40:00:00 6 6 \N +7212 105 31 2020 28 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-07-06 \N 40:00:00 6 6 \N +7213 105 31 2020 29 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-07-13 \N 40:00:00 6 6 \N +7214 105 31 2020 30 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-07-20 \N 40:00:00 6 6 \N +7215 105 31 2020 31 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-07-27 \N 40:00:00 6 6 \N +7216 105 31 2020 32 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-08-03 \N 40:00:00 6 6 \N +7281 136 31 2020 25 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-06-15 \N 40:00:00 6 6 \N +7282 136 31 2020 26 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-06-22 \N 40:00:00 6 6 \N +7283 136 31 2020 27 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-06-29 \N 40:00:00 6 6 \N +7326 110 31 2020 30 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-07-20 \N 40:00:00 6 6 \N +7225 102 31 2020 25 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-06-15 \N 40:00:00 6 6 \N +7226 102 31 2020 26 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-06-22 \N 40:00:00 6 6 \N +7227 102 31 2020 27 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-06-29 \N 40:00:00 6 6 \N +7228 102 31 2020 28 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-07-06 \N 40:00:00 6 6 \N +7229 102 31 2020 29 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-07-13 \N 40:00:00 6 6 \N +7230 102 31 2020 30 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-07-20 \N 40:00:00 6 6 \N +7231 102 31 2020 31 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-07-27 \N 40:00:00 6 6 \N +7232 102 31 2020 32 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-08-03 \N 40:00:00 6 6 \N +7284 136 31 2020 28 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-07-06 \N 40:00:00 6 6 \N +7285 136 31 2020 29 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-07-13 \N 40:00:00 6 6 \N +7286 136 31 2020 30 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-07-20 \N 40:00:00 6 6 \N +7287 136 31 2020 31 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-07-27 \N 40:00:00 6 6 \N +7249 133 31 2020 25 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-06-15 \N 40:00:00 6 6 \N +7250 133 31 2020 26 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-06-22 \N 40:00:00 6 6 \N +7251 133 31 2020 27 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-06-29 \N 40:00:00 6 6 \N +7252 133 31 2020 28 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-07-06 \N 40:00:00 6 6 \N +7253 133 31 2020 29 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-07-13 \N 40:00:00 6 6 \N +7254 133 31 2020 30 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-07-20 \N 40:00:00 6 6 \N +7255 133 31 2020 31 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-07-27 \N 40:00:00 6 6 \N +7256 133 31 2020 32 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-08-03 \N 40:00:00 6 6 \N +7301 141 31 2020 29 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-07-13 \N 40:00:00 6 6 \N +7302 141 31 2020 30 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-07-20 \N 40:00:00 6 6 \N +7303 141 31 2020 31 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-07-27 \N 40:00:00 6 6 \N +7304 141 31 2020 32 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-08-03 \N 40:00:00 6 6 \N +7327 110 31 2020 31 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-07-27 \N 40:00:00 6 6 \N +7328 110 31 2020 32 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-08-03 \N 40:00:00 6 6 \N +7329 145 31 2020 25 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-06-15 \N 40:00:00 6 6 \N +7330 145 31 2020 26 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-06-22 \N 40:00:00 6 6 \N +7271 128 31 2020 31 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-07-27 \N 40:00:00 6 6 \N +7272 128 31 2020 32 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-08-03 \N 40:00:00 6 6 \N +7273 142 31 2020 25 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-06-15 \N 40:00:00 6 6 \N +7274 142 31 2020 26 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-06-22 \N 40:00:00 6 6 \N +7275 142 31 2020 27 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-06-29 \N 40:00:00 6 6 \N +7276 142 31 2020 28 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-07-06 \N 40:00:00 6 6 \N +7277 142 31 2020 29 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-07-13 \N 40:00:00 6 6 \N +7278 142 31 2020 30 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-07-20 \N 40:00:00 6 6 \N +7279 142 31 2020 31 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-07-27 \N 40:00:00 6 6 \N +7280 142 31 2020 32 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-08-03 \N 40:00:00 6 6 \N +7290 139 31 2020 26 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-06-22 \N 40:00:00 6 6 \N +7291 139 31 2020 27 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-06-29 \N 40:00:00 6 6 \N +7292 139 31 2020 28 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-07-06 \N 40:00:00 6 6 \N +7293 139 31 2020 29 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-07-13 \N 40:00:00 6 6 \N +7294 139 31 2020 30 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-07-20 \N 40:00:00 6 6 \N +7295 139 31 2020 31 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-07-27 \N 40:00:00 6 6 \N +7296 139 31 2020 32 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-08-03 \N 40:00:00 6 6 \N +7321 110 31 2020 25 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-06-15 \N 40:00:00 6 6 \N +7322 110 31 2020 26 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-06-22 \N 40:00:00 6 6 \N +7323 110 31 2020 27 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-06-29 \N 40:00:00 6 6 \N +7324 110 31 2020 28 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-07-06 \N 40:00:00 6 6 \N +7313 106 31 2020 25 12:30:00 40:00:00 00:00:00 00:00:00 00:00:00 27:30:00 2020-06-15 \N 40:00:00 4 3 \N +7314 106 31 2020 26 12:30:00 40:00:00 00:00:00 00:00:00 00:00:00 27:30:00 2020-06-22 \N 40:00:00 4 3 \N +7315 106 31 2020 27 12:30:00 40:00:00 00:00:00 00:00:00 00:00:00 27:30:00 2020-06-29 \N 40:00:00 4 3 \N +7316 106 31 2020 28 12:30:00 40:00:00 00:00:00 00:00:00 00:00:00 27:30:00 2020-07-06 \N 40:00:00 4 3 \N +7317 106 31 2020 29 12:30:00 40:00:00 00:00:00 00:00:00 00:00:00 27:30:00 2020-07-13 \N 40:00:00 4 3 \N +7318 106 31 2020 30 12:30:00 40:00:00 00:00:00 00:00:00 00:00:00 27:30:00 2020-07-20 \N 40:00:00 4 3 \N +7319 106 31 2020 31 12:30:00 40:00:00 00:00:00 00:00:00 00:00:00 27:30:00 2020-07-27 \N 40:00:00 4 3 \N +7320 106 31 2020 32 12:30:00 40:00:00 00:00:00 00:00:00 00:00:00 27:30:00 2020-08-03 \N 40:00:00 4 3 \N +7331 145 31 2020 27 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-06-29 \N 40:00:00 6 6 \N +7332 145 31 2020 28 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-07-06 \N 40:00:00 6 6 \N +7333 145 31 2020 29 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-07-13 \N 40:00:00 6 6 \N +7334 145 31 2020 30 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-07-20 \N 40:00:00 6 6 \N +7335 145 31 2020 31 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-07-27 \N 40:00:00 6 6 \N +7336 145 31 2020 32 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-08-03 \N 40:00:00 6 6 \N +7337 148 31 2020 25 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-06-15 \N 40:00:00 6 6 \N +7338 148 31 2020 26 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-06-22 \N 40:00:00 6 6 \N +7339 148 31 2020 27 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-06-29 \N 40:00:00 6 6 \N +7340 148 31 2020 28 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-07-06 \N 40:00:00 6 6 \N +7341 148 31 2020 29 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-07-13 \N 40:00:00 6 6 \N +7342 148 31 2020 30 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-07-20 \N 40:00:00 6 6 \N +7343 148 31 2020 31 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-07-27 \N 40:00:00 6 6 \N +7344 148 31 2020 32 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-08-03 \N 40:00:00 6 6 \N +7345 130 31 2020 25 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-06-15 \N 40:00:00 6 6 \N +7346 130 31 2020 26 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-06-22 \N 40:00:00 6 6 \N +7347 130 31 2020 27 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-06-29 \N 40:00:00 6 6 \N +7348 130 31 2020 28 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-07-06 \N 40:00:00 6 6 \N +7349 130 31 2020 29 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-07-13 \N 40:00:00 6 6 \N +7350 130 31 2020 30 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-07-20 \N 40:00:00 6 6 \N +7351 130 31 2020 31 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-07-27 \N 40:00:00 6 6 \N +7352 130 31 2020 32 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-08-03 \N 40:00:00 6 6 \N +7353 129 31 2020 25 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-06-15 \N 40:00:00 6 6 \N +7354 129 31 2020 26 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-06-22 \N 40:00:00 6 6 \N +7355 129 31 2020 27 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-06-29 \N 40:00:00 6 6 \N +7356 129 31 2020 28 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-07-06 \N 40:00:00 6 6 \N +7357 129 31 2020 29 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-07-13 \N 40:00:00 6 6 \N +7358 129 31 2020 30 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-07-20 \N 40:00:00 6 6 \N +7359 129 31 2020 31 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-07-27 \N 40:00:00 6 6 \N +7360 129 31 2020 32 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-08-03 \N 40:00:00 6 6 \N +7361 143 31 2020 25 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-06-15 \N 40:00:00 6 6 \N +7362 143 31 2020 26 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-06-22 \N 40:00:00 6 6 \N +7363 143 31 2020 27 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-06-29 \N 40:00:00 6 6 \N +7364 143 31 2020 28 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-07-06 \N 40:00:00 6 6 \N +7365 143 31 2020 29 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-07-13 \N 40:00:00 6 6 \N +7366 143 31 2020 30 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-07-20 \N 40:00:00 6 6 \N +7367 143 31 2020 31 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-07-27 \N 40:00:00 6 6 \N +7368 143 31 2020 32 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-08-03 \N 40:00:00 6 6 \N \. @@ -11954,6 +16044,39 @@ COPY portanova.staffvacancy (id, id_staff, daydate, id_vacancytype, vacancyhours -- COPY portanova.vacancydays (id, daydate, vacancyname) FROM stdin; +1 2020-01-01 Nouvel An +2 2020-04-13 Lundi de Pâques +3 2020-05-01 Premier.05 +4 2020-05-09 Journée de l'Europe +5 2020-05-21 Ascension +6 2020-06-01 Lundi de Pentecôte +7 2020-06-23 Célébration de l'anniversaire du Grand-Duc +8 2020-08-15 Assomption +9 2020-11-01 Toussaint +10 2020-12-25 Noël +11 2020-12-26 Deuxième jour de Noël +12 2021-01-01 Nouvel An +13 2021-04-05 Lundi de Pâques +14 2021-05-01 Premier.05 +15 2021-05-09 Journée de l'Europe +16 2021-05-13 Ascension +17 2021-05-24 Lundi de Pentecôte +18 2021-06-23 Célébration de l'anniversaire du Grand-Duc +19 2021-08-15 Assomption +20 2021-11-01 Toussaint +21 2021-12-25 Noël +22 2021-12-26 Deuxième jour de Noël +23 2022-01-01 Nouvel An +24 2022-04-18 Lundi de Pâques +25 2022-05-01 Premier.05 +26 2022-05-09 Journée de l'Europe +27 2022-05-26 Ascension +28 2022-06-06 Lundi de Pentecôte +29 2022-06-23 Célébration de l'anniversaire du Grand-Duc +30 2022-08-15 Assomption +31 2022-11-01 Toussaint +32 2022-12-25 Noël +33 2022-12-26 Deuxième jour de Noël \. @@ -11972,92 +16095,47 @@ COPY portanova.vacancytypes (id, vacancyname, isworktime, isfreetime, color) FRO \. +-- +-- Data for Name: workplandays; Type: TABLE DATA; Schema: portanova; Owner: potlu_user +-- + +COPY portanova.workplandays (id, id_workplan, weekday, start1, end1, start2, end2, pause) FROM stdin; +1 6 2 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 +2 6 5 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 +3 1 1 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 +4 6 4 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 +5 1 4 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 +6 1 3 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 +7 6 3 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 +9 1 2 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 +10 1 5 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 +11 1 6 \N \N \N \N \N +12 1 7 \N \N \N \N \N +13 6 6 \N \N \N \N \N +14 6 7 \N \N \N \N \N +8 6 1 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 +\. + + -- -- Data for Name: workplans; Type: TABLE DATA; Schema: portanova; Owner: potlu_user -- -COPY portanova.workplans (id, workplan, mon_timestart1, mon_timeend1, mon_timestart2, mon_timeend2, mon_timepause, tue_timestart1, tue_timeend1, tue_timestart2, tue_timeend2, tue_timepause, wed_timestart1, wed_timeend1, wed_timestart2, wed_timeend2, wed_timepause, thu_timestart1, thu_timeend1, thu_timestart2, thu_timeend2, thu_timepause, fri_timestart1, fri_timeend1, fri_timestart2, fri_timeend2, fri_timepause, sat_timestart1, sat_timeend1, sat_timestart2, sat_timeend2, sat_timepause, sun_timestart1, sun_timeend1, sun_timestart2, sun_timeend2, sun_timepause) FROM stdin; -6 Cuisine 1 (40h) 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 \N \N \N \N \N \N \N \N \N \N -1 Standard 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 \N \N \N \N \N \N \N \N \N \N +COPY portanova.workplans (id, workplan, mon_timestart1, mon_timeend1, mon_timestart2, mon_timeend2, mon_timepause, tue_timestart1, tue_timeend1, tue_timestart2, tue_timeend2, tue_timepause, wed_timestart1, wed_timeend1, wed_timestart2, wed_timeend2, wed_timepause, thu_timestart1, thu_timeend1, thu_timestart2, thu_timeend2, thu_timepause, fri_timestart1, fri_timeend1, fri_timestart2, fri_timeend2, fri_timepause, sat_timestart1, sat_timeend1, sat_timestart2, sat_timeend2, sat_timepause, sun_timestart1, sun_timeend1, sun_timestart2, sun_timeend2, sun_timepause, weekhours, weekdays, weekdayslist) FROM stdin; +6 Cuisine 1 (40h) 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 \N \N \N \N \N \N \N \N \N \N \N \N \N +1 Standard 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 \N \N \N \N \N \N \N \N \N \N \N \N \N \. -- --- Data for Name: zzold_staffreportperiodsums; Type: TABLE DATA; Schema: portanova; Owner: potlu_user --- - -COPY portanova.zzold_staffreportperiodsums (id, id_staff, id_reportperiod, plannedhours, contracthours, trackedhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) FROM stdin; -18 135 18 328:00:00 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 \N -56 141 9 304:00:00 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 \N -57 142 9 320:00:00 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 \N -58 138 9 304:00:00 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 \N -2 141 10 320:00:00 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 \N -3 142 10 320:00:00 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 \N -19 133 18 328:00:00 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 \N -20 141 18 328:00:00 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 \N -21 142 18 328:00:00 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 \N -22 127 18 328:00:00 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 \N -23 136 18 328:00:00 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 \N -24 138 18 328:00:00 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 \N -25 139 18 328:00:00 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 \N -26 134 18 328:00:00 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 \N -27 131 18 328:00:00 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 \N -28 129 18 328:00:00 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 \N -29 128 18 328:00:00 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 \N -30 130 18 328:00:00 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 \N -31 143 18 328:00:00 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 \N -33 103 19 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 \N -35 125 19 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 \N -32 102 19 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 \N -34 104 19 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 \N -36 122 20 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 \N -38 117 20 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 \N -37 121 20 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 \N -39 115 20 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 \N -40 114 20 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 \N -41 119 20 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 \N -42 113 20 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 \N -43 146 20 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 \N -44 112 20 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 \N -45 108 20 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 \N -46 109 20 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 \N -47 147 20 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 \N -48 105 20 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 \N -49 118 20 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 \N -59 131 9 320:00:00 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 \N -60 135 9 320:00:00 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 \N -61 132 9 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 \N -62 133 9 320:00:00 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 \N -63 127 9 304:00:00 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 \N -64 136 9 320:00:00 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 \N -65 140 9 184:00:00 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 \N -66 139 9 304:00:00 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 \N -67 134 9 304:00:00 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 \N -68 129 9 320:00:00 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 \N -69 144 9 304:00:00 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 \N -70 128 9 24:00:00 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 \N -71 130 9 320:00:00 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 \N -72 143 9 304:00:00 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 \N -4 138 10 320:00:00 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 \N -5 131 10 320:00:00 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 \N -6 135 10 320:00:00 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 \N -7 133 10 320:00:00 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 \N -8 127 10 320:00:00 00:00:00 00:00:00 08:00:00 00:00:00 00:00:00 \N -9 136 10 320:00:00 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 \N -10 139 10 320:00:00 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 \N -11 134 10 320:00:00 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 \N -12 129 10 320:00:00 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 \N -13 144 10 218:00:00 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 \N -14 128 10 320:00:00 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 \N -15 130 10 320:00:00 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 \N -16 143 10 320:00:00 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 \N -102 151 19 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 \N -50 106 20 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 \N -51 111 20 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 \N -52 110 20 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 \N -53 145 20 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 \N -54 148 20 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 \N -55 149 20 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 \N +-- Data for Name: worktimes; Type: TABLE DATA; Schema: portanova; Owner: potlu_user +-- + +COPY portanova.worktimes (id, startdate, enddate, defaultdayhours, maxdayhours, defaultweekhours, maxweekhours, maxinterruptionhours, isdefault) FROM stdin; +1 \N \N 08:00:00 10:00:00 40:00:00 48:00:00 03:00:00 t +3 2020-12-23 2021-01-02 08:00:00 12:00:00 40:00:00 51:00:00 03:00:00 \N +4 2020-04-04 2020-04-19 08:00:00 12:00:00 40:00:00 51:00:00 03:00:00 \N +2 2020-06-01 2020-09-30 08:00:00 12:00:00 40:00:00 51:00:00 03:00:00 \N \. @@ -12137,7 +16215,12 @@ COPY public.sessions (id, idsession, id_user, user_agent, remote_addr, created) 160 pMEnznbOdbCeLbtKUwxgVbn2PNVzrF0HhvVHIWmL 1 Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.79 Safari/537.36 ::1 2019-12-20 12:48:16.464228 162 RRiSGkElRtLTCs3lkdYpQNZDnxKJ2wOJdXrJ7WVO 1 192.168.178.23 Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36 2019-12-24 10:59:50.644045 163 BlvRAYUeX78wr2OhPvWU5TrsNAmsooAQzWy0Ki4x 1 Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.88 Safari/537.36 2001:7e8:cc73:de00:f4f8:d2a7:1c8:2664 2019-12-24 11:00:44.808971 -278 R65RJQKl3zSYyByNGuQOk3U0xYgWYKdGG9nfPXrI 1 Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.130 Safari/537.36 ::1 2020-02-03 17:19:26.880576 +279 U9ksV3dLzsxjylgOx5WK5lPitIiU8nrSmBb8veJU 1 Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.130 Safari/537.36 Edg/79.0.309.71 ::1 2020-02-04 08:32:56.845626 +281 zdaOUZfTtPkLpOQYYPGqzViSKLTgtMWTPXxAMCj6 1 Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.130 Safari/537.36 ::1 2020-02-05 10:18:52.389333 +283 qCTq7PB9Ml539u6mdEoTGensJglVwc8MER3CxvC9 1 Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.87 Safari/537.36 ::1 2020-02-10 09:03:25.356532 +286 WeNOQHFuxR7KfY1DAK8nkMgCAc7JQ6EDaihRQNcd 1 Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.100 Safari/537.36 ::1 2020-02-14 18:56:34.030027 +299 UgTmbOQeAFpuAAPqP7CGP22KXtsWMglxn4JoIqt9 1 Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.116 Safari/537.36 ::1 2020-02-24 11:53:27.013773 +301 0947l9NXchB8bZJx7UKHuBpazWGacjx2is0trEgu 1 Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.122 Safari/537.36 ::1 2020-02-26 11:26:44.355966 \. @@ -12391,18 +16474,11 @@ SELECT pg_catalog.setval('demo.stations_id_seq', 1, false); SELECT pg_catalog.setval('demo.timetrackuser_id_seq', 5, true); --- --- Name: editlog_id_seq; Type: SEQUENCE SET; Schema: portanova; Owner: potlu_user --- - -SELECT pg_catalog.setval('portanova.editlog_id_seq', 1, false); - - -- -- Name: reportperiod_id_seq; Type: SEQUENCE SET; Schema: portanova; Owner: potlu_user -- -SELECT pg_catalog.setval('portanova.reportperiod_id_seq', 29, true); +SELECT pg_catalog.setval('portanova.reportperiod_id_seq', 31, true); -- @@ -12423,21 +16499,14 @@ SELECT pg_catalog.setval('portanova.staffgroups_id_seq', 8, true); -- Name: staffperiodbase_id_seq; Type: SEQUENCE SET; Schema: portanova; Owner: potlu_user -- -SELECT pg_catalog.setval('portanova.staffperiodbase_id_seq', 172, true); +SELECT pg_catalog.setval('portanova.staffperiodbase_id_seq', 173, true); -- -- Name: staffreportperiod_id_seq; Type: SEQUENCE SET; Schema: portanova; Owner: potlu_user -- -SELECT pg_catalog.setval('portanova.staffreportperiod_id_seq', 1151, true); - - --- --- Name: staffreportperiodsums_id_seq; Type: SEQUENCE SET; Schema: portanova; Owner: potlu_user --- - -SELECT pg_catalog.setval('portanova.staffreportperiodsums_id_seq', 126, true); +SELECT pg_catalog.setval('portanova.staffreportperiod_id_seq', 2525, true); -- @@ -12451,21 +16520,28 @@ SELECT pg_catalog.setval('portanova.staffvacancy_id_seq', 1, false); -- Name: staffweeksums_id_seq; Type: SEQUENCE SET; Schema: portanova; Owner: potlu_user -- -SELECT pg_catalog.setval('portanova.staffweeksums_id_seq', 6761, true); +SELECT pg_catalog.setval('portanova.staffweeksums_id_seq', 17525, true); -- -- Name: staffworkplan_id_seq; Type: SEQUENCE SET; Schema: portanova; Owner: potlu_user -- -SELECT pg_catalog.setval('portanova.staffworkplan_id_seq', 1083489, true); +SELECT pg_catalog.setval('portanova.staffworkplan_id_seq', 1158302, true); -- -- Name: vacancydays_id_seq; Type: SEQUENCE SET; Schema: portanova; Owner: potlu_user -- -SELECT pg_catalog.setval('portanova.vacancydays_id_seq', 1, false); +SELECT pg_catalog.setval('portanova.vacancydays_id_seq', 33, true); + + +-- +-- Name: workplandays_id_seq; Type: SEQUENCE SET; Schema: portanova; Owner: potlu_user +-- + +SELECT pg_catalog.setval('portanova.workplandays_id_seq', 14, true); -- @@ -12475,6 +16551,13 @@ SELECT pg_catalog.setval('portanova.vacancydays_id_seq', 1, false); SELECT pg_catalog.setval('portanova.workplans_id_seq', 6, true); +-- +-- Name: worktimes_id_seq; Type: SEQUENCE SET; Schema: portanova; Owner: potlu_user +-- + +SELECT pg_catalog.setval('portanova.worktimes_id_seq', 4, true); + + -- -- Name: worktypes_id_seq; Type: SEQUENCE SET; Schema: portanova; Owner: potlu_user -- @@ -12514,7 +16597,7 @@ SELECT pg_catalog.setval('public.mailtemplates_id_seq', 7, true); -- Name: sessions_id_seq; Type: SEQUENCE SET; Schema: public; Owner: potlu_user -- -SELECT pg_catalog.setval('public.sessions_id_seq', 278, true); +SELECT pg_catalog.setval('public.sessions_id_seq', 301, true); -- @@ -12741,14 +16824,6 @@ ALTER TABLE ONLY demo.timetrackuser ADD CONSTRAINT timetrackuser_pkey PRIMARY KEY (id); --- --- Name: editlog editlog_pkey; Type: CONSTRAINT; Schema: portanova; Owner: potlu_user --- - -ALTER TABLE ONLY portanova.editlog - ADD CONSTRAINT editlog_pkey PRIMARY KEY (id); - - -- -- Name: reportperiod reportperiod_pkey; Type: CONSTRAINT; Schema: portanova; Owner: potlu_user -- @@ -12789,14 +16864,6 @@ ALTER TABLE ONLY portanova.staffreportperiod ADD CONSTRAINT staffreportperiod_pkey PRIMARY KEY (id); --- --- Name: zzold_staffreportperiodsums staffreportperiodsums_pkey; Type: CONSTRAINT; Schema: portanova; Owner: potlu_user --- - -ALTER TABLE ONLY portanova.zzold_staffreportperiodsums - ADD CONSTRAINT staffreportperiodsums_pkey PRIMARY KEY (id); - - -- -- Name: staffvacancy staffvacancy_pkey; Type: CONSTRAINT; Schema: portanova; Owner: potlu_user -- @@ -12821,14 +16888,6 @@ ALTER TABLE ONLY portanova.staffreportperioddays ADD CONSTRAINT staffworkplan_pkey PRIMARY KEY (id); --- --- Name: zzold_staffreportperiodsums uniq_staffperiod_cal; Type: CONSTRAINT; Schema: portanova; Owner: potlu_user --- - -ALTER TABLE ONLY portanova.zzold_staffreportperiodsums - ADD CONSTRAINT uniq_staffperiod_cal UNIQUE (id_reportperiod, id_staff); - - -- -- Name: staffreportperiod uniq_staffreportperiod_cal; Type: CONSTRAINT; Schema: portanova; Owner: potlu_user -- @@ -12861,6 +16920,22 @@ ALTER TABLE ONLY portanova.vacancydays ADD CONSTRAINT vacancydays_pkey PRIMARY KEY (id); +-- +-- Name: workplandays workplandays_pkey; Type: CONSTRAINT; Schema: portanova; Owner: potlu_user +-- + +ALTER TABLE ONLY portanova.workplandays + ADD CONSTRAINT workplandays_pkey PRIMARY KEY (id); + + +-- +-- Name: workplandays workplandays_un; Type: CONSTRAINT; Schema: portanova; Owner: potlu_user +-- + +ALTER TABLE ONLY portanova.workplandays + ADD CONSTRAINT workplandays_un UNIQUE (id_workplan, weekday); + + -- -- Name: workplans workplans_pkey; Type: CONSTRAINT; Schema: portanova; Owner: potlu_user -- @@ -12869,6 +16944,14 @@ ALTER TABLE ONLY portanova.workplans ADD CONSTRAINT workplans_pkey PRIMARY KEY (id); +-- +-- Name: worktimes worktimes_pkey; Type: CONSTRAINT; Schema: portanova; Owner: potlu_user +-- + +ALTER TABLE ONLY portanova.worktimes + ADD CONSTRAINT worktimes_pkey PRIMARY KEY (id); + + -- -- Name: vacancytypes worktypes_pkey; Type: CONSTRAINT; Schema: portanova; Owner: potlu_user -- @@ -13118,120 +17201,27 @@ ALTER TABLE ONLY test2.worktypes -- --- Name: zzold_vw_staffworkplanlist _RETURN; Type: RULE; Schema: portanova; Owner: potlu_user +-- Name: vw_workplandayslist _RETURN; Type: RULE; Schema: portanova; Owner: potlu_user -- -CREATE OR REPLACE VIEW portanova.zzold_vw_staffworkplanlist AS - SELECT stw2.calweek, - stw2.calyear, - stw2.caldate AS weekstart, - date((stw2.caldate + '6 days'::interval)) AS weekend, - public.getdateslist(stw2.caldate, 7) AS dates, - stw2.id_staff, - stw2.staffname AS dspstaffname, - stw2.id_staffgroup, - (((((((((((((((((((''::text || ''::text) || ''::text) || ''::text) || ''::text) || ''::text) || '
'::text) || 'Semaine '::text) || stw2.calweek) || '
Contrat:'::text) || to_char(sws.contracthours, 'HH24:MI'::text)) || '
Plan:'::text) || to_char(sws.workhours, 'HH24:MI'::text)) || '
Congé:'::text) || to_char(sws.vacancyhours, 'HH24:MI'::text)) || '
Récup:'::text) || to_char(sws.recuperationhours, 'HH24:MI'::text)) || '
A récup:'::text) || to_char(sws.diffhours, 'HH24:MI'::text)) || '
'::text) AS dspweektotals, - sws.contracthours, - sws.workhours AS plannedhours, - sws.vacancyhours, - sws.recuperationhours, - sws.diffhours AS hoursdiff, - max( - CASE - WHEN (stw2.isodow = 1) THEN stw2.id - ELSE NULL::bigint - END) AS mon_id, - max( - CASE - WHEN (stw2.isodow = 1) THEN ((((((((''::text || ''::text) || (COALESCE((((''::text), ''::text) || COALESCE(((((''::text), ''::text))) || COALESCE(((''::text), ''::text)) || COALESCE(((''::text), ''::text)) || COALESCE(((((((((''::text), ''::text)) || '
'::text) || to_char((stw2.caldate)::timestamp with time zone, 'DD.MM.YYYY'::text)) || '
'::text || (to_char((stw2.timestart1)::interval, 'HH24:MI'::text) || ' - '::text)) || to_char((stw2.timeend1)::interval, 'HH24:MI'::text)) || '
'::text || to_char((stw2.timestart2)::interval, 'HH24:MI'::text)) || ' - '::text) || to_char((stw2.timeend2)::interval, 'HH24:MI'::text)) || '
Pause:'::text || to_char((stw2.timepause)::interval, 'HH24:MI'::text)) || '
Plan:'::text || to_char((stw2.totaltime)::interval, 'HH24:MI'::text)) || '
'::text) || stw2.vacancyname) || ':'::text) || to_char((stw2.vacancyhours)::interval, 'HH24:MI'::text)) || '
'::text) - ELSE NULL::text - END) AS dspmontimes, - max( - CASE - WHEN (stw2.isodow = 2) THEN stw2.id - ELSE NULL::bigint - END) AS tue_id, - max( - CASE - WHEN (stw2.isodow = 2) THEN ((((((((''::text || ''::text) || (COALESCE((((''::text), ''::text) || COALESCE(((((''::text), ''::text))) || COALESCE(((''::text), ''::text)) || COALESCE(((''::text), ''::text)) || COALESCE(((((((((''::text), ''::text)) || '
'::text) || to_char((date((stw2.caldate + '1 day'::interval)))::timestamp with time zone, 'DD.MM.YYYY'::text)) || '
'::text || (to_char((stw2.timestart1)::interval, 'HH24:MI'::text) || ' - '::text)) || to_char((stw2.timeend1)::interval, 'HH24:MI'::text)) || '
'::text || to_char((stw2.timestart2)::interval, 'HH24:MI'::text)) || ' - '::text) || to_char((stw2.timeend2)::interval, 'HH24:MI'::text)) || '
Pause:'::text || to_char((stw2.timepause)::interval, 'HH24:MI'::text)) || '
Plan:'::text || to_char((stw2.totaltime)::interval, 'HH24:MI'::text)) || '
'::text) || stw2.vacancyname) || ':'::text) || to_char((stw2.vacancyhours)::interval, 'HH24:MI'::text)) || '
'::text) - ELSE NULL::text - END) AS dsptuetimes, - max( - CASE - WHEN (stw2.isodow = 3) THEN stw2.id - ELSE NULL::bigint - END) AS wed_id, - max( - CASE - WHEN (stw2.isodow = 3) THEN ((((((((''::text || ''::text) || (COALESCE((((''::text), ''::text) || COALESCE(((((''::text), ''::text))) || COALESCE(((''::text), ''::text)) || COALESCE(((''::text), ''::text)) || COALESCE(((((((((''::text), ''::text)) || '
'::text) || to_char((date((stw2.caldate + '2 days'::interval)))::timestamp with time zone, 'DD.MM.YYYY'::text)) || '
'::text || (to_char((stw2.timestart1)::interval, 'HH24:MI'::text) || ' - '::text)) || to_char((stw2.timeend1)::interval, 'HH24:MI'::text)) || '
'::text || to_char((stw2.timestart2)::interval, 'HH24:MI'::text)) || ' - '::text) || to_char((stw2.timeend2)::interval, 'HH24:MI'::text)) || '
Pause:'::text || to_char((stw2.timepause)::interval, 'HH24:MI'::text)) || '
Plan:'::text || to_char((stw2.totaltime)::interval, 'HH24:MI'::text)) || '
'::text) || stw2.vacancyname) || ':'::text) || to_char((stw2.vacancyhours)::interval, 'HH24:MI'::text)) || '
'::text) - ELSE NULL::text - END) AS dspwedtimes, - max( - CASE - WHEN (stw2.isodow = 4) THEN stw2.id - ELSE NULL::bigint - END) AS thu_id, - max( - CASE - WHEN (stw2.isodow = 4) THEN ((((((((''::text || ''::text) || (COALESCE((((''::text), ''::text) || COALESCE(((((''::text), ''::text))) || COALESCE(((''::text), ''::text)) || COALESCE(((''::text), ''::text)) || COALESCE(((((((((''::text), ''::text)) || '
'::text) || to_char((date((stw2.caldate + '3 days'::interval)))::timestamp with time zone, 'DD.MM.YYYY'::text)) || '
'::text || (to_char((stw2.timestart1)::interval, 'HH24:MI'::text) || ' - '::text)) || to_char((stw2.timeend1)::interval, 'HH24:MI'::text)) || '
'::text || to_char((stw2.timestart2)::interval, 'HH24:MI'::text)) || ' - '::text) || to_char((stw2.timeend2)::interval, 'HH24:MI'::text)) || '
Pause:'::text || to_char((stw2.timepause)::interval, 'HH24:MI'::text)) || '
Plan:'::text || to_char((stw2.totaltime)::interval, 'HH24:MI'::text)) || '
'::text) || stw2.vacancyname) || ':'::text) || to_char((stw2.vacancyhours)::interval, 'HH24:MI'::text)) || '
'::text) - ELSE NULL::text - END) AS dspthutimes, - max( - CASE - WHEN (stw2.isodow = 5) THEN stw2.id - ELSE NULL::bigint - END) AS fri_id, - max( - CASE - WHEN (stw2.isodow = 5) THEN ((((((((''::text || ''::text) || (COALESCE((((''::text), ''::text) || COALESCE(((((''::text), ''::text))) || COALESCE(((''::text), ''::text)) || COALESCE(((''::text), ''::text)) || COALESCE(((((((((''::text), ''::text)) || '
'::text) || to_char((date((stw2.caldate + '4 days'::interval)))::timestamp with time zone, 'DD.MM.YYYY'::text)) || '
'::text || (to_char((stw2.timestart1)::interval, 'HH24:MI'::text) || ' - '::text)) || to_char((stw2.timeend1)::interval, 'HH24:MI'::text)) || '
'::text || to_char((stw2.timestart2)::interval, 'HH24:MI'::text)) || ' - '::text) || to_char((stw2.timeend2)::interval, 'HH24:MI'::text)) || '
Pause:'::text || to_char((stw2.timepause)::interval, 'HH24:MI'::text)) || '
Plan:'::text || to_char((stw2.totaltime)::interval, 'HH24:MI'::text)) || '
'::text) || stw2.vacancyname) || ':'::text) || to_char((stw2.vacancyhours)::interval, 'HH24:MI'::text)) || '
'::text) - ELSE NULL::text - END) AS dspfritimes, - max( - CASE - WHEN (stw2.isodow = 6) THEN stw2.id - ELSE NULL::bigint - END) AS sat_id, - max( - CASE - WHEN (stw2.isodow = 6) THEN (((((((((''::text || ''::text) || COALESCE(((((''::text), ''::text)) || COALESCE(((((''::text), ''::text)) || COALESCE(((''::text), ''::text)) || COALESCE(((''::text), ''::text)) || COALESCE(((((((((''::text), ''::text)) || '
'::text) || to_char((date((stw2.caldate + '5 days'::interval)))::timestamp with time zone, 'DD.MM.YYYY'::text)) || '
'::text || to_char((stw2.timestart1)::interval, 'HH24:MI'::text)) || ' - '::text) || to_char((stw2.timeend1)::interval, 'HH24:MI'::text)) || '
'::text || to_char((stw2.timestart2)::interval, 'HH24:MI'::text)) || ' - '::text) || to_char((stw2.timeend2)::interval, 'HH24:MI'::text)) || '
Pause:'::text || to_char((stw2.timepause)::interval, 'HH24:MI'::text)) || '
Plan:'::text || to_char((stw2.totaltime)::interval, 'HH24:MI'::text)) || '
'::text) || stw2.vacancyname) || ':'::text) || to_char((stw2.vacancyhours)::interval, 'HH24:MI'::text)) || '
'::text) - ELSE NULL::text - END) AS dspsattimes, - max( - CASE - WHEN (stw2.isodow = 7) THEN stw2.id - ELSE NULL::bigint - END) AS sun_id, - max( - CASE - WHEN (stw2.isodow = 7) THEN (((((((((''::text || ''::text) || COALESCE((((''::text), ''::text)) || COALESCE(((((''::text), ''::text)) || COALESCE(((''::text), ''::text)) || COALESCE(((''::text), ''::text)) || COALESCE(((((((((''::text), ''::text)) || '
'::text) || to_char((date((stw2.caldate + '6 days'::interval)))::timestamp with time zone, 'DD.MM.YYYY'::text)) || '
'::text || (to_char((stw2.timestart1)::interval, 'HH24:MI'::text) || ' - '::text)) || to_char((stw2.timeend1)::interval, 'HH24:MI'::text)) || '
'::text || to_char((stw2.timestart2)::interval, 'HH24:MI'::text)) || ' - '::text) || to_char((stw2.timeend2)::interval, 'HH24:MI'::text)) || '
Pause:'::text || to_char((stw2.timepause)::interval, 'HH24:MI'::text)) || '
Plan:'::text || to_char((stw2.totaltime)::interval, 'HH24:MI'::text)) || '
'::text) || stw2.vacancyname) || ':'::text) || to_char((stw2.vacancyhours)::interval, 'HH24:MI'::text)) || '
'::text) - ELSE NULL::text - END) AS dspsuntimes - FROM (( SELECT date_part('isoyear'::text, stw.daydate) AS calyear, - date_part('week'::text, stw.daydate) AS calweek, - (date_trunc('week'::text, (stw.daydate)::timestamp with time zone))::date AS caldate, - (date_part('isodow'::text, stw.daydate))::integer AS isodow, - ((st.surname || ' '::text) || st.prename) AS staffname, - stw.daydate, - stw.id, - stw.id_staff, - stw.timestart1, - stw.timeend1, - stw.timestart2, - stw.timeend2, - stw.timepause, - stw.dayhours AS totaltime, - stw.vacancyhours, - stw.id_vacancytype, - stw.id_staffgroup, - stw.daytype, - vt.color, - vt.vacancyname - FROM ((portanova.staffreportperioddays stw - LEFT JOIN portanova.staff st ON ((stw.id_staff = st.id))) - LEFT JOIN portanova.vacancytypes vt ON ((stw.id_vacancytype = vt.id)))) stw2 - LEFT JOIN portanova.staffreportperiodweeks sws ON (((sws.id_staff = stw2.id_staff) AND (sws.calweek = stw2.calweek) AND ((sws.calyear)::double precision = stw2.calyear)))) - GROUP BY stw2.calweek, stw2.calyear, stw2.caldate, stw2.id_staff, stw2.staffname, sws.id, stw2.id_staffgroup - ORDER BY stw2.staffname, stw2.id_staff, stw2.calweek; +CREATE OR REPLACE VIEW portanova.vw_workplandayslist AS + SELECT (((wp.workplan || ' - Salarié(s): '::text) || count(DISTINCT sc.id_staff)) || ''::text) AS workplan, + to_char(wp.weekhours, 'HH24:MI'::text) AS weekhours, + wpd.id, + wpd.id_workplan, + wpd.weekday, + to_char((wpd.start1)::interval, 'HH24:MI'::text) AS start1, + to_char((wpd.end1)::interval, 'HH24:MI'::text) AS end1, + to_char((wpd.start2)::interval, 'HH24:MI'::text) AS start2, + to_char((wpd.end2)::interval, 'HH24:MI'::text) AS end2, + to_char((wpd.pause)::interval, 'HH24:MI'::text) AS pause, + to_char((((wpd.end1 - wpd.start1) + COALESCE((wpd.end2 - wpd.start2), '00:00:00'::interval)) - COALESCE((wpd.pause)::interval, '00:00:00'::interval)), 'HH24:MI'::text) AS dayhours, + count(DISTINCT sc.id_staff) AS staffcount + FROM ((portanova.workplandays wpd + LEFT JOIN portanova.workplans wp ON ((wpd.id_workplan = wp.id))) + LEFT JOIN portanova.staffcontract sc ON ((sc.id_workplan = wp.id))) + GROUP BY wpd.id, wp.id + ORDER BY wp.workplan, wpd.weekday; -- @@ -13338,6 +17328,14 @@ ALTER TABLE ONLY portanova.staffreportperioddays ADD CONSTRAINT staffworkplan_fk_1 FOREIGN KEY (id_staffgroup) REFERENCES portanova.staffgroups(id); +-- +-- Name: workplandays workplandays_fk; Type: FK CONSTRAINT; Schema: portanova; Owner: potlu_user +-- + +ALTER TABLE ONLY portanova.workplandays + ADD CONSTRAINT workplandays_fk FOREIGN KEY (id_workplan) REFERENCES portanova.workplans(id); + + -- -- Name: apps apps_usergroups_fk; Type: FK CONSTRAINT; Schema: public; Owner: potlu_user -- diff --git a/dev/db/potlu_db.pg.schema.sql b/dev/db/potlu_db.pg.schema.sql index 8785c503..0748b891 100644 --- a/dev/db/potlu_db.pg.schema.sql +++ b/dev/db/potlu_db.pg.schema.sql @@ -77,7 +77,7 @@ $$; -- Name: getperiod_staffcontract(integer); Type: FUNCTION; Schema: portanova; Owner: - -- -CREATE FUNCTION portanova.getperiod_staffcontract(pid integer) RETURNS TABLE(id integer, id_staff integer, startdate date, enddate date, weekhours interval, weekdays integer, id_workplan integer) +CREATE FUNCTION portanova.getperiod_staffcontract(pid integer) RETURNS TABLE(id integer, id_staff integer, startdate date, enddate date, weekhours interval, weekdays integer, id_workplan integer, defaultfreedays json) LANGUAGE plpgsql AS $$ declare @@ -86,11 +86,11 @@ CREATE FUNCTION portanova.getperiod_staffcontract(pid integer) RETURNS TABLE(id begin select prd.startdate as prdstart,prd.enddate as prdend into pstart,pend from portanova.reportperiod prd where prd.id=pid; return QUERY -select sc.id,sc.id_staff, -case when sc.startdate < pstart then pstart else sc.startdate end as startdate, +select sc.id,sc.id_staff, +case when sc.startdate < pstart then pstart else sc.startdate end as startdate, case when sc.enddate is null then pend when sc.enddate > pend then pend else sc.enddate end as enddate, -sc.weekhours,sc.weekdays,sc.id_workplan -from portanova.staffcontract sc where sc.startdate<= pend and (sc.enddate is null or sc.enddate >= pstart) +sc.weekhours,sc.weekdays,sc.id_workplan,sc.defaultfreedays +from portanova.staffcontract sc where sc.startdate<= pend and (sc.enddate is null or sc.enddate >= pstart) order by sc.id_staff,sc.startdate,sc.enddate; END; $$; @@ -136,6 +136,25 @@ end; $$; +-- +-- Name: refresh_periods(); Type: FUNCTION; Schema: portanova; Owner: - +-- + +CREATE FUNCTION portanova.refresh_periods() RETURNS boolean + LANGUAGE plpgsql + AS $$ + declare + prds record; + begin + for prds in select id from portanova.reportperiod order by startdate,enddate + loop + perform portanova.update_all_staff_in_period(prds.id); + end loop; + RETURN true; + END; +$$; + + -- -- Name: set_periodday_sums(bigint); Type: FUNCTION; Schema: portanova; Owner: - -- @@ -235,23 +254,37 @@ CREATE FUNCTION portanova.set_staffperiodweek_sums(pid_reportperiod integer, pid declare wkcon record; tmpcontrhours interval; + freedays int4 := 0; begin -- INSERT Contract data into Week -for wkcon in select srpw.id,psc.weekhours,psc.weekdays,srpw.contractdays,srpw.caldays,srpw.diffhours,srpw.contracthours,srpw.totalhours +for wkcon in select srpw.id,srpw.calweek,srpw.weekstart,srpw.calyear,rp.startdate as periodstart,psc.startdate,rp.enddate as periodend,psc.enddate,psc.weekhours,psc.weekdays,srpw.contractdays,srpw.caldays,srpw.diffhours,srpw.contracthours,srpw.totalhours,psc.defaultfreedays from portanova.staffreportperiodweeks srpw -left join (select xa.id_staff,xa.startdate,xa.enddate,xa.weekhours,xa.weekdays from portanova.getperiod_staffcontract(pid_reportperiod) xa where xa.id_staff=pid_staff) psc +left join (select xa.id_staff,xa.startdate,xa.enddate,xa.weekhours,xa.weekdays,xa.defaultfreedays from portanova.getperiod_staffcontract(pid_reportperiod) xa where xa.id_staff=pid_staff) psc on (srpw.weekstart between date_trunc('week',psc.startdate) and psc.enddate) +left join portanova.reportperiod rp on (srpw.id_reportperiod =rp.id) where srpw.id_reportperiod=pid_reportperiod and srpw.id_staff=pid_staff loop --raise notice 'id=%',wkcon; - --raise notice 'id=%',wkcon.contractdays; + if wkcon.defaultfreedays is not null then + freedays = json_array_length(wkcon.defaultfreedays); + end if; wkcon.contracthours=wkcon.weekhours; wkcon.contractdays=wkcon.weekdays; - if wkcon.caldays < wkcon.contractdays then - wkcon.contractdays = wkcon.caldays; - wkcon.contracthours = (wkcon.weekhours/wkcon.weekdays) * wkcon.contractdays; + if wkcon.calweek= date_part('week',wkcon.periodstart)::int4 and wkcon.calyear= date_part('isoyear',wkcon.periodstart)::int4 then + wkcon.contracthours = wkcon.contracthours - ((wkcon.weekhours/wkcon.weekdays) * (wkcon.startdate-wkcon.periodstart)::int4); end if; + --if wkcon.startdate > wkcon.periodstart then + -- wkcon.contractdays = wkcon.contractdays-(wkcon.startdate-wkcon.periodstart)::int4; + -- wkcon.contracthours = (wkcon.weekhours/wkcon.weekdays) * wkcon.contractdays; + --end if; + --if wkcon.enddate < wkcon.periodend then + -- wkcon.contractdays = wkcon.contractdays-(wkcon.periodend-wkcon.enddate)::int4; + -- wkcon.contracthours = (wkcon.weekhours/wkcon.weekdays) * wkcon.contractdays; + --end if; + + wkcon.diffhours = wkcon.totalhours-wkcon.contracthours; + raise notice 'contractdays: % contracthours: % totalhours: % diffhours: %',wkcon.contractdays,wkcon.contracthours,wkcon.totalhours,wkcon.diffhours; --raise notice 'id=% cdays=% chours=% diffhours=%',wkcon.id,wkcon.contractdays,wkcon.contracthours,wkcon.diffhours; update portanova.staffreportperiodweeks set contracthours=wkcon.contracthours,contractdays=wkcon.contractdays,diffhours=wkcon.diffhours where id=wkcon.id; @@ -276,8 +309,10 @@ declare cdate date; edate date; wday text; + wdaynum int4; wdayplan record; cid_staffworkplan int8; + cdaytime interval; begin select * into prd from portanova.reportperiod where id= pid_period; for cont in select * from portanova.getperiod_staffcontract(pid_period) where id_staff=pid_staff @@ -285,16 +320,24 @@ begin cdate := cont.startdate; while cdate <= cont.enddate loop if cdate between prd.startdate and prd.enddate then + wdaynum = date_part('isodow',cdate)::INT4; + cdaytime := null; + + if position('"' || wdaynum || '"' in cont.defaultfreedays::text) = 0 then + cdaytime := cont.weekhours/cont.weekdays; + end if; + raise notice 'wday % => % => %',wdaynum,position('"' || wdaynum || '"' in cont.defaultfreedays::text),cdaytime; if (cont.id_workplan is not null) then wday := substr(to_char(cdate,'day'),1,3); execute 'select ' || wday || '_timestart1 as ts1,' || wday || '_timeend1 as te1,' || wday || '_timestart2 as ts2,' || wday ||'_timeend2 as te2,'|| wday ||'_timepause as tp from portanova.workplans where id=' || cont.id_workplan || ';' into wdayplan; - insert into portanova.staffreportperioddays (id_staff,daydate,id_reportperiod,timestart1,timeend1,timestart2,timeend2,timepause,contracthours) - values (pid_staff,cdate,pid_period,wdayplan.ts1,wdayplan.te1,wdayplan.ts2,wdayplan.te2,wdayplan.tp,cont.weekhours/cont.weekdays) - on conflict on constraint uniq_staffworplan_staffday do update set contracthours=cont.weekhours/cont.weekdays + + insert into portanova.staffreportperioddays (id_staff,daydate,id_reportperiod,timestart1,timeend1,timestart2,timeend2,timepause,contracthours,wdcontracthours) + values (pid_staff,cdate,pid_period,wdayplan.ts1,wdayplan.te1,wdayplan.ts2,wdayplan.te2,wdayplan.tp,cont.weekhours/cont.weekdays,cdaytime) + on conflict on constraint uniq_staffworplan_staffday do update set contracthours=cont.weekhours/cont.weekdays,wdcontracthours=cdaytime returning id into cid_staffworkplan; else - insert into portanova.staffreportperioddays (id_staff,daydate,id_reportperiod,contracthours,id_staffgrou) values ( pid_staff , cdate , pid_period,cont.weekhours/cont.weekdays) - on conflict on constraint uniq_staffworplan_staffday do update set contracthours=cont.weekhours/cont.weekdays + insert into portanova.staffreportperioddays (id_staff,daydate,id_reportperiod,contracthours,wdcontracthours) values ( pid_staff , cdate , pid_period,cont.weekhours/cont.weekdays,cdaytime) + on conflict on constraint uniq_staffworplan_staffday do update set contracthours=cont.weekhours/cont.weekdays,wdcontracthours=cdaytime returning id into cid_staffworkplan; end if; end if; @@ -326,7 +369,8 @@ coalesce(sum(workhours),'00:00:00') as workhours , coalesce(sum(vacancyhours),'00:00:00') as vacancyhours , coalesce(sum(recuperationhours) ,'00:00:00' ) as recuperationhours , coalesce(sum(dayhours),'00:00:00') as totalhours, -count(id) as caldays +coalesce(sum(contracthours),'00:00:00') as contracthours, +count(wdcontracthours) as caldays from ( select swp.id,swp.id_reportperiod,swp.id_staff, date_part('isoyear',swp.daydate) as calyear, @@ -336,14 +380,15 @@ swp.workhours, swp.contracthours, swp.recuperationhours, swp.dayhours, -swp.vacancyhours +swp.vacancyhours, +swp.wdcontracthours from portanova.staffreportperioddays swp where swp.id_reportperiod= pid_reportperiod and swp.id_staff=pid_staff) wkwp group by id_staff,id_reportperiod,calyear,calweek,weekstart loop --raise notice 'id_staff: % id_period: % calweek: % calyear: %',pid_staff,pid_reportperiod,wkpd.calweek,wkpd.calyear; - insert into portanova.staffreportperiodweeks (id_staff, id_reportperiod, calyear, calweek, workhours,vacancyhours, recuperationhours, weekstart,totalhours,caldays) - VALUES(wkpd.id_staff, wkpd.id_reportperiod, wkpd.calyear, wkpd.calweek, wkpd.workhours, wkpd.vacancyhours, wkpd.recuperationhours, wkpd.weekstart,wkpd.totalhours,wkpd.caldays) - on conflict on constraint uniq_staffweekplan_cal do update set workhours=wkpd.workhours, vacancyhours=wkpd.vacancyhours, recuperationhours=wkpd.recuperationhours,totalhours=wkpd.totalhours,caldays=wkpd.caldays; + insert into portanova.staffreportperiodweeks (id_staff, id_reportperiod, calyear, calweek, workhours,vacancyhours, recuperationhours, weekstart,totalhours,caldays,contracthours,diffhours) + VALUES(wkpd.id_staff, wkpd.id_reportperiod, wkpd.calyear, wkpd.calweek, wkpd.workhours, wkpd.vacancyhours, wkpd.recuperationhours, wkpd.weekstart,wkpd.totalhours,wkpd.caldays,wkpd.contracthours,wkpd.contracthours-wkpd.totalhours) + on conflict on constraint uniq_staffweekplan_cal do update set workhours=wkpd.workhours, vacancyhours=wkpd.vacancyhours, recuperationhours=wkpd.recuperationhours,totalhours=wkpd.totalhours,caldays=wkpd.caldays,contracthours=wkpd.contracthours,diffhours=wkpd.contracthours-wkpd.totalhours; end loop; perform portanova.set_staffperiodweek_sums(pid_reportperiod, pid_staff); @@ -552,25 +597,6 @@ end; $$; --- --- Name: zzold_refreshperiods(); Type: FUNCTION; Schema: portanova; Owner: - --- - -CREATE FUNCTION portanova.zzold_refreshperiods() RETURNS boolean - LANGUAGE plpgsql - AS $$ - declare - prds record; - begin - for prds in select id from portanova.reportperiod where isvalidated != true - loop - perform portanova.onchange_reportperiod(prds.id); - end loop; - RETURN false; - END; -$$; - - -- -- Name: zzold_set_staffperiod(integer); Type: FUNCTION; Schema: portanova; Owner: - -- @@ -1099,39 +1125,6 @@ CREATE SEQUENCE demo.timetrackuser_id_seq ALTER SEQUENCE demo.timetrackuser_id_seq OWNED BY demo.timetrackuser.id; --- --- Name: editlog; Type: TABLE; Schema: portanova; Owner: - --- - -CREATE TABLE portanova.editlog ( - id bigint NOT NULL, - id_user integer, - tblname text, - tblfields json, - modified timestamp without time zone DEFAULT CURRENT_TIMESTAMP, - created timestamp without time zone DEFAULT CURRENT_TIMESTAMP -); - - --- --- Name: editlog_id_seq; Type: SEQUENCE; Schema: portanova; Owner: - --- - -CREATE SEQUENCE portanova.editlog_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; - - --- --- Name: editlog_id_seq; Type: SEQUENCE OWNED BY; Schema: portanova; Owner: - --- - -ALTER SEQUENCE portanova.editlog_id_seq OWNED BY portanova.editlog.id; - - -- -- Name: reportperiod; Type: TABLE; Schema: portanova; Owner: - -- @@ -1219,7 +1212,8 @@ CREATE TABLE portanova.staffcontract ( weekdays integer, enddate date, id_workplan integer, - weekhours interval + weekhours interval, + defaultfreedays json ); @@ -1290,7 +1284,8 @@ CREATE TABLE portanova.staffreportperiod ( vacancyhours interval, recuperationhours interval, hoursdiff interval, - hoursrestbefore interval + payedhours interval, + diffhourspayed interval ); @@ -1338,48 +1333,11 @@ CREATE TABLE portanova.staffreportperioddays ( id_reportperiod integer, dayhours time without time zone, id_recuperationtype integer, - interruptionhours time without time zone -); - - --- --- Name: zzold_staffreportperiodsums; Type: TABLE; Schema: portanova; Owner: - --- - -CREATE TABLE portanova.zzold_staffreportperiodsums ( - id integer NOT NULL, - id_staff integer, - id_reportperiod integer, - plannedhours interval DEFAULT '00:00:00'::interval, - contracthours interval DEFAULT '00:00:00'::interval, - trackedhours interval DEFAULT '00:00:00'::interval, - vacancyhours interval DEFAULT '00:00:00'::interval, - recuperationhours interval DEFAULT '00:00:00'::interval, - hoursdiff interval DEFAULT '00:00:00'::interval, - hoursrestbefore interval + interruptionhours time without time zone, + wdcontracthours time without time zone ); --- --- Name: staffreportperiodsums_id_seq; Type: SEQUENCE; Schema: portanova; Owner: - --- - -CREATE SEQUENCE portanova.staffreportperiodsums_id_seq - AS integer - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; - - --- --- Name: staffreportperiodsums_id_seq; Type: SEQUENCE OWNED BY; Schema: portanova; Owner: - --- - -ALTER SEQUENCE portanova.staffreportperiodsums_id_seq OWNED BY portanova.zzold_staffreportperiodsums.id; - - -- -- Name: staffreportperiodweeks; Type: TABLE; Schema: portanova; Owner: - -- @@ -1560,7 +1518,8 @@ CREATE VIEW portanova.vw_staffcontractdata AS staffcontract.id_staffgroup, staffcontract.enddate, staffcontract.id AS id_staffcontract, - staffcontract.id_workplan + staffcontract.id_workplan, + staffcontract.defaultfreedays FROM portanova.staffcontract; @@ -1605,7 +1564,10 @@ CREATE TABLE portanova.workplans ( sun_timeend1 time without time zone, sun_timestart2 time without time zone, sun_timeend2 time without time zone, - sun_timepause time without time zone + sun_timepause time without time zone, + weekhours interval, + weekdays integer, + weekdayslist json ); @@ -1624,10 +1586,16 @@ CREATE VIEW portanova.vw_staffcontractlist AS sg.groupcolor, sc.enddate, sc.id_workplan, + ddf.defaultfreedays, wp.workplan - FROM ((portanova.staffcontract sc + FROM (((portanova.staffcontract sc LEFT JOIN portanova.staffgroups sg ON ((sc.id_staffgroup = sg.id))) LEFT JOIN portanova.workplans wp ON ((sc.id_workplan = wp.id))) + LEFT JOIN ( SELECT dfd.id, + replace(replace(replace(replace(replace(replace(replace(dfd.defaultfreedays, '7'::text, 'di'::text), '6'::text, 'sa'::text), '5'::text, 've'::text), '4'::text, 'je'::text), '3'::text, 'me'::text), '2'::text, 'ma'::text), '1'::text, 'lu'::text) AS defaultfreedays + FROM ( SELECT staffcontract.id, + json_array_elements_text(staffcontract.defaultfreedays) AS defaultfreedays + FROM portanova.staffcontract) dfd) ddf ON ((sc.id = ddf.id))) ORDER BY sc.startdate DESC, sc.enddate DESC; @@ -1672,7 +1640,6 @@ CREATE VIEW portanova.vw_staffgroupsdata AS CREATE VIEW portanova.vw_staffgroupslist AS SELECT staffgroups.id, staffgroups.groupname, - staffgroups.groupcolor, staffgroups.isdefault FROM portanova.staffgroups; @@ -1689,920 +1656,109 @@ CREATE VIEW portanova.vw_stafflist AS st.job, st.birthdate, ((st.surname || ' '::text) || st.prename) AS dspname, - stg.groupname - FROM (portanova.staff st + stg.groupname, + stentry.entrydate + FROM ((portanova.staff st LEFT JOIN portanova.staffgroups stg ON ((st.id_staffgroup = stg.id))) + LEFT JOIN ( SELECT staffcontract.id_staff, + min(staffcontract.startdate) AS entrydate + FROM portanova.staffcontract + GROUP BY staffcontract.id_staff) stentry ON ((st.id = stentry.id_staff))) ORDER BY st.surname, st.prename; -- --- Name: vw_staffplanned_dayweektotals; Type: VIEW; Schema: portanova; Owner: - +-- Name: vw_staffreportperioddays; Type: VIEW; Schema: portanova; Owner: - -- -CREATE VIEW portanova.vw_staffplanned_dayweektotals AS - SELECT stw2.calweek, - stw2.caldate AS dates, - stw2.id_staff, - max( - CASE - WHEN (stw2.isodow = (1)::double precision) THEN stw2.id - ELSE NULL::bigint - END) AS mon_id, - max( - CASE - WHEN (stw2.isodow = (1)::double precision) THEN to_char((stw2.timestart1)::interval, 'HH24:MI'::text) - ELSE NULL::text - END) AS mon_start1, - max( - CASE - WHEN (stw2.isodow = (1)::double precision) THEN to_char((stw2.timeend1)::interval, 'HH24:MI'::text) - ELSE NULL::text - END) AS mon_end1, - max( - CASE - WHEN (stw2.isodow = (1)::double precision) THEN to_char((stw2.timestart2)::interval, 'HH24:MI'::text) - ELSE NULL::text - END) AS mon_start2, - max( - CASE - WHEN (stw2.isodow = (1)::double precision) THEN to_char((stw2.timeend2)::interval, 'HH24:MI'::text) - ELSE NULL::text - END) AS mon_end2, - max( - CASE - WHEN (stw2.isodow = (1)::double precision) THEN to_char((stw2.timepause)::interval, 'HH24:MI'::text) - ELSE NULL::text - END) AS mon_pause, - to_char(max( - CASE - WHEN (stw2.isodow = (1)::double precision) THEN ((stw2.time1 + stw2.time2) - (stw2.timepause)::interval) - ELSE NULL::interval - END), 'HH24:MI'::text) AS mon_timetotal, - max( - CASE - WHEN (stw2.isodow = (2)::double precision) THEN stw2.id - ELSE NULL::bigint - END) AS tue_id, - max( - CASE - WHEN (stw2.isodow = (2)::double precision) THEN to_char((stw2.timestart1)::interval, 'HH24:MI'::text) - ELSE NULL::text - END) AS tue_start1, - max( - CASE - WHEN (stw2.isodow = (2)::double precision) THEN to_char((stw2.timeend1)::interval, 'HH24:MI'::text) - ELSE NULL::text - END) AS tue_end1, - max( - CASE - WHEN (stw2.isodow = (2)::double precision) THEN to_char((stw2.timestart2)::interval, 'HH24:MI'::text) - ELSE NULL::text - END) AS tue_start2, - max( - CASE - WHEN (stw2.isodow = (2)::double precision) THEN to_char((stw2.timeend2)::interval, 'HH24:MI'::text) - ELSE NULL::text - END) AS tue_end2, - max( - CASE - WHEN (stw2.isodow = (2)::double precision) THEN to_char((stw2.timepause)::interval, 'HH24:MI'::text) - ELSE NULL::text - END) AS tue_pause, - to_char(max( - CASE - WHEN (stw2.isodow = (2)::double precision) THEN ((stw2.time1 + stw2.time2) - (stw2.timepause)::interval) - ELSE NULL::interval - END), 'HH24:MI'::text) AS tue_timetotal, - max( - CASE - WHEN (stw2.isodow = (3)::double precision) THEN stw2.id - ELSE NULL::bigint - END) AS wed_id, - max( - CASE - WHEN (stw2.isodow = (3)::double precision) THEN to_char((stw2.timestart1)::interval, 'HH24:MI'::text) - ELSE NULL::text - END) AS wed_start1, - max( - CASE - WHEN (stw2.isodow = (3)::double precision) THEN to_char((stw2.timeend1)::interval, 'HH24:MI'::text) - ELSE NULL::text - END) AS wed_end1, - max( - CASE - WHEN (stw2.isodow = (3)::double precision) THEN to_char((stw2.timestart2)::interval, 'HH24:MI'::text) - ELSE NULL::text - END) AS wed_start2, - max( - CASE - WHEN (stw2.isodow = (3)::double precision) THEN to_char((stw2.timeend2)::interval, 'HH24:MI'::text) - ELSE NULL::text - END) AS wed_end2, - max( - CASE - WHEN (stw2.isodow = (3)::double precision) THEN to_char((stw2.timepause)::interval, 'HH24:MI'::text) - ELSE NULL::text - END) AS wed_pause, - to_char(max( - CASE - WHEN (stw2.isodow = (3)::double precision) THEN ((stw2.time1 + stw2.time2) - (stw2.timepause)::interval) - ELSE NULL::interval - END), 'HH24:MI'::text) AS wed_timetotal, - max( - CASE - WHEN (stw2.isodow = (4)::double precision) THEN stw2.id - ELSE NULL::bigint - END) AS thu_id, - max( - CASE - WHEN (stw2.isodow = (4)::double precision) THEN to_char((stw2.timestart1)::interval, 'HH24:MI'::text) - ELSE NULL::text - END) AS thu_start1, - max( - CASE - WHEN (stw2.isodow = (4)::double precision) THEN to_char((stw2.timeend1)::interval, 'HH24:MI'::text) - ELSE NULL::text - END) AS thu_end1, - max( +CREATE VIEW portanova.vw_staffreportperioddays AS + SELECT pd.id, + pd.id_staff, + pd.id_reportperiod, + pd.daydate, + to_char((pd.timestart1)::interval, 'HH24:MI'::text) AS timestart1, + to_char((pd.timeend1)::interval, 'HH24:MI'::text) AS timeend1, + to_char((pd.timestart2)::interval, 'HH24:MI'::text) AS timestart2, + to_char((pd.timeend2)::interval, 'HH24:MI'::text) AS timeend2, + to_char((pd.timepause)::interval, 'HH24:MI'::text) AS timepause, + to_char(( CASE - WHEN (stw2.isodow = (4)::double precision) THEN to_char((stw2.timestart2)::interval, 'HH24:MI'::text) - ELSE NULL::text - END) AS thu_start2, - max( + WHEN ((pd.vacancyhours)::interval = '00:00:00'::interval) THEN NULL::time without time zone + ELSE pd.vacancyhours + END)::interval, 'HH24:MI'::text) AS vacancyhours, + to_char((pd.contracthours)::interval, 'HH24:MI'::text) AS contracthours, + to_char(( CASE - WHEN (stw2.isodow = (4)::double precision) THEN to_char((stw2.timeend2)::interval, 'HH24:MI'::text) - ELSE NULL::text - END) AS thu_end2, - max( + WHEN ((pd.workhours)::interval = '00:00:00'::interval) THEN NULL::time without time zone + ELSE pd.workhours + END)::interval, 'HH24:MI'::text) AS workhours, + to_char(( CASE - WHEN (stw2.isodow = (4)::double precision) THEN to_char((stw2.timepause)::interval, 'HH24:MI'::text) - ELSE NULL::text - END) AS thu_pause, - to_char(max( + WHEN ((pd.dayhours)::interval = '00:00:00'::interval) THEN NULL::time without time zone + ELSE pd.dayhours + END)::interval, 'HH24:MI'::text) AS dayhours, + pd.id_vacancytype, + pd.daytype, + to_char(( CASE - WHEN (stw2.isodow = (4)::double precision) THEN ((stw2.time1 + stw2.time2) - (stw2.timepause)::interval) - ELSE NULL::interval - END), 'HH24:MI'::text) AS thu_timetotal, - max( - CASE - WHEN (stw2.isodow = (5)::double precision) THEN stw2.id - ELSE NULL::bigint - END) AS fri_id, - max( - CASE - WHEN (stw2.isodow = (5)::double precision) THEN to_char((stw2.timestart1)::interval, 'HH24:MI'::text) - ELSE NULL::text - END) AS fri_start1, - max( - CASE - WHEN (stw2.isodow = (5)::double precision) THEN to_char((stw2.timeend1)::interval, 'HH24:MI'::text) - ELSE NULL::text - END) AS fri_end1, - max( - CASE - WHEN (stw2.isodow = (5)::double precision) THEN to_char((stw2.timestart2)::interval, 'HH24:MI'::text) - ELSE NULL::text - END) AS fri_start2, - max( - CASE - WHEN (stw2.isodow = (5)::double precision) THEN to_char((stw2.timeend2)::interval, 'HH24:MI'::text) - ELSE NULL::text - END) AS fri_end2, - max( - CASE - WHEN (stw2.isodow = (5)::double precision) THEN to_char((stw2.timepause)::interval, 'HH24:MI'::text) - ELSE NULL::text - END) AS fri_pause, - to_char(max( - CASE - WHEN (stw2.isodow = (5)::double precision) THEN ((stw2.time1 + stw2.time2) - (stw2.timepause)::interval) - ELSE NULL::interval - END), 'HH24:MI'::text) AS fri_timetotal, - max( - CASE - WHEN (stw2.isodow = (6)::double precision) THEN stw2.id - ELSE NULL::bigint - END) AS sat_id, - max( - CASE - WHEN (stw2.isodow = (6)::double precision) THEN to_char((stw2.timestart1)::interval, 'HH24:MI'::text) - ELSE NULL::text - END) AS sat_start1, - max( - CASE - WHEN (stw2.isodow = (6)::double precision) THEN to_char((stw2.timeend1)::interval, 'HH24:MI'::text) - ELSE NULL::text - END) AS sat_end1, - max( - CASE - WHEN (stw2.isodow = (6)::double precision) THEN to_char((stw2.timestart2)::interval, 'HH24:MI'::text) - ELSE NULL::text - END) AS sat_start2, - max( - CASE - WHEN (stw2.isodow = (6)::double precision) THEN to_char((stw2.timeend2)::interval, 'HH24:MI'::text) - ELSE NULL::text - END) AS sat_end2, - max( - CASE - WHEN (stw2.isodow = (6)::double precision) THEN to_char((stw2.timepause)::interval, 'HH24:MI'::text) - ELSE NULL::text - END) AS sat_pause, - to_char(max( - CASE - WHEN (stw2.isodow = (6)::double precision) THEN ((stw2.time1 + stw2.time2) - (stw2.timepause)::interval) - ELSE NULL::interval - END), 'HH24:MI'::text) AS sat_timetotal, - max( - CASE - WHEN (stw2.isodow = (7)::double precision) THEN stw2.id - ELSE NULL::bigint - END) AS sun_id, - max( - CASE - WHEN (stw2.isodow = (7)::double precision) THEN to_char((stw2.timestart1)::interval, 'HH24:MI'::text) - ELSE NULL::text - END) AS sun_start1, - max( - CASE - WHEN (stw2.isodow = (7)::double precision) THEN to_char((stw2.timeend1)::interval, 'HH24:MI'::text) - ELSE NULL::text - END) AS sun_end1, - max( - CASE - WHEN (stw2.isodow = (7)::double precision) THEN to_char((stw2.timestart2)::interval, 'HH24:MI'::text) - ELSE NULL::text - END) AS sun_start2, - max( - CASE - WHEN (stw2.isodow = (7)::double precision) THEN to_char((stw2.timeend2)::interval, 'HH24:MI'::text) - ELSE NULL::text - END) AS sun_end2, - max( - CASE - WHEN (stw2.isodow = (7)::double precision) THEN to_char((stw2.timepause)::interval, 'HH24:MI'::text) - ELSE NULL::text - END) AS sun_pause, - to_char(max( - CASE - WHEN (stw2.isodow = (7)::double precision) THEN ((stw2.time1 + stw2.time2) - (stw2.timepause)::interval) - ELSE NULL::interval - END), 'HH24:MI'::text) AS sun_timetotal, - to_char(sum(((stw2.time1 + stw2.time2) - (stw2.timepause)::interval)), 'HH24:MI'::text) AS week_timetotal - FROM ( SELECT staffreportperioddays.daydate, - date_part('week'::text, staffreportperioddays.daydate) AS calweek, - (date_trunc('week'::text, (staffreportperioddays.daydate)::timestamp with time zone))::date AS caldate, - date_part('isodow'::text, staffreportperioddays.daydate) AS isodow, - staffreportperioddays.id, - staffreportperioddays.id_staff, - staffreportperioddays.timestart1, - staffreportperioddays.timeend1, - CASE - WHEN (staffreportperioddays.timestart1 > staffreportperioddays.timeend1) THEN ('24:00:00'::time without time zone - ((staffreportperioddays.timestart1 - staffreportperioddays.timeend1))::time without time zone) - ELSE (staffreportperioddays.timeend1 - staffreportperioddays.timestart1) - END AS time1, - staffreportperioddays.timestart2, - staffreportperioddays.timeend2, - CASE - WHEN (staffreportperioddays.timestart2 > staffreportperioddays.timeend2) THEN ('24:00:00'::time without time zone - ((staffreportperioddays.timestart2 - staffreportperioddays.timeend2))::time without time zone) - ELSE (staffreportperioddays.timeend2 - staffreportperioddays.timestart2) - END AS time2, - staffreportperioddays.timepause - FROM portanova.staffreportperioddays) stw2 - GROUP BY stw2.calweek, stw2.caldate, stw2.id_staff; - - --- --- Name: vw_staffreportperioddays; Type: VIEW; Schema: portanova; Owner: - --- - -CREATE VIEW portanova.vw_staffreportperioddays AS - SELECT pd.id, - pd.id_staff, - pd.id_reportperiod, - pd.daydate, - to_char((pd.timestart1)::interval, 'HH24:MI'::text) AS timestart1, - to_char((pd.timeend1)::interval, 'HH24:MI'::text) AS timeend1, - to_char((pd.timestart2)::interval, 'HH24:MI'::text) AS timestart2, - to_char((pd.timeend2)::interval, 'HH24:MI'::text) AS timeend2, - to_char((pd.timepause)::interval, 'HH24:MI'::text) AS timepause, - to_char(( - CASE - WHEN ((pd.vacancyhours)::interval = '00:00:00'::interval) THEN NULL::time without time zone - ELSE pd.vacancyhours - END)::interval, 'HH24:MI'::text) AS vacancyhours, - to_char((pd.contracthours)::interval, 'HH24:MI'::text) AS contracthours, - to_char(( - CASE - WHEN ((pd.workhours)::interval = '00:00:00'::interval) THEN NULL::time without time zone - ELSE pd.workhours - END)::interval, 'HH24:MI'::text) AS workhours, - to_char(( - CASE - WHEN ((pd.dayhours)::interval = '00:00:00'::interval) THEN NULL::time without time zone - ELSE pd.dayhours - END)::interval, 'HH24:MI'::text) AS dayhours, - pd.id_vacancytype, - pd.daytype, - to_char(( - CASE - WHEN ((pd.recuperationhours)::interval = '00:00:00'::interval) THEN NULL::time without time zone - ELSE pd.recuperationhours - END)::interval, 'HH24:MI'::text) AS recuperationhours, - pd.id_recuperationtype, - to_char(( + WHEN ((pd.recuperationhours)::interval = '00:00:00'::interval) THEN NULL::time without time zone + ELSE pd.recuperationhours + END)::interval, 'HH24:MI'::text) AS recuperationhours, + pd.id_recuperationtype, + to_char(( CASE WHEN ((pd.interruptionhours)::interval = '00:00:00'::interval) THEN NULL::time without time zone ELSE pd.interruptionhours END)::interval, 'HH24:MI'::text) AS interruptionhours, pw.id AS id_week, (((((((pw.calyear || '-'::text) || lpad((pw.calweek)::text, 2, '0'::text)) || '('::text) || to_char((pw.weekstart)::timestamp with time zone, 'DD.MM.YYYY'::text)) || ' - '::text) || to_char((date((pw.weekstart + '6 days'::interval)))::timestamp with time zone, 'DD.MM.YYYY'::text)) || ')'::text) AS dspweek, + ((((((((((((to_char((pw.weekstart)::timestamp with time zone, 'DD.MM.YYYY'::text) || ','::text) || to_char((date((pw.weekstart + '1 day'::interval)))::timestamp with time zone, 'DD.MM.YYYY'::text)) || ','::text) || to_char((date((pw.weekstart + '2 days'::interval)))::timestamp with time zone, 'DD.MM.YYYY'::text)) || ','::text) || to_char((date((pw.weekstart + '3 days'::interval)))::timestamp with time zone, 'DD.MM.YYYY'::text)) || ','::text) || to_char((date((pw.weekstart + '4 days'::interval)))::timestamp with time zone, 'DD.MM.YYYY'::text)) || ','::text) || to_char((date((pw.weekstart + '5 days'::interval)))::timestamp with time zone, 'DD.MM.YYYY'::text)) || ','::text) || to_char((date((pw.weekstart + '6 days'::interval)))::timestamp with time zone, 'DD.MM.YYYY'::text)) AS dspweekdates, + ((((((((((((pw.weekstart || ','::text) || date((pw.weekstart + '1 day'::interval))) || ','::text) || date((pw.weekstart + '2 days'::interval))) || ','::text) || date((pw.weekstart + '3 days'::interval))) || ','::text) || date((pw.weekstart + '4 days'::interval))) || ','::text) || date((pw.weekstart + '5 days'::interval))) || ','::text) || date((pw.weekstart + '6 days'::interval))) AS weekdates, to_char(pw.contracthours, 'HH24:MI'::text) AS week_contracthours, to_char(pw.workhours, 'HH24:MI'::text) AS week_workhours, to_char(pw.vacancyhours, 'HH24:MI'::text) AS week_vacancyhours, to_char(pw.recuperationhours, 'HH24:MI'::text) AS week_recuperationhours, - to_char(pw.totalhours, 'HH24:MI'::text) AS week_totalhours, - CASE - WHEN (pw.diffhours < '00:00:00'::interval) THEN ('-'::text || replace(to_char(pw.diffhours, 'HH24:MI'::text), '-'::text, ''::text)) - ELSE to_char(pw.diffhours, 'HH24:MI'::text) - END AS week_diffhours - FROM (portanova.staffreportperiodweeks pw - LEFT JOIN portanova.staffreportperioddays pd ON (((pw.weekstart = date_trunc('week'::text, (pd.daydate)::timestamp with time zone)) AND (pw.id_staff = pd.id_staff) AND (pw.id_reportperiod = pd.id_reportperiod)))) - ORDER BY pd.id_reportperiod, pd.id_staff, pd.daydate; - - --- --- Name: vw_staffreportperiodlist; Type: VIEW; Schema: portanova; Owner: - --- - -CREATE VIEW portanova.vw_staffreportperiodlist AS - SELECT st.prename, - st.surname, - to_char(srp.contracthours, 'HH24:MI'::text) AS contracthours, - to_char(srp.workhours, 'HH24:MI'::text) AS workhours, - to_char(srp.vacancyhours, 'HH24:MI'::text) AS vacancyhours, - to_char(srp.recuperationhours, 'HH24:MI'::text) AS recuperationhours, - CASE - WHEN (srp.hoursdiff < '00:00:00'::interval) THEN ('-'::text || replace(to_char(srp.hoursdiff, 'HH24:MI'::text), '-'::text, ''::text)) - ELSE to_char(srp.hoursdiff, 'HH24:MI'::text) - END AS hoursdiff, - to_char(srp.totalhours, 'HH24:MI'::text) AS totalhours, - srp.id_reportperiod, - srp.id_staff, - srp.id, - rp.startdate, - rp.enddate, - ((st.surname || ' '::text) || st.prename) AS staffname, - st.id_staffgroup, - sgr.groupname - FROM (((portanova.staffreportperiod srp - LEFT JOIN portanova.staff st ON ((srp.id_staff = st.id))) - LEFT JOIN portanova.reportperiod rp ON ((srp.id_reportperiod = rp.id))) - LEFT JOIN portanova.staffgroups sgr ON ((st.id_staffgroup = sgr.id))) - ORDER BY sgr.groupname, st.surname, st.prename, srp.id_staff, rp.startdate, rp.enddate; - - --- --- Name: vw_staffworkplan_dailylist; Type: VIEW; Schema: portanova; Owner: - --- - -CREATE VIEW portanova.vw_staffworkplan_dailylist AS - SELECT staffreportperioddays.id, - staffreportperioddays.id_staff, - staffreportperioddays.daydate, - staffreportperioddays.timestart1, - staffreportperioddays.timeend1, - staffreportperioddays.timestart2, - staffreportperioddays.timeend2, - staffreportperioddays.timepause, - staffreportperioddays.interruptionhours, - staffreportperioddays.workhours, - staffreportperioddays.id_recuperationtype, - staffreportperioddays.recuperationhours, - staffreportperioddays.id_vacancytype, - staffreportperioddays.vacancyhours, - staffreportperioddays.trackedhours, - staffreportperioddays.daytype, - staffreportperioddays.contracthours, - staffreportperioddays.id_reportperiod - FROM portanova.staffreportperioddays - ORDER BY staffreportperioddays.id_staff, staffreportperioddays.daydate, staffreportperioddays.id_reportperiod; - - --- --- Name: vw_staffworkplan_weekly; Type: VIEW; Schema: portanova; Owner: - --- - -CREATE VIEW portanova.vw_staffworkplan_weekly AS - SELECT stw2.calweek, - to_char((stw2.caldate)::timestamp with time zone, 'YYYY'::text) AS calyear, - stw2.caldate AS weekbegin, - public.getdateslist(stw2.caldate, 7) AS dates, - stw2.id_staff, - max( - CASE - WHEN (stw2.isodow = (1)::double precision) THEN stw2.id - ELSE NULL::bigint - END) AS mon_id, - max( - CASE - WHEN (stw2.isodow = (1)::double precision) THEN to_char((stw2.timestart1)::interval, 'HH24:MI'::text) - ELSE NULL::text - END) AS mon_timestart1, - max( - CASE - WHEN (stw2.isodow = (1)::double precision) THEN to_char((stw2.timeend1)::interval, 'HH24:MI'::text) - ELSE NULL::text - END) AS mon_timeend1, - max( - CASE - WHEN (stw2.isodow = (1)::double precision) THEN to_char((stw2.timestart2)::interval, 'HH24:MI'::text) - ELSE NULL::text - END) AS mon_timestart2, - max( - CASE - WHEN (stw2.isodow = (1)::double precision) THEN to_char((stw2.timeend2)::interval, 'HH24:MI'::text) - ELSE NULL::text - END) AS mon_timeend2, - max( - CASE - WHEN (stw2.isodow = (1)::double precision) THEN to_char((stw2.timepause)::interval, 'HH24:MI'::text) - ELSE NULL::text - END) AS mon_timepause, - max( - CASE - WHEN (stw2.isodow = (1)::double precision) THEN to_char((stw2.vacancyhours)::interval, 'HH24:MI'::text) - ELSE NULL::text - END) AS mon_vacancyhours, - max( - CASE - WHEN (stw2.isodow = (1)::double precision) THEN stw2.vacancyname - ELSE NULL::text - END) AS mon_vacancyname, - max( - CASE - WHEN (stw2.isodow = (1)::double precision) THEN stw2.color - ELSE NULL::text - END) AS mon_color, - max( - CASE - WHEN (stw2.isodow = (1)::double precision) THEN stw2.id_vacancytype - ELSE NULL::integer - END) AS mon_vacancytype, - max( - CASE - WHEN (stw2.isodow = (1)::double precision) THEN stw2.daytype - ELSE NULL::integer - END) AS mon_daytype, - to_char(max( - CASE - WHEN (stw2.isodow = (1)::double precision) THEN ((stw2.time1 + stw2.time2) - (stw2.timepause)::interval) - ELSE NULL::interval - END), 'HH24:MI'::text) AS mon_timetotal, - max( - CASE - WHEN (stw2.isodow = (2)::double precision) THEN stw2.id - ELSE NULL::bigint - END) AS tue_id, - max( - CASE - WHEN (stw2.isodow = (2)::double precision) THEN to_char((stw2.timestart1)::interval, 'HH24:MI'::text) - ELSE NULL::text - END) AS tue_timestart1, - max( - CASE - WHEN (stw2.isodow = (2)::double precision) THEN to_char((stw2.timeend1)::interval, 'HH24:MI'::text) - ELSE NULL::text - END) AS tue_timeend1, - max( - CASE - WHEN (stw2.isodow = (2)::double precision) THEN to_char((stw2.timestart2)::interval, 'HH24:MI'::text) - ELSE NULL::text - END) AS tue_timestart2, - max( - CASE - WHEN (stw2.isodow = (2)::double precision) THEN to_char((stw2.timeend2)::interval, 'HH24:MI'::text) - ELSE NULL::text - END) AS tue_timeend2, - max( - CASE - WHEN (stw2.isodow = (2)::double precision) THEN to_char((stw2.timepause)::interval, 'HH24:MI'::text) - ELSE NULL::text - END) AS tue_timepause, - max( - CASE - WHEN (stw2.isodow = (2)::double precision) THEN to_char((stw2.vacancyhours)::interval, 'HH24:MI'::text) - ELSE NULL::text - END) AS tue_vacancyhours, - max( - CASE - WHEN (stw2.isodow = (2)::double precision) THEN stw2.id_vacancytype - ELSE NULL::integer - END) AS tue_vacancytype, - max( - CASE - WHEN (stw2.isodow = (2)::double precision) THEN stw2.vacancyname - ELSE NULL::text - END) AS tue_vacancyname, - max( - CASE - WHEN (stw2.isodow = (2)::double precision) THEN stw2.color - ELSE NULL::text - END) AS tue_color, - max( - CASE - WHEN (stw2.isodow = (2)::double precision) THEN stw2.daytype - ELSE NULL::integer - END) AS tue_daytype, - to_char(max( - CASE - WHEN (stw2.isodow = (2)::double precision) THEN ((stw2.time1 + stw2.time2) - (stw2.timepause)::interval) - ELSE NULL::interval - END), 'HH24:MI'::text) AS tue_timetotal, - max( - CASE - WHEN (stw2.isodow = (3)::double precision) THEN stw2.id - ELSE NULL::bigint - END) AS wed_id, - max( - CASE - WHEN (stw2.isodow = (3)::double precision) THEN to_char((stw2.timestart1)::interval, 'HH24:MI'::text) - ELSE NULL::text - END) AS wed_timestart1, - max( - CASE - WHEN (stw2.isodow = (3)::double precision) THEN to_char((stw2.timeend1)::interval, 'HH24:MI'::text) - ELSE NULL::text - END) AS wed_timeend1, - max( - CASE - WHEN (stw2.isodow = (3)::double precision) THEN to_char((stw2.timestart2)::interval, 'HH24:MI'::text) - ELSE NULL::text - END) AS wed_timestart2, - max( - CASE - WHEN (stw2.isodow = (3)::double precision) THEN to_char((stw2.timeend2)::interval, 'HH24:MI'::text) - ELSE NULL::text - END) AS wed_timeend2, - max( - CASE - WHEN (stw2.isodow = (3)::double precision) THEN to_char((stw2.timepause)::interval, 'HH24:MI'::text) - ELSE NULL::text - END) AS wed_timepause, - max( - CASE - WHEN (stw2.isodow = (3)::double precision) THEN to_char((stw2.vacancyhours)::interval, 'HH24:MI'::text) - ELSE NULL::text - END) AS wed_vacancyhours, - max( - CASE - WHEN (stw2.isodow = (3)::double precision) THEN stw2.id_vacancytype - ELSE NULL::integer - END) AS wed_vacancytype, - max( - CASE - WHEN (stw2.isodow = (3)::double precision) THEN stw2.vacancyname - ELSE NULL::text - END) AS wed_vacancyname, - max( - CASE - WHEN (stw2.isodow = (3)::double precision) THEN stw2.color - ELSE NULL::text - END) AS wed_color, - max( - CASE - WHEN (stw2.isodow = (3)::double precision) THEN stw2.daytype - ELSE NULL::integer - END) AS wed_daytype, - to_char(max( - CASE - WHEN (stw2.isodow = (3)::double precision) THEN ((stw2.time1 + stw2.time2) - (stw2.timepause)::interval) - ELSE NULL::interval - END), 'HH24:MI'::text) AS wed_timetotal, - max( - CASE - WHEN (stw2.isodow = (4)::double precision) THEN stw2.id - ELSE NULL::bigint - END) AS thu_id, - max( - CASE - WHEN (stw2.isodow = (4)::double precision) THEN to_char((stw2.timestart1)::interval, 'HH24:MI'::text) - ELSE NULL::text - END) AS thu_timestart1, - max( - CASE - WHEN (stw2.isodow = (4)::double precision) THEN to_char((stw2.timeend1)::interval, 'HH24:MI'::text) - ELSE NULL::text - END) AS thu_timeend1, - max( - CASE - WHEN (stw2.isodow = (4)::double precision) THEN to_char((stw2.timestart2)::interval, 'HH24:MI'::text) - ELSE NULL::text - END) AS thu_timestart2, - max( - CASE - WHEN (stw2.isodow = (4)::double precision) THEN to_char((stw2.timeend2)::interval, 'HH24:MI'::text) - ELSE NULL::text - END) AS thu_timeend2, - max( - CASE - WHEN (stw2.isodow = (4)::double precision) THEN to_char((stw2.timepause)::interval, 'HH24:MI'::text) - ELSE NULL::text - END) AS thu_timepause, - max( - CASE - WHEN (stw2.isodow = (4)::double precision) THEN to_char((stw2.vacancyhours)::interval, 'HH24:MI'::text) - ELSE NULL::text - END) AS thu_vacancyhours, - max( - CASE - WHEN (stw2.isodow = (4)::double precision) THEN stw2.id_vacancytype - ELSE NULL::integer - END) AS thu_vacancytype, - max( - CASE - WHEN (stw2.isodow = (4)::double precision) THEN stw2.vacancyname - ELSE NULL::text - END) AS thu_vacancyname, - max( - CASE - WHEN (stw2.isodow = (4)::double precision) THEN stw2.color - ELSE NULL::text - END) AS thu_color, - max( - CASE - WHEN (stw2.isodow = (4)::double precision) THEN stw2.daytype - ELSE NULL::integer - END) AS thu_daytype, - to_char(max( - CASE - WHEN (stw2.isodow = (4)::double precision) THEN ((stw2.time1 + stw2.time2) - (stw2.timepause)::interval) - ELSE NULL::interval - END), 'HH24:MI'::text) AS thu_timetotal, - max( - CASE - WHEN (stw2.isodow = (5)::double precision) THEN stw2.id - ELSE NULL::bigint - END) AS fri_id, - max( - CASE - WHEN (stw2.isodow = (5)::double precision) THEN to_char((stw2.timestart1)::interval, 'HH24:MI'::text) - ELSE NULL::text - END) AS fri_timestart1, - max( - CASE - WHEN (stw2.isodow = (5)::double precision) THEN to_char((stw2.timeend1)::interval, 'HH24:MI'::text) - ELSE NULL::text - END) AS fri_timeend1, - max( - CASE - WHEN (stw2.isodow = (5)::double precision) THEN to_char((stw2.timestart2)::interval, 'HH24:MI'::text) - ELSE NULL::text - END) AS fri_timestart2, - max( - CASE - WHEN (stw2.isodow = (5)::double precision) THEN to_char((stw2.timeend2)::interval, 'HH24:MI'::text) - ELSE NULL::text - END) AS fri_timeend2, - max( - CASE - WHEN (stw2.isodow = (5)::double precision) THEN to_char((stw2.timepause)::interval, 'HH24:MI'::text) - ELSE NULL::text - END) AS fri_timepause, - max( - CASE - WHEN (stw2.isodow = (5)::double precision) THEN to_char((stw2.vacancyhours)::interval, 'HH24:MI'::text) - ELSE NULL::text - END) AS fri_vacancyhours, - max( - CASE - WHEN (stw2.isodow = (5)::double precision) THEN stw2.id_vacancytype - ELSE NULL::integer - END) AS fri_vacancytype, - max( - CASE - WHEN (stw2.isodow = (5)::double precision) THEN stw2.vacancyname - ELSE NULL::text - END) AS fri_vacancyname, - max( - CASE - WHEN (stw2.isodow = (5)::double precision) THEN stw2.color - ELSE NULL::text - END) AS fri_color, - max( - CASE - WHEN (stw2.isodow = (5)::double precision) THEN stw2.daytype - ELSE NULL::integer - END) AS fri_daytype, - to_char(max( - CASE - WHEN (stw2.isodow = (5)::double precision) THEN ((stw2.time1 + stw2.time2) - (stw2.timepause)::interval) - ELSE NULL::interval - END), 'HH24:MI'::text) AS fri_timetotal, - max( - CASE - WHEN (stw2.isodow = (6)::double precision) THEN stw2.id - ELSE NULL::bigint - END) AS sat_id, - max( - CASE - WHEN (stw2.isodow = (6)::double precision) THEN to_char((stw2.timestart1)::interval, 'HH24:MI'::text) - ELSE NULL::text - END) AS sat_timestart1, - max( - CASE - WHEN (stw2.isodow = (6)::double precision) THEN to_char((stw2.timeend1)::interval, 'HH24:MI'::text) - ELSE NULL::text - END) AS sat_timeend1, - max( - CASE - WHEN (stw2.isodow = (6)::double precision) THEN to_char((stw2.timestart2)::interval, 'HH24:MI'::text) - ELSE NULL::text - END) AS sat_timestart2, - max( - CASE - WHEN (stw2.isodow = (6)::double precision) THEN to_char((stw2.timeend2)::interval, 'HH24:MI'::text) - ELSE NULL::text - END) AS sat_timeend2, - max( - CASE - WHEN (stw2.isodow = (6)::double precision) THEN to_char((stw2.timepause)::interval, 'HH24:MI'::text) - ELSE NULL::text - END) AS sat_timepause, - max( - CASE - WHEN (stw2.isodow = (6)::double precision) THEN to_char((stw2.vacancyhours)::interval, 'HH24:MI'::text) - ELSE NULL::text - END) AS sat_vacancyhours, - max( - CASE - WHEN (stw2.isodow = (6)::double precision) THEN stw2.id_vacancytype - ELSE NULL::integer - END) AS sat_vacancytype, - max( - CASE - WHEN (stw2.isodow = (6)::double precision) THEN stw2.vacancyname - ELSE NULL::text - END) AS sat_vacancyname, - max( - CASE - WHEN (stw2.isodow = (6)::double precision) THEN stw2.color - ELSE NULL::text - END) AS sat_color, - max( - CASE - WHEN (stw2.isodow = (6)::double precision) THEN stw2.daytype - ELSE NULL::integer - END) AS sat_daytype, - to_char(max( - CASE - WHEN (stw2.isodow = (6)::double precision) THEN ((stw2.time1 + stw2.time2) - (stw2.timepause)::interval) - ELSE NULL::interval - END), 'HH24:MI'::text) AS sat_timetotal, - max( - CASE - WHEN (stw2.isodow = (7)::double precision) THEN stw2.id - ELSE NULL::bigint - END) AS sun_id, - max( - CASE - WHEN (stw2.isodow = (7)::double precision) THEN to_char((stw2.timestart1)::interval, 'HH24:MI'::text) - ELSE NULL::text - END) AS sun_timestart1, - max( - CASE - WHEN (stw2.isodow = (7)::double precision) THEN to_char((stw2.timeend1)::interval, 'HH24:MI'::text) - ELSE NULL::text - END) AS sun_timeend1, - max( - CASE - WHEN (stw2.isodow = (7)::double precision) THEN to_char((stw2.timestart2)::interval, 'HH24:MI'::text) - ELSE NULL::text - END) AS sun_timestart2, - max( - CASE - WHEN (stw2.isodow = (7)::double precision) THEN to_char((stw2.timeend2)::interval, 'HH24:MI'::text) - ELSE NULL::text - END) AS sun_timeend2, - max( - CASE - WHEN (stw2.isodow = (7)::double precision) THEN to_char((stw2.timepause)::interval, 'HH24:MI'::text) - ELSE NULL::text - END) AS sun_timepause, - max( - CASE - WHEN (stw2.isodow = (7)::double precision) THEN to_char((stw2.vacancyhours)::interval, 'HH24:MI'::text) - ELSE NULL::text - END) AS sun_vacancyhours, - max( - CASE - WHEN (stw2.isodow = (7)::double precision) THEN stw2.id_vacancytype - ELSE NULL::integer - END) AS sun_vacancytype, - max( - CASE - WHEN (stw2.isodow = (7)::double precision) THEN stw2.vacancyname - ELSE NULL::text - END) AS sun_vacancyname, - max( - CASE - WHEN (stw2.isodow = (7)::double precision) THEN stw2.color - ELSE NULL::text - END) AS sun_color, - max( - CASE - WHEN (stw2.isodow = (7)::double precision) THEN stw2.daytype - ELSE NULL::integer - END) AS sun_daytype, - to_char(max( + to_char(pw.totalhours, 'HH24:MI'::text) AS week_totalhours, CASE - WHEN (stw2.isodow = (7)::double precision) THEN ((stw2.time1 + stw2.time2) - (stw2.timepause)::interval) - ELSE NULL::interval - END), 'HH24:MI'::text) AS sun_timetotal, - to_char(sum(((stw2.time1 + stw2.time2) - (stw2.timepause)::interval)), 'HH24:MI'::text) AS week_timetotal, - CASE - WHEN ((stw2.calweek IS NOT NULL) AND (stw2.id_staff IS NOT NULL)) THEN public.weekvacancy('portanova'::text, stw2.calweek, stw2.id_staff) - ELSE NULL::text - END AS week_vacancy, - stw2.staffname AS dspstaffname - FROM ( SELECT stw.daydate, - date_part('week'::text, stw.daydate) AS calweek, - (date_trunc('week'::text, (stw.daydate)::timestamp with time zone))::date AS caldate, - date_part('isodow'::text, stw.daydate) AS isodow, - stw.id, - stw.id_staff, - ((st.surname || ' '::text) || st.prename) AS staffname, - stw.timestart1, - stw.timeend1, - stw.vacancyhours, - stw.id_vacancytype, - vt.color, - vt.vacancyname, - stw.daytype, - CASE - WHEN (stw.timestart1 > stw.timeend1) THEN ('24:00:00'::time without time zone - ((stw.timestart1 - stw.timeend1))::time without time zone) - ELSE (stw.timeend1 - stw.timestart1) - END AS time1, - stw.timestart2, - stw.timeend2, - CASE - WHEN (stw.timestart2 > stw.timeend2) THEN ('24:00:00'::time without time zone - ((stw.timestart2 - stw.timeend2))::time without time zone) - ELSE (stw.timeend2 - stw.timestart2) - END AS time2, - stw.timepause - FROM ((portanova.staffreportperioddays stw - LEFT JOIN portanova.staff st ON ((stw.id_staff = st.id))) - LEFT JOIN portanova.vacancytypes vt ON ((stw.id_vacancytype = vt.id)))) stw2 - GROUP BY stw2.calweek, stw2.caldate, stw2.id_staff, stw2.staffname; + WHEN (pw.diffhours < '00:00:00'::interval) THEN ('-'::text || replace(to_char(pw.diffhours, 'HH24:MI'::text), '-'::text, ''::text)) + ELSE to_char(pw.diffhours, 'HH24:MI'::text) + END AS week_diffhours, + ((pw.calyear || '-'::text) || lpad((pw.calweek)::text, 2, '0'::text)) AS weekident + FROM (portanova.staffreportperiodweeks pw + LEFT JOIN portanova.staffreportperioddays pd ON (((pw.weekstart = date_trunc('week'::text, (pd.daydate)::timestamp with time zone)) AND (pw.id_staff = pd.id_staff) AND (pw.id_reportperiod = pd.id_reportperiod)))) + ORDER BY pd.id_reportperiod, pd.id_staff, pd.daydate; -- --- Name: vw_staffworkplandata; Type: VIEW; Schema: portanova; Owner: - +-- Name: vw_staffreportperiodlist; Type: VIEW; Schema: portanova; Owner: - -- -CREATE VIEW portanova.vw_staffworkplandata AS - SELECT date_part('isoyear'::text, swp.daydate) AS calyear, - date_part('week'::text, swp.daydate) AS calweek, - to_char((swp.daydate)::timestamp with time zone, 'dy'::text) AS weekday, - swp.id, - swp.id_staff, - swp.daydate, - ((st.surname || ' '::text) || st.prename) AS staffname, - to_char((swp.timestart1)::interval, 'HH24:MI'::text) AS timestart1, - to_char((swp.timeend1)::interval, 'HH24:MI'::text) AS timeend1, - to_char((swp.timestart2)::interval, 'HH24:MI'::text) AS timestart2, - to_char((swp.timeend2)::interval, 'HH24:MI'::text) AS timeend2, - to_char((swp.timepause)::interval, 'HH24:MI'::text) AS timepause, - to_char((swp.vacancyhours)::interval, 'HH24:MI'::text) AS vacancyhours, - to_char((swp.contracthours)::interval, 'HH24:MI'::text) AS contracthours, - to_char((swp.interruptionhours)::interval, 'HH24:MI'::text) AS interruptionhours, - swp.id_staffgroup, - swp.id_vacancytype, - swp.id_recuperationtype, - swp.daytype, - to_char((swp.workhours)::interval, 'HH24:MI'::text) AS totalhours, - to_char((swp.recuperationhours)::interval, 'HH24:MI'::text) AS recuperationhours, - to_char((swp.trackedhours)::interval, 'HH24:MI'::text) AS trackedhours, - swp.id_reportperiod - FROM (portanova.staffreportperioddays swp - JOIN portanova.staff st ON ((swp.id_staff = st.id))); - - --- --- Name: vw_staffworkplanstafflist; Type: VIEW; Schema: portanova; Owner: - --- - -CREATE VIEW portanova.vw_staffworkplanstafflist AS - SELECT sc.id AS id_staffcontract, - st.id AS id_staff, +CREATE VIEW portanova.vw_staffreportperiodlist AS + SELECT st.prename, + st.surname, + to_char(srp.contracthours, 'HH24:MI'::text) AS contracthours, + to_char(srp.workhours, 'HH24:MI'::text) AS workhours, + to_char(srp.vacancyhours, 'HH24:MI'::text) AS vacancyhours, + to_char(srp.recuperationhours, 'HH24:MI'::text) AS recuperationhours, + CASE + WHEN (srp.hoursdiff < '00:00:00'::interval) THEN ('-'::text || replace(to_char((srp.hoursdiff - COALESCE(srp.payedhours, '00:00:00'::interval)), 'HH24:MI'::text), '-'::text, ''::text)) + ELSE to_char((srp.hoursdiff - COALESCE(srp.payedhours, '00:00:00'::interval)), 'HH24:MI'::text) + END AS hoursdiff, + to_char(srp.totalhours, 'HH24:MI'::text) AS totalhours, + srp.id_reportperiod, + srp.id_staff, + srp.id, + rp.startdate, + rp.enddate, ((st.surname || ' '::text) || st.prename) AS staffname, - sc.startdate, - sc.enddate, - sc.id_staffgroup, - sc.weekhours, - sc.weekdays - FROM (portanova.staff st - LEFT JOIN portanova.staffcontract sc ON ((st.id = sc.id_staff))); + st.id_staffgroup, + sgr.groupname, + to_char(srp.payedhours, 'HH24:MI'::text) AS payedhours + FROM (((portanova.staffreportperiod srp + LEFT JOIN portanova.staff st ON ((srp.id_staff = st.id))) + LEFT JOIN portanova.reportperiod rp ON ((srp.id_reportperiod = rp.id))) + LEFT JOIN portanova.staffgroups sgr ON ((st.id_staffgroup = sgr.id))) + ORDER BY st.surname, st.prename, srp.id_staff, rp.startdate, rp.enddate; -- @@ -2616,6 +1772,58 @@ CREATE VIEW portanova.vw_vacancylist AS FROM portanova.vacancytypes; +-- +-- Name: workplandays; Type: TABLE; Schema: portanova; Owner: - +-- + +CREATE TABLE portanova.workplandays ( + id integer NOT NULL, + id_workplan integer, + weekday integer, + start1 time without time zone, + end1 time without time zone, + start2 time without time zone, + end2 time without time zone, + pause time without time zone +); + + +-- +-- Name: vw_workplandaysdata; Type: VIEW; Schema: portanova; Owner: - +-- + +CREATE VIEW portanova.vw_workplandaysdata AS + SELECT workplandays.id, + workplandays.id_workplan, + workplandays.weekday, + workplandays.start1, + workplandays.end1, + workplandays.start2, + workplandays.end2, + workplandays.pause + FROM portanova.workplandays; + + +-- +-- Name: vw_workplandayslist; Type: VIEW; Schema: portanova; Owner: - +-- + +CREATE VIEW portanova.vw_workplandayslist AS +SELECT + NULL::text AS workplan, + NULL::text AS weekhours, + NULL::integer AS id, + NULL::integer AS id_workplan, + NULL::integer AS weekday, + NULL::text AS start1, + NULL::text AS end1, + NULL::text AS start2, + NULL::text AS end2, + NULL::text AS pause, + NULL::text AS dayhours, + NULL::bigint AS staffcount; + + -- -- Name: vw_workplanlist; Type: VIEW; Schema: portanova; Owner: - -- @@ -2627,138 +1835,58 @@ CREATE VIEW portanova.vw_workplanlist AS -- --- Name: vw_workplansdata; Type: VIEW; Schema: portanova; Owner: - +-- Name: worktimes; Type: TABLE; Schema: portanova; Owner: - -- -CREATE VIEW portanova.vw_workplansdata AS - SELECT workplans.id, - workplans.workplan, - to_char(((((((COALESCE(( - CASE - WHEN (workplans.mon_timeend2 IS NOT NULL) THEN ((workplans.mon_timeend2 - workplans.mon_timestart1) - (workplans.mon_timestart2 - workplans.mon_timeend1)) - ELSE (workplans.mon_timeend1 - workplans.mon_timestart1) - END - COALESCE((workplans.mon_timepause)::interval, '00:00:00'::interval)), '00:00:00'::interval) + COALESCE(( - CASE - WHEN (workplans.tue_timeend2 IS NOT NULL) THEN ((workplans.tue_timeend2 - workplans.tue_timestart1) - (workplans.tue_timestart2 - workplans.tue_timeend1)) - ELSE (workplans.tue_timeend1 - workplans.tue_timestart1) - END - COALESCE((workplans.tue_timepause)::interval, '00:00:00'::interval)), '00:00:00'::interval)) + COALESCE(( - CASE - WHEN (workplans.wed_timeend2 IS NOT NULL) THEN ((workplans.wed_timeend2 - workplans.wed_timestart1) - (workplans.wed_timestart2 - workplans.wed_timeend1)) - ELSE (workplans.wed_timeend1 - workplans.wed_timestart1) - END - COALESCE((workplans.wed_timepause)::interval, '00:00:00'::interval)), '00:00:00'::interval)) + COALESCE(( - CASE - WHEN (workplans.thu_timeend2 IS NOT NULL) THEN ((workplans.thu_timeend2 - workplans.thu_timestart1) - (workplans.thu_timestart2 - workplans.thu_timeend1)) - ELSE (workplans.thu_timeend1 - workplans.thu_timestart1) - END - COALESCE((workplans.thu_timepause)::interval, '00:00:00'::interval)), '00:00:00'::interval)) + COALESCE(( - CASE - WHEN (workplans.fri_timeend2 IS NOT NULL) THEN ((workplans.fri_timeend2 - workplans.fri_timestart1) - (workplans.fri_timestart2 - workplans.fri_timeend1)) - ELSE (workplans.fri_timeend1 - workplans.fri_timestart1) - END - COALESCE((workplans.fri_timepause)::interval, '00:00:00'::interval)), '00:00:00'::interval)) + COALESCE(( - CASE - WHEN (workplans.sat_timeend2 IS NOT NULL) THEN ((workplans.sat_timeend2 - workplans.sat_timestart1) - (workplans.sat_timestart2 - workplans.sat_timeend1)) - ELSE (workplans.sat_timeend1 - workplans.sat_timestart1) - END - COALESCE((workplans.sat_timepause)::interval, '00:00:00'::interval)), '00:00:00'::interval)) + COALESCE(( - CASE - WHEN (workplans.sun_timeend2 IS NOT NULL) THEN ((workplans.sun_timeend2 - workplans.sun_timestart1) - (workplans.sun_timestart2 - workplans.sun_timeend1)) - ELSE (workplans.sun_timeend1 - workplans.sun_timestart1) - END - COALESCE((workplans.sun_timepause)::interval, '00:00:00'::interval)), '00:00:00'::interval)), 'HH24:MI'::text) AS weektotal, - to_char((workplans.mon_timestart1)::interval, 'HH24:MI'::text) AS mon_timestart1, - to_char((workplans.mon_timeend1)::interval, 'HH24:MI'::text) AS mon_timeend1, - to_char((workplans.mon_timestart2)::interval, 'HH24:MI'::text) AS mon_timestart2, - to_char((workplans.mon_timeend2)::interval, 'HH24:MI'::text) AS mon_timeend2, - to_char((workplans.mon_timepause)::interval, 'HH24:MI'::text) AS mon_timepause, - to_char((workplans.mon_timestart2 - workplans.mon_timeend1), 'HH24:MI'::text) AS mon_interruption, - to_char(( - CASE - WHEN (workplans.mon_timeend2 IS NOT NULL) THEN ((workplans.mon_timeend2 - workplans.mon_timestart1) - (workplans.mon_timestart2 - workplans.mon_timeend1)) - ELSE (workplans.mon_timeend1 - workplans.mon_timestart1) - END - COALESCE((workplans.mon_timepause)::interval, '00:00:00'::interval)), 'HH24:MI'::text) AS mon_total, - to_char((workplans.tue_timestart1)::interval, 'HH24:MI'::text) AS tue_timestart1, - to_char((workplans.tue_timeend1)::interval, 'HH24:MI'::text) AS tue_timeend1, - to_char((workplans.tue_timestart2)::interval, 'HH24:MI'::text) AS tue_timestart2, - to_char((workplans.tue_timeend2)::interval, 'HH24:MI'::text) AS tue_timeend2, - to_char((workplans.tue_timepause)::interval, 'HH24:MI'::text) AS tue_timepause, - to_char((workplans.tue_timestart2 - workplans.tue_timeend1), 'HH24:MI'::text) AS tue_interruption, - to_char(( - CASE - WHEN (workplans.tue_timeend2 IS NOT NULL) THEN ((workplans.tue_timeend2 - workplans.tue_timestart1) - (workplans.tue_timestart2 - workplans.tue_timeend1)) - ELSE (workplans.tue_timeend1 - workplans.tue_timestart1) - END - COALESCE((workplans.tue_timepause)::interval, '00:00:00'::interval)), 'HH24:MI'::text) AS tue_total, - to_char((workplans.wed_timestart1)::interval, 'HH24:MI'::text) AS wed_timestart1, - to_char((workplans.wed_timeend1)::interval, 'HH24:MI'::text) AS wed_timeend1, - to_char((workplans.wed_timestart2)::interval, 'HH24:MI'::text) AS wed_timestart2, - to_char((workplans.wed_timeend2)::interval, 'HH24:MI'::text) AS wed_timeend2, - to_char((workplans.wed_timepause)::interval, 'HH24:MI'::text) AS wed_timepause, - to_char((workplans.wed_timestart2 - workplans.wed_timeend1), 'HH24:MI'::text) AS wed_interruption, - to_char(( - CASE - WHEN (workplans.wed_timeend2 IS NOT NULL) THEN ((workplans.wed_timeend2 - workplans.wed_timestart1) - (workplans.wed_timestart2 - workplans.wed_timeend1)) - ELSE (workplans.wed_timeend1 - workplans.wed_timestart1) - END - COALESCE((workplans.wed_timepause)::interval, '00:00:00'::interval)), 'HH24:MI'::text) AS wed_total, - to_char((workplans.thu_timestart1)::interval, 'HH24:MI'::text) AS thu_timestart1, - to_char((workplans.thu_timeend1)::interval, 'HH24:MI'::text) AS thu_timeend1, - to_char((workplans.thu_timestart2)::interval, 'HH24:MI'::text) AS thu_timestart2, - to_char((workplans.thu_timeend2)::interval, 'HH24:MI'::text) AS thu_timeend2, - to_char((workplans.thu_timepause)::interval, 'HH24:MI'::text) AS thu_timepause, - to_char((workplans.thu_timestart2 - workplans.thu_timeend1), 'HH24:MI'::text) AS thu_interruption, - to_char(( - CASE - WHEN (workplans.thu_timeend2 IS NOT NULL) THEN ((workplans.thu_timeend2 - workplans.thu_timestart1) - (workplans.thu_timestart2 - workplans.thu_timeend1)) - ELSE (workplans.thu_timeend1 - workplans.thu_timestart1) - END - COALESCE((workplans.thu_timepause)::interval, '00:00:00'::interval)), 'HH24:MI'::text) AS thu_total, - to_char((workplans.fri_timestart1)::interval, 'HH24:MI'::text) AS fri_timestart1, - to_char((workplans.fri_timeend1)::interval, 'HH24:MI'::text) AS fri_timeend1, - to_char((workplans.fri_timestart2)::interval, 'HH24:MI'::text) AS fri_timestart2, - to_char((workplans.fri_timeend2)::interval, 'HH24:MI'::text) AS fri_timeend2, - to_char((workplans.fri_timepause)::interval, 'HH24:MI'::text) AS fri_timepause, - to_char((workplans.fri_timestart2 - workplans.fri_timeend1), 'HH24:MI'::text) AS fri_interruption, - to_char(( - CASE - WHEN (workplans.fri_timeend2 IS NOT NULL) THEN ((workplans.fri_timeend2 - workplans.fri_timestart1) - (workplans.fri_timestart2 - workplans.fri_timeend1)) - ELSE (workplans.fri_timeend1 - workplans.fri_timestart1) - END - COALESCE((workplans.fri_timepause)::interval, '00:00:00'::interval)), 'HH24:MI'::text) AS fri_total, - to_char((workplans.sat_timestart1)::interval, 'HH24:MI'::text) AS sat_timestart1, - to_char((workplans.sat_timeend1)::interval, 'HH24:MI'::text) AS sat_timeend1, - to_char((workplans.sat_timestart2)::interval, 'HH24:MI'::text) AS sat_timestart2, - to_char((workplans.sat_timeend2)::interval, 'HH24:MI'::text) AS sat_timeend2, - to_char((workplans.sat_timepause)::interval, 'HH24:MI'::text) AS sat_timepause, - to_char((workplans.sat_timestart2 - workplans.sat_timeend1), 'HH24:MI'::text) AS sat_interruption, - to_char(( - CASE - WHEN (workplans.sat_timeend2 IS NOT NULL) THEN ((workplans.sat_timeend2 - workplans.sat_timestart1) - (workplans.sat_timestart2 - workplans.sat_timeend1)) - ELSE (workplans.sat_timeend1 - workplans.sat_timestart1) - END - COALESCE((workplans.sat_timepause)::interval, '00:00:00'::interval)), 'HH24:MI'::text) AS sat_total, - to_char((workplans.sun_timestart1)::interval, 'HH24:MI'::text) AS sun_timestart1, - to_char((workplans.sun_timeend1)::interval, 'HH24:MI'::text) AS sun_timeend1, - to_char((workplans.sun_timestart2)::interval, 'HH24:MI'::text) AS sun_timestart2, - to_char((workplans.sun_timeend2)::interval, 'HH24:MI'::text) AS sun_timeend2, - to_char((workplans.sun_timepause)::interval, 'HH24:MI'::text) AS sun_timepause, - to_char((workplans.sun_timestart2 - workplans.sat_timeend1), 'HH24:MI'::text) AS sun_interruption, - to_char(( - CASE - WHEN (workplans.sun_timeend2 IS NOT NULL) THEN ((workplans.sun_timeend2 - workplans.sun_timestart1) - (workplans.sun_timestart2 - workplans.sun_timeend1)) - ELSE (workplans.sun_timeend1 - workplans.sun_timestart1) - END - COALESCE((workplans.sun_timepause)::interval, '00:00:00'::interval)), 'HH24:MI'::text) AS sun_total - FROM portanova.workplans; +CREATE TABLE portanova.worktimes ( + id integer NOT NULL, + startdate date, + enddate date, + defaultdayhours interval, + maxdayhours interval, + defaultweekhours interval, + maxweekhours interval, + maxinterruptionhours interval, + isdefault boolean +); -- --- Name: vw_workplans; Type: VIEW; Schema: portanova; Owner: - +-- Name: vw_worktimeslist; Type: VIEW; Schema: portanova; Owner: - -- -CREATE VIEW portanova.vw_workplans AS - SELECT workplans.id, - workplans.workplan, - vw_workplansdata.weektotal, - ((((COALESCE(((to_char((workplans.mon_timestart1)::interval, 'HH24:MI'::text) || ' - '::text) || to_char((workplans.mon_timeend1)::interval, 'HH24:MI'::text)), ''::text) || COALESCE(((('
'::text || to_char((workplans.mon_timestart2)::interval, 'HH24:MI'::text)) || ' - '::text) || to_char((workplans.mon_timeend2)::interval, 'HH24:MI'::text)), ''::text)) || COALESCE((('
'::text || 'Pause: '::text) || to_char((workplans.mon_timepause)::interval, 'HH24:MI'::text)), ''::text)) || COALESCE((('
'::text || 'Coupure: '::text) || vw_workplansdata.mon_interruption), ''::text)) || COALESCE((('
'::text || 'Total: '::text) || vw_workplansdata.mon_total), ''::text)) AS dspmontimes, - ((((COALESCE(((to_char((workplans.tue_timestart1)::interval, 'HH24:MI'::text) || ' - '::text) || to_char((workplans.tue_timeend1)::interval, 'HH24:MI'::text)), ''::text) || COALESCE(((('
'::text || to_char((workplans.tue_timestart2)::interval, 'HH24:MI'::text)) || ' - '::text) || to_char((workplans.tue_timeend2)::interval, 'HH24:MI'::text)), ''::text)) || COALESCE((('
'::text || 'Pause: '::text) || to_char((workplans.tue_timepause)::interval, 'HH24:MI'::text)), ''::text)) || COALESCE((('
'::text || 'Coupure: '::text) || vw_workplansdata.tue_interruption), ''::text)) || COALESCE((('
'::text || 'Total: '::text) || vw_workplansdata.tue_total), ''::text)) AS dsptuetimes, - ((((COALESCE(((to_char((workplans.wed_timestart1)::interval, 'HH24:MI'::text) || ' - '::text) || to_char((workplans.wed_timeend1)::interval, 'HH24:MI'::text)), ''::text) || COALESCE(((('
'::text || to_char((workplans.wed_timestart2)::interval, 'HH24:MI'::text)) || ' - '::text) || to_char((workplans.wed_timeend2)::interval, 'HH24:MI'::text)), ''::text)) || COALESCE((('
'::text || 'Pause: '::text) || to_char((workplans.wed_timepause)::interval, 'HH24:MI'::text)), ''::text)) || COALESCE((('
'::text || 'Coupure: '::text) || vw_workplansdata.wed_interruption), ''::text)) || COALESCE((('
'::text || 'Total: '::text) || vw_workplansdata.wed_total), ''::text)) AS dspwedtimes, - ((((COALESCE(((to_char((workplans.thu_timestart1)::interval, 'HH24:MI'::text) || ' - '::text) || to_char((workplans.thu_timeend1)::interval, 'HH24:MI'::text)), ''::text) || COALESCE(((('
'::text || to_char((workplans.thu_timestart2)::interval, 'HH24:MI'::text)) || ' - '::text) || to_char((workplans.thu_timeend2)::interval, 'HH24:MI'::text)), ''::text)) || COALESCE((('
'::text || 'Pause: '::text) || to_char((workplans.thu_timepause)::interval, 'HH24:MI'::text)), ''::text)) || COALESCE((('
'::text || 'Coupure: '::text) || vw_workplansdata.thu_interruption), ''::text)) || COALESCE((('
'::text || 'Total: '::text) || vw_workplansdata.thu_total), ''::text)) AS dspthutimes, - ((((COALESCE(((to_char((workplans.fri_timestart1)::interval, 'HH24:MI'::text) || ' -'::text) || to_char((workplans.fri_timeend1)::interval, 'HH24:MI'::text)), ''::text) || COALESCE(((('
'::text || to_char((workplans.fri_timestart2)::interval, 'HH24:MI'::text)) || ' - '::text) || to_char((workplans.fri_timeend2)::interval, 'HH24:MI'::text)), ''::text)) || COALESCE((('
'::text || 'Pause: '::text) || to_char((workplans.fri_timepause)::interval, 'HH24:MI'::text)), ''::text)) || COALESCE((('
'::text || 'Coupure: '::text) || vw_workplansdata.fri_interruption), ''::text)) || COALESCE((('
'::text || 'Total: '::text) || vw_workplansdata.fri_total), ''::text)) AS dspfritimes, - ((((COALESCE(((to_char((workplans.sat_timestart1)::interval, 'HH24:MI'::text) || ' - '::text) || to_char((workplans.sat_timeend1)::interval, 'HH24:MI'::text)), ''::text) || COALESCE(((('
'::text || to_char((workplans.sat_timestart2)::interval, 'HH24:MI'::text)) || ' - '::text) || to_char((workplans.sat_timeend2)::interval, 'HH24:MI'::text)), ''::text)) || COALESCE((('
'::text || 'Pause: '::text) || to_char((workplans.sat_timepause)::interval, 'HH24:MI'::text)), ''::text)) || COALESCE((('
'::text || 'Coupure: '::text) || vw_workplansdata.sat_interruption), ''::text)) || COALESCE((('
'::text || 'Total: '::text) || vw_workplansdata.sat_total), ''::text)) AS dspsattimes, - ((((COALESCE(((to_char((workplans.sun_timestart1)::interval, 'HH24:MI'::text) || ' - '::text) || to_char((workplans.sun_timeend1)::interval, 'HH24:MI'::text)), ''::text) || COALESCE(((('
'::text || to_char((workplans.sun_timestart2)::interval, 'HH24:MI'::text)) || ' - '::text) || to_char((workplans.sun_timeend2)::interval, 'HH24:MI'::text)), ''::text)) || COALESCE((('
'::text || 'Pause: '::text) || to_char((workplans.sun_timepause)::interval, 'HH24:MI'::text)), ''::text)) || COALESCE((('
'::text || 'Coupure: '::text) || vw_workplansdata.sun_interruption), ''::text)) || COALESCE((('
'::text || 'Total: '::text) || vw_workplansdata.sun_total), ''::text)) AS dspsuntimes - FROM (portanova.workplans - JOIN portanova.vw_workplansdata ON ((workplans.id = vw_workplansdata.id))); +CREATE VIEW portanova.vw_worktimeslist AS + SELECT worktimes.id, + worktimes.startdate, + worktimes.enddate, + worktimes.isdefault, + to_char(worktimes.defaultdayhours, 'HH24:MI'::text) AS defaultdayhours, + to_char(worktimes.maxdayhours, 'HH24:MI'::text) AS maxdayhours, + to_char(worktimes.defaultweekhours, 'HH24:MI'::text) AS defaultweekhours, + to_char(worktimes.maxweekhours, 'HH24:MI'::text) AS maxweekhours, + to_char(worktimes.maxinterruptionhours, 'HH24:MI'::text) AS maxinterruptionhours + FROM portanova.worktimes + ORDER BY worktimes.startdate NULLS FIRST, worktimes.enddate NULLS FIRST; + + +-- +-- Name: workplandays_id_seq; Type: SEQUENCE; Schema: portanova; Owner: - +-- + +CREATE SEQUENCE portanova.workplandays_id_seq + AS integer + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: workplandays_id_seq; Type: SEQUENCE OWNED BY; Schema: portanova; Owner: - +-- + +ALTER SEQUENCE portanova.workplandays_id_seq OWNED BY portanova.workplandays.id; -- @@ -2782,10 +1910,10 @@ ALTER SEQUENCE portanova.workplans_id_seq OWNED BY portanova.workplans.id; -- --- Name: worktypes_id_seq; Type: SEQUENCE; Schema: portanova; Owner: - +-- Name: worktimes_id_seq; Type: SEQUENCE; Schema: portanova; Owner: - -- -CREATE SEQUENCE portanova.worktypes_id_seq +CREATE SEQUENCE portanova.worktimes_id_seq AS integer START WITH 1 INCREMENT BY 1 @@ -2795,46 +1923,30 @@ CREATE SEQUENCE portanova.worktypes_id_seq -- --- Name: worktypes_id_seq; Type: SEQUENCE OWNED BY; Schema: portanova; Owner: - +-- Name: worktimes_id_seq; Type: SEQUENCE OWNED BY; Schema: portanova; Owner: - -- -ALTER SEQUENCE portanova.worktypes_id_seq OWNED BY portanova.vacancytypes.id; +ALTER SEQUENCE portanova.worktimes_id_seq OWNED BY portanova.worktimes.id; -- --- Name: zzold_vw_staffworkplanlist; Type: VIEW; Schema: portanova; Owner: - +-- Name: worktypes_id_seq; Type: SEQUENCE; Schema: portanova; Owner: - -- -CREATE VIEW portanova.zzold_vw_staffworkplanlist AS -SELECT - NULL::double precision AS calweek, - NULL::double precision AS calyear, - NULL::date AS weekstart, - NULL::date AS weekend, - NULL::text AS dates, - NULL::integer AS id_staff, - NULL::text AS dspstaffname, - NULL::integer AS id_staffgroup, - NULL::text AS dspweektotals, - NULL::interval AS contracthours, - NULL::interval AS plannedhours, - NULL::interval AS vacancyhours, - NULL::interval AS recuperationhours, - NULL::interval AS hoursdiff, - NULL::bigint AS mon_id, - NULL::text AS dspmontimes, - NULL::bigint AS tue_id, - NULL::text AS dsptuetimes, - NULL::bigint AS wed_id, - NULL::text AS dspwedtimes, - NULL::bigint AS thu_id, - NULL::text AS dspthutimes, - NULL::bigint AS fri_id, - NULL::text AS dspfritimes, - NULL::bigint AS sat_id, - NULL::text AS dspsattimes, - NULL::bigint AS sun_id, - NULL::text AS dspsuntimes; +CREATE SEQUENCE portanova.worktypes_id_seq + AS integer + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: worktypes_id_seq; Type: SEQUENCE OWNED BY; Schema: portanova; Owner: - +-- + +ALTER SEQUENCE portanova.worktypes_id_seq OWNED BY portanova.vacancytypes.id; -- @@ -6015,13 +5127,6 @@ ALTER TABLE ONLY demo.stations ALTER COLUMN id SET DEFAULT nextval('demo.station ALTER TABLE ONLY demo.timetrackuser ALTER COLUMN id SET DEFAULT nextval('demo.timetrackuser_id_seq'::regclass); --- --- Name: editlog id; Type: DEFAULT; Schema: portanova; Owner: - --- - -ALTER TABLE ONLY portanova.editlog ALTER COLUMN id SET DEFAULT nextval('portanova.editlog_id_seq'::regclass); - - -- -- Name: reportperiod id; Type: DEFAULT; Schema: portanova; Owner: - -- @@ -6092,6 +5197,13 @@ ALTER TABLE ONLY portanova.vacancydays ALTER COLUMN id SET DEFAULT nextval('port ALTER TABLE ONLY portanova.vacancytypes ALTER COLUMN id SET DEFAULT nextval('portanova.worktypes_id_seq'::regclass); +-- +-- Name: workplandays id; Type: DEFAULT; Schema: portanova; Owner: - +-- + +ALTER TABLE ONLY portanova.workplandays ALTER COLUMN id SET DEFAULT nextval('portanova.workplandays_id_seq'::regclass); + + -- -- Name: workplans id; Type: DEFAULT; Schema: portanova; Owner: - -- @@ -6100,10 +5212,10 @@ ALTER TABLE ONLY portanova.workplans ALTER COLUMN id SET DEFAULT nextval('portan -- --- Name: zzold_staffreportperiodsums id; Type: DEFAULT; Schema: portanova; Owner: - +-- Name: worktimes id; Type: DEFAULT; Schema: portanova; Owner: - -- -ALTER TABLE ONLY portanova.zzold_staffreportperiodsums ALTER COLUMN id SET DEFAULT nextval('portanova.staffreportperiodsums_id_seq'::regclass); +ALTER TABLE ONLY portanova.worktimes ALTER COLUMN id SET DEFAULT nextval('portanova.worktimes_id_seq'::regclass); -- @@ -6365,14 +5477,6 @@ ALTER TABLE ONLY demo.timetrackuser ADD CONSTRAINT timetrackuser_pkey PRIMARY KEY (id); --- --- Name: editlog editlog_pkey; Type: CONSTRAINT; Schema: portanova; Owner: - --- - -ALTER TABLE ONLY portanova.editlog - ADD CONSTRAINT editlog_pkey PRIMARY KEY (id); - - -- -- Name: reportperiod reportperiod_pkey; Type: CONSTRAINT; Schema: portanova; Owner: - -- @@ -6413,14 +5517,6 @@ ALTER TABLE ONLY portanova.staffreportperiod ADD CONSTRAINT staffreportperiod_pkey PRIMARY KEY (id); --- --- Name: zzold_staffreportperiodsums staffreportperiodsums_pkey; Type: CONSTRAINT; Schema: portanova; Owner: - --- - -ALTER TABLE ONLY portanova.zzold_staffreportperiodsums - ADD CONSTRAINT staffreportperiodsums_pkey PRIMARY KEY (id); - - -- -- Name: staffvacancy staffvacancy_pkey; Type: CONSTRAINT; Schema: portanova; Owner: - -- @@ -6445,14 +5541,6 @@ ALTER TABLE ONLY portanova.staffreportperioddays ADD CONSTRAINT staffworkplan_pkey PRIMARY KEY (id); --- --- Name: zzold_staffreportperiodsums uniq_staffperiod_cal; Type: CONSTRAINT; Schema: portanova; Owner: - --- - -ALTER TABLE ONLY portanova.zzold_staffreportperiodsums - ADD CONSTRAINT uniq_staffperiod_cal UNIQUE (id_reportperiod, id_staff); - - -- -- Name: staffreportperiod uniq_staffreportperiod_cal; Type: CONSTRAINT; Schema: portanova; Owner: - -- @@ -6485,6 +5573,22 @@ ALTER TABLE ONLY portanova.vacancydays ADD CONSTRAINT vacancydays_pkey PRIMARY KEY (id); +-- +-- Name: workplandays workplandays_pkey; Type: CONSTRAINT; Schema: portanova; Owner: - +-- + +ALTER TABLE ONLY portanova.workplandays + ADD CONSTRAINT workplandays_pkey PRIMARY KEY (id); + + +-- +-- Name: workplandays workplandays_un; Type: CONSTRAINT; Schema: portanova; Owner: - +-- + +ALTER TABLE ONLY portanova.workplandays + ADD CONSTRAINT workplandays_un UNIQUE (id_workplan, weekday); + + -- -- Name: workplans workplans_pkey; Type: CONSTRAINT; Schema: portanova; Owner: - -- @@ -6493,6 +5597,14 @@ ALTER TABLE ONLY portanova.workplans ADD CONSTRAINT workplans_pkey PRIMARY KEY (id); +-- +-- Name: worktimes worktimes_pkey; Type: CONSTRAINT; Schema: portanova; Owner: - +-- + +ALTER TABLE ONLY portanova.worktimes + ADD CONSTRAINT worktimes_pkey PRIMARY KEY (id); + + -- -- Name: vacancytypes worktypes_pkey; Type: CONSTRAINT; Schema: portanova; Owner: - -- @@ -6742,120 +5854,27 @@ ALTER TABLE ONLY test2.worktypes -- --- Name: zzold_vw_staffworkplanlist _RETURN; Type: RULE; Schema: portanova; Owner: - +-- Name: vw_workplandayslist _RETURN; Type: RULE; Schema: portanova; Owner: - -- -CREATE OR REPLACE VIEW portanova.zzold_vw_staffworkplanlist AS - SELECT stw2.calweek, - stw2.calyear, - stw2.caldate AS weekstart, - date((stw2.caldate + '6 days'::interval)) AS weekend, - public.getdateslist(stw2.caldate, 7) AS dates, - stw2.id_staff, - stw2.staffname AS dspstaffname, - stw2.id_staffgroup, - (((((((((((((((((((''::text || ''::text) || ''::text) || ''::text) || ''::text) || ''::text) || '
'::text) || 'Semaine '::text) || stw2.calweek) || '
Contrat:'::text) || to_char(sws.contracthours, 'HH24:MI'::text)) || '
Plan:'::text) || to_char(sws.workhours, 'HH24:MI'::text)) || '
Congé:'::text) || to_char(sws.vacancyhours, 'HH24:MI'::text)) || '
Récup:'::text) || to_char(sws.recuperationhours, 'HH24:MI'::text)) || '
A récup:'::text) || to_char(sws.diffhours, 'HH24:MI'::text)) || '
'::text) AS dspweektotals, - sws.contracthours, - sws.workhours AS plannedhours, - sws.vacancyhours, - sws.recuperationhours, - sws.diffhours AS hoursdiff, - max( - CASE - WHEN (stw2.isodow = 1) THEN stw2.id - ELSE NULL::bigint - END) AS mon_id, - max( - CASE - WHEN (stw2.isodow = 1) THEN ((((((((''::text || ''::text) || (COALESCE((((''::text), ''::text) || COALESCE(((((''::text), ''::text))) || COALESCE(((''::text), ''::text)) || COALESCE(((''::text), ''::text)) || COALESCE(((((((((''::text), ''::text)) || '
'::text) || to_char((stw2.caldate)::timestamp with time zone, 'DD.MM.YYYY'::text)) || '
'::text || (to_char((stw2.timestart1)::interval, 'HH24:MI'::text) || ' - '::text)) || to_char((stw2.timeend1)::interval, 'HH24:MI'::text)) || '
'::text || to_char((stw2.timestart2)::interval, 'HH24:MI'::text)) || ' - '::text) || to_char((stw2.timeend2)::interval, 'HH24:MI'::text)) || '
Pause:'::text || to_char((stw2.timepause)::interval, 'HH24:MI'::text)) || '
Plan:'::text || to_char((stw2.totaltime)::interval, 'HH24:MI'::text)) || '
'::text) || stw2.vacancyname) || ':'::text) || to_char((stw2.vacancyhours)::interval, 'HH24:MI'::text)) || '
'::text) - ELSE NULL::text - END) AS dspmontimes, - max( - CASE - WHEN (stw2.isodow = 2) THEN stw2.id - ELSE NULL::bigint - END) AS tue_id, - max( - CASE - WHEN (stw2.isodow = 2) THEN ((((((((''::text || ''::text) || (COALESCE((((''::text), ''::text) || COALESCE(((((''::text), ''::text))) || COALESCE(((''::text), ''::text)) || COALESCE(((''::text), ''::text)) || COALESCE(((((((((''::text), ''::text)) || '
'::text) || to_char((date((stw2.caldate + '1 day'::interval)))::timestamp with time zone, 'DD.MM.YYYY'::text)) || '
'::text || (to_char((stw2.timestart1)::interval, 'HH24:MI'::text) || ' - '::text)) || to_char((stw2.timeend1)::interval, 'HH24:MI'::text)) || '
'::text || to_char((stw2.timestart2)::interval, 'HH24:MI'::text)) || ' - '::text) || to_char((stw2.timeend2)::interval, 'HH24:MI'::text)) || '
Pause:'::text || to_char((stw2.timepause)::interval, 'HH24:MI'::text)) || '
Plan:'::text || to_char((stw2.totaltime)::interval, 'HH24:MI'::text)) || '
'::text) || stw2.vacancyname) || ':'::text) || to_char((stw2.vacancyhours)::interval, 'HH24:MI'::text)) || '
'::text) - ELSE NULL::text - END) AS dsptuetimes, - max( - CASE - WHEN (stw2.isodow = 3) THEN stw2.id - ELSE NULL::bigint - END) AS wed_id, - max( - CASE - WHEN (stw2.isodow = 3) THEN ((((((((''::text || ''::text) || (COALESCE((((''::text), ''::text) || COALESCE(((((''::text), ''::text))) || COALESCE(((''::text), ''::text)) || COALESCE(((''::text), ''::text)) || COALESCE(((((((((''::text), ''::text)) || '
'::text) || to_char((date((stw2.caldate + '2 days'::interval)))::timestamp with time zone, 'DD.MM.YYYY'::text)) || '
'::text || (to_char((stw2.timestart1)::interval, 'HH24:MI'::text) || ' - '::text)) || to_char((stw2.timeend1)::interval, 'HH24:MI'::text)) || '
'::text || to_char((stw2.timestart2)::interval, 'HH24:MI'::text)) || ' - '::text) || to_char((stw2.timeend2)::interval, 'HH24:MI'::text)) || '
Pause:'::text || to_char((stw2.timepause)::interval, 'HH24:MI'::text)) || '
Plan:'::text || to_char((stw2.totaltime)::interval, 'HH24:MI'::text)) || '
'::text) || stw2.vacancyname) || ':'::text) || to_char((stw2.vacancyhours)::interval, 'HH24:MI'::text)) || '
'::text) - ELSE NULL::text - END) AS dspwedtimes, - max( - CASE - WHEN (stw2.isodow = 4) THEN stw2.id - ELSE NULL::bigint - END) AS thu_id, - max( - CASE - WHEN (stw2.isodow = 4) THEN ((((((((''::text || ''::text) || (COALESCE((((''::text), ''::text) || COALESCE(((((''::text), ''::text))) || COALESCE(((''::text), ''::text)) || COALESCE(((''::text), ''::text)) || COALESCE(((((((((''::text), ''::text)) || '
'::text) || to_char((date((stw2.caldate + '3 days'::interval)))::timestamp with time zone, 'DD.MM.YYYY'::text)) || '
'::text || (to_char((stw2.timestart1)::interval, 'HH24:MI'::text) || ' - '::text)) || to_char((stw2.timeend1)::interval, 'HH24:MI'::text)) || '
'::text || to_char((stw2.timestart2)::interval, 'HH24:MI'::text)) || ' - '::text) || to_char((stw2.timeend2)::interval, 'HH24:MI'::text)) || '
Pause:'::text || to_char((stw2.timepause)::interval, 'HH24:MI'::text)) || '
Plan:'::text || to_char((stw2.totaltime)::interval, 'HH24:MI'::text)) || '
'::text) || stw2.vacancyname) || ':'::text) || to_char((stw2.vacancyhours)::interval, 'HH24:MI'::text)) || '
'::text) - ELSE NULL::text - END) AS dspthutimes, - max( - CASE - WHEN (stw2.isodow = 5) THEN stw2.id - ELSE NULL::bigint - END) AS fri_id, - max( - CASE - WHEN (stw2.isodow = 5) THEN ((((((((''::text || ''::text) || (COALESCE((((''::text), ''::text) || COALESCE(((((''::text), ''::text))) || COALESCE(((''::text), ''::text)) || COALESCE(((''::text), ''::text)) || COALESCE(((((((((''::text), ''::text)) || '
'::text) || to_char((date((stw2.caldate + '4 days'::interval)))::timestamp with time zone, 'DD.MM.YYYY'::text)) || '
'::text || (to_char((stw2.timestart1)::interval, 'HH24:MI'::text) || ' - '::text)) || to_char((stw2.timeend1)::interval, 'HH24:MI'::text)) || '
'::text || to_char((stw2.timestart2)::interval, 'HH24:MI'::text)) || ' - '::text) || to_char((stw2.timeend2)::interval, 'HH24:MI'::text)) || '
Pause:'::text || to_char((stw2.timepause)::interval, 'HH24:MI'::text)) || '
Plan:'::text || to_char((stw2.totaltime)::interval, 'HH24:MI'::text)) || '
'::text) || stw2.vacancyname) || ':'::text) || to_char((stw2.vacancyhours)::interval, 'HH24:MI'::text)) || '
'::text) - ELSE NULL::text - END) AS dspfritimes, - max( - CASE - WHEN (stw2.isodow = 6) THEN stw2.id - ELSE NULL::bigint - END) AS sat_id, - max( - CASE - WHEN (stw2.isodow = 6) THEN (((((((((''::text || ''::text) || COALESCE(((((''::text), ''::text)) || COALESCE(((((''::text), ''::text)) || COALESCE(((''::text), ''::text)) || COALESCE(((''::text), ''::text)) || COALESCE(((((((((''::text), ''::text)) || '
'::text) || to_char((date((stw2.caldate + '5 days'::interval)))::timestamp with time zone, 'DD.MM.YYYY'::text)) || '
'::text || to_char((stw2.timestart1)::interval, 'HH24:MI'::text)) || ' - '::text) || to_char((stw2.timeend1)::interval, 'HH24:MI'::text)) || '
'::text || to_char((stw2.timestart2)::interval, 'HH24:MI'::text)) || ' - '::text) || to_char((stw2.timeend2)::interval, 'HH24:MI'::text)) || '
Pause:'::text || to_char((stw2.timepause)::interval, 'HH24:MI'::text)) || '
Plan:'::text || to_char((stw2.totaltime)::interval, 'HH24:MI'::text)) || '
'::text) || stw2.vacancyname) || ':'::text) || to_char((stw2.vacancyhours)::interval, 'HH24:MI'::text)) || '
'::text) - ELSE NULL::text - END) AS dspsattimes, - max( - CASE - WHEN (stw2.isodow = 7) THEN stw2.id - ELSE NULL::bigint - END) AS sun_id, - max( - CASE - WHEN (stw2.isodow = 7) THEN (((((((((''::text || ''::text) || COALESCE((((''::text), ''::text)) || COALESCE(((((''::text), ''::text)) || COALESCE(((''::text), ''::text)) || COALESCE(((''::text), ''::text)) || COALESCE(((((((((''::text), ''::text)) || '
'::text) || to_char((date((stw2.caldate + '6 days'::interval)))::timestamp with time zone, 'DD.MM.YYYY'::text)) || '
'::text || (to_char((stw2.timestart1)::interval, 'HH24:MI'::text) || ' - '::text)) || to_char((stw2.timeend1)::interval, 'HH24:MI'::text)) || '
'::text || to_char((stw2.timestart2)::interval, 'HH24:MI'::text)) || ' - '::text) || to_char((stw2.timeend2)::interval, 'HH24:MI'::text)) || '
Pause:'::text || to_char((stw2.timepause)::interval, 'HH24:MI'::text)) || '
Plan:'::text || to_char((stw2.totaltime)::interval, 'HH24:MI'::text)) || '
'::text) || stw2.vacancyname) || ':'::text) || to_char((stw2.vacancyhours)::interval, 'HH24:MI'::text)) || '
'::text) - ELSE NULL::text - END) AS dspsuntimes - FROM (( SELECT date_part('isoyear'::text, stw.daydate) AS calyear, - date_part('week'::text, stw.daydate) AS calweek, - (date_trunc('week'::text, (stw.daydate)::timestamp with time zone))::date AS caldate, - (date_part('isodow'::text, stw.daydate))::integer AS isodow, - ((st.surname || ' '::text) || st.prename) AS staffname, - stw.daydate, - stw.id, - stw.id_staff, - stw.timestart1, - stw.timeend1, - stw.timestart2, - stw.timeend2, - stw.timepause, - stw.dayhours AS totaltime, - stw.vacancyhours, - stw.id_vacancytype, - stw.id_staffgroup, - stw.daytype, - vt.color, - vt.vacancyname - FROM ((portanova.staffreportperioddays stw - LEFT JOIN portanova.staff st ON ((stw.id_staff = st.id))) - LEFT JOIN portanova.vacancytypes vt ON ((stw.id_vacancytype = vt.id)))) stw2 - LEFT JOIN portanova.staffreportperiodweeks sws ON (((sws.id_staff = stw2.id_staff) AND (sws.calweek = stw2.calweek) AND ((sws.calyear)::double precision = stw2.calyear)))) - GROUP BY stw2.calweek, stw2.calyear, stw2.caldate, stw2.id_staff, stw2.staffname, sws.id, stw2.id_staffgroup - ORDER BY stw2.staffname, stw2.id_staff, stw2.calweek; +CREATE OR REPLACE VIEW portanova.vw_workplandayslist AS + SELECT (((wp.workplan || ' - Salarié(s): '::text) || count(DISTINCT sc.id_staff)) || ''::text) AS workplan, + to_char(wp.weekhours, 'HH24:MI'::text) AS weekhours, + wpd.id, + wpd.id_workplan, + wpd.weekday, + to_char((wpd.start1)::interval, 'HH24:MI'::text) AS start1, + to_char((wpd.end1)::interval, 'HH24:MI'::text) AS end1, + to_char((wpd.start2)::interval, 'HH24:MI'::text) AS start2, + to_char((wpd.end2)::interval, 'HH24:MI'::text) AS end2, + to_char((wpd.pause)::interval, 'HH24:MI'::text) AS pause, + to_char((((wpd.end1 - wpd.start1) + COALESCE((wpd.end2 - wpd.start2), '00:00:00'::interval)) - COALESCE((wpd.pause)::interval, '00:00:00'::interval)), 'HH24:MI'::text) AS dayhours, + count(DISTINCT sc.id_staff) AS staffcount + FROM ((portanova.workplandays wpd + LEFT JOIN portanova.workplans wp ON ((wpd.id_workplan = wp.id))) + LEFT JOIN portanova.staffcontract sc ON ((sc.id_workplan = wp.id))) + GROUP BY wpd.id, wp.id + ORDER BY wp.workplan, wpd.weekday; -- @@ -6962,6 +5981,14 @@ ALTER TABLE ONLY portanova.staffreportperioddays ADD CONSTRAINT staffworkplan_fk_1 FOREIGN KEY (id_staffgroup) REFERENCES portanova.staffgroups(id); +-- +-- Name: workplandays workplandays_fk; Type: FK CONSTRAINT; Schema: portanova; Owner: - +-- + +ALTER TABLE ONLY portanova.workplandays + ADD CONSTRAINT workplandays_fk FOREIGN KEY (id_workplan) REFERENCES portanova.workplans(id); + + -- -- Name: apps apps_usergroups_fk; Type: FK CONSTRAINT; Schema: public; Owner: - -- diff --git a/dev/db/potlu_db.portanova.pg.data.sql b/dev/db/potlu_db.portanova.pg.data.sql index 939810db..2b378c73 100644 --- a/dev/db/potlu_db.portanova.pg.data.sql +++ b/dev/db/potlu_db.portanova.pg.data.sql @@ -16,18 +16,14 @@ SET xmloption = content; SET client_min_messages = warning; SET row_security = off; --- --- Data for Name: editlog; Type: TABLE DATA; Schema: portanova; Owner: - --- - - - -- -- Data for Name: reportperiod; Type: TABLE DATA; Schema: portanova; Owner: - -- INSERT INTO portanova.reportperiod (id, periodname, startdate, enddate, id_parentreportperiod) VALUES (27, NULL, '2019-12-30', '2020-02-23', NULL); INSERT INTO portanova.reportperiod (id, periodname, startdate, enddate, id_parentreportperiod) VALUES (29, NULL, '2020-02-24', '2020-04-19', 27); +INSERT INTO portanova.reportperiod (id, periodname, startdate, enddate, id_parentreportperiod) VALUES (30, NULL, '2020-04-20', '2020-06-14', 29); +INSERT INTO portanova.reportperiod (id, periodname, startdate, enddate, id_parentreportperiod) VALUES (31, NULL, '2020-06-15', '2020-08-09', 30); -- @@ -99,5097 +95,10091 @@ INSERT INTO portanova.staffgroups (id, groupname, groupcolor, editoruser_ids, is -- Data for Name: staffcontract; Type: TABLE DATA; Schema: portanova; Owner: - -- -INSERT INTO portanova.staffcontract (id, id_staff, startdate, id_staffgroup, weekdays, enddate, id_workplan, weekhours) VALUES (69, 130, '2005-01-08', 1, 6, NULL, 6, '40:00:00'); -INSERT INTO portanova.staffcontract (id, id_staff, startdate, id_staffgroup, weekdays, enddate, id_workplan, weekhours) VALUES (90, 132, '2020-01-01', 1, 6, '2020-01-15', 6, '40:00:00'); -INSERT INTO portanova.staffcontract (id, id_staff, startdate, id_staffgroup, weekdays, enddate, id_workplan, weekhours) VALUES (71, 133, '2013-01-07', 1, 6, NULL, 6, '40:00:00'); -INSERT INTO portanova.staffcontract (id, id_staff, startdate, id_staffgroup, weekdays, enddate, id_workplan, weekhours) VALUES (85, 121, '2020-01-01', 2, 6, '2020-07-31', 6, '40:00:00'); -INSERT INTO portanova.staffcontract (id, id_staff, startdate, id_staffgroup, weekdays, enddate, id_workplan, weekhours) VALUES (70, 131, '1995-07-01', 1, 6, NULL, 6, '20:00:00'); -INSERT INTO portanova.staffcontract (id, id_staff, startdate, id_staffgroup, weekdays, enddate, id_workplan, weekhours) VALUES (77, 108, '2020-01-06', 2, 6, NULL, 6, '40:00:00'); -INSERT INTO portanova.staffcontract (id, id_staff, startdate, id_staffgroup, weekdays, enddate, id_workplan, weekhours) VALUES (108, 129, '2019-07-15', 1, 6, NULL, 6, '40:00:00'); -INSERT INTO portanova.staffcontract (id, id_staff, startdate, id_staffgroup, weekdays, enddate, id_workplan, weekhours) VALUES (82, 117, '2020-05-01', 2, 6, NULL, 1, '40:00:00'); -INSERT INTO portanova.staffcontract (id, id_staff, startdate, id_staffgroup, weekdays, enddate, id_workplan, weekhours) VALUES (72, 135, '2006-10-23', 1, 6, NULL, 6, '40:00:00'); -INSERT INTO portanova.staffcontract (id, id_staff, startdate, id_staffgroup, weekdays, enddate, id_workplan, weekhours) VALUES (73, 136, '1992-03-15', 1, 6, NULL, 6, '40:00:00'); -INSERT INTO portanova.staffcontract (id, id_staff, startdate, id_staffgroup, weekdays, enddate, id_workplan, weekhours) VALUES (79, 111, '2020-01-01', 2, 6, NULL, 6, '40:00:00'); -INSERT INTO portanova.staffcontract (id, id_staff, startdate, id_staffgroup, weekdays, enddate, id_workplan, weekhours) VALUES (87, 126, '2020-01-01', 1, 6, '2019-05-31', 6, '40:00:00'); -INSERT INTO portanova.staffcontract (id, id_staff, startdate, id_staffgroup, weekdays, enddate, id_workplan, weekhours) VALUES (88, 127, '2020-01-01', 1, 6, NULL, 6, '40:00:00'); -INSERT INTO portanova.staffcontract (id, id_staff, startdate, id_staffgroup, weekdays, enddate, id_workplan, weekhours) VALUES (89, 128, '2020-01-01', 1, 6, NULL, 6, '40:00:00'); -INSERT INTO portanova.staffcontract (id, id_staff, startdate, id_staffgroup, weekdays, enddate, id_workplan, weekhours) VALUES (56, 103, '2014-03-01', 4, 6, NULL, 1, '40:00:00'); -INSERT INTO portanova.staffcontract (id, id_staff, startdate, id_staffgroup, weekdays, enddate, id_workplan, weekhours) VALUES (57, 104, '2015-11-15', 4, 6, NULL, 1, '30:00:00'); -INSERT INTO portanova.staffcontract (id, id_staff, startdate, id_staffgroup, weekdays, enddate, id_workplan, weekhours) VALUES (60, 109, '2005-04-19', 2, 6, NULL, 1, '40:00:00'); -INSERT INTO portanova.staffcontract (id, id_staff, startdate, id_staffgroup, weekdays, enddate, id_workplan, weekhours) VALUES (61, 113, '2016-05-19', 2, 6, NULL, 1, '40:00:00'); -INSERT INTO portanova.staffcontract (id, id_staff, startdate, id_staffgroup, weekdays, enddate, id_workplan, weekhours) VALUES (91, 134, '2020-01-01', 1, 6, NULL, 6, '40:00:00'); -INSERT INTO portanova.staffcontract (id, id_staff, startdate, id_staffgroup, weekdays, enddate, id_workplan, weekhours) VALUES (62, 114, '2007-08-14', 2, 6, NULL, 1, '40:00:00'); -INSERT INTO portanova.staffcontract (id, id_staff, startdate, id_staffgroup, weekdays, enddate, id_workplan, weekhours) VALUES (63, 115, '2013-05-01', 2, 6, NULL, 1, '40:00:00'); -INSERT INTO portanova.staffcontract (id, id_staff, startdate, id_staffgroup, weekdays, enddate, id_workplan, weekhours) VALUES (64, 118, '2018-02-12', 2, 6, NULL, 1, '40:00:00'); -INSERT INTO portanova.staffcontract (id, id_staff, startdate, id_staffgroup, weekdays, enddate, id_workplan, weekhours) VALUES (75, 102, '2020-01-01', 4, 6, NULL, 1, '40:00:00'); -INSERT INTO portanova.staffcontract (id, id_staff, startdate, id_staffgroup, weekdays, enddate, id_workplan, weekhours) VALUES (78, 110, '2020-01-01', 2, 6, NULL, 1, '40:00:00'); -INSERT INTO portanova.staffcontract (id, id_staff, startdate, id_staffgroup, weekdays, enddate, id_workplan, weekhours) VALUES (80, 112, '2020-01-01', 2, 6, '2020-05-31', 1, '40:00:00'); -INSERT INTO portanova.staffcontract (id, id_staff, startdate, id_staffgroup, weekdays, enddate, id_workplan, weekhours) VALUES (81, 116, '2020-01-01', 2, 6, '2019-02-28', 1, '40:00:00'); -INSERT INTO portanova.staffcontract (id, id_staff, startdate, id_staffgroup, weekdays, enddate, id_workplan, weekhours) VALUES (83, 119, '2020-01-01', 2, 6, NULL, 1, '40:00:00'); -INSERT INTO portanova.staffcontract (id, id_staff, startdate, id_staffgroup, weekdays, enddate, id_workplan, weekhours) VALUES (84, 120, '2020-01-01', 2, 6, '2019-03-31', 1, '40:00:00'); -INSERT INTO portanova.staffcontract (id, id_staff, startdate, id_staffgroup, weekdays, enddate, id_workplan, weekhours) VALUES (93, 138, '2020-01-01', 1, 6, '2020-06-30', 6, '40:00:00'); -INSERT INTO portanova.staffcontract (id, id_staff, startdate, id_staffgroup, weekdays, enddate, id_workplan, weekhours) VALUES (66, 124, '2016-04-01', 2, 6, '2019-05-31', 1, '12:30:00'); -INSERT INTO portanova.staffcontract (id, id_staff, startdate, id_staffgroup, weekdays, enddate, id_workplan, weekhours) VALUES (99, 145, '2020-01-01', 2, 6, NULL, 6, '40:00:00'); -INSERT INTO portanova.staffcontract (id, id_staff, startdate, id_staffgroup, weekdays, enddate, id_workplan, weekhours) VALUES (58, 105, '2011-10-01', 2, 6, NULL, 6, '40:00:00'); -INSERT INTO portanova.staffcontract (id, id_staff, startdate, id_staffgroup, weekdays, enddate, id_workplan, weekhours) VALUES (59, 106, '2015-07-01', 2, 6, NULL, 1, '12:30:00'); -INSERT INTO portanova.staffcontract (id, id_staff, startdate, id_staffgroup, weekdays, enddate, id_workplan, weekhours) VALUES (65, 122, '2015-10-15', 2, 6, NULL, 1, '40:00:00'); -INSERT INTO portanova.staffcontract (id, id_staff, startdate, id_staffgroup, weekdays, enddate, id_workplan, weekhours) VALUES (76, 107, '2020-01-01', 2, 6, '2019-07-31', 1, '40:00:00'); -INSERT INTO portanova.staffcontract (id, id_staff, startdate, id_staffgroup, weekdays, enddate, id_workplan, weekhours) VALUES (86, 123, '2020-01-01', 2, 6, '2017-03-31', 1, '40:00:00'); -INSERT INTO portanova.staffcontract (id, id_staff, startdate, id_staffgroup, weekdays, enddate, id_workplan, weekhours) VALUES (100, 146, '2020-01-01', 2, 6, NULL, 1, '40:00:00'); -INSERT INTO portanova.staffcontract (id, id_staff, startdate, id_staffgroup, weekdays, enddate, id_workplan, weekhours) VALUES (101, 147, '2020-01-01', 2, 6, '2020-08-31', 1, '40:00:00'); -INSERT INTO portanova.staffcontract (id, id_staff, startdate, id_staffgroup, weekdays, enddate, id_workplan, weekhours) VALUES (102, 148, '2020-01-01', 2, 6, NULL, 1, '40:00:00'); -INSERT INTO portanova.staffcontract (id, id_staff, startdate, id_staffgroup, weekdays, enddate, id_workplan, weekhours) VALUES (103, 149, '2020-01-01', 2, 6, NULL, 1, '40:00:00'); -INSERT INTO portanova.staffcontract (id, id_staff, startdate, id_staffgroup, weekdays, enddate, id_workplan, weekhours) VALUES (104, 150, '2020-01-01', 2, 6, '2019-07-31', 1, '40:00:00'); -INSERT INTO portanova.staffcontract (id, id_staff, startdate, id_staffgroup, weekdays, enddate, id_workplan, weekhours) VALUES (67, 125, '2003-10-01', 4, 6, NULL, 1, '20:00:00'); -INSERT INTO portanova.staffcontract (id, id_staff, startdate, id_staffgroup, weekdays, enddate, id_workplan, weekhours) VALUES (107, 151, '2020-02-01', 4, 6, NULL, 6, '40:00:00'); -INSERT INTO portanova.staffcontract (id, id_staff, startdate, id_staffgroup, weekdays, enddate, id_workplan, weekhours) VALUES (105, 129, '2018-11-15', 1, 6, '2019-06-15', 6, '40:00:00'); -INSERT INTO portanova.staffcontract (id, id_staff, startdate, id_staffgroup, weekdays, enddate, id_workplan, weekhours) VALUES (94, 139, '2020-01-01', 1, 6, '2020-09-30', 6, '40:00:00'); -INSERT INTO portanova.staffcontract (id, id_staff, startdate, id_staffgroup, weekdays, enddate, id_workplan, weekhours) VALUES (95, 140, '2020-01-01', 1, 6, '2020-01-31', 6, '40:00:00'); -INSERT INTO portanova.staffcontract (id, id_staff, startdate, id_staffgroup, weekdays, enddate, id_workplan, weekhours) VALUES (74, 142, '2014-04-15', 1, 6, NULL, 6, '40:00:00'); -INSERT INTO portanova.staffcontract (id, id_staff, startdate, id_staffgroup, weekdays, enddate, id_workplan, weekhours) VALUES (97, 143, '2020-01-01', 1, 6, NULL, 6, '40:00:00'); -INSERT INTO portanova.staffcontract (id, id_staff, startdate, id_staffgroup, weekdays, enddate, id_workplan, weekhours) VALUES (98, 144, '2020-01-01', 1, 6, '2020-03-31', 6, '40:00:00'); -INSERT INTO portanova.staffcontract (id, id_staff, startdate, id_staffgroup, weekdays, enddate, id_workplan, weekhours) VALUES (96, 141, '2020-01-01', 1, 6, '2022-08-31', 6, '40:00:00'); -INSERT INTO portanova.staffcontract (id, id_staff, startdate, id_staffgroup, weekdays, enddate, id_workplan, weekhours) VALUES (92, 137, '2020-01-01', 1, 6, '2019-07-31', 6, '40:00:00'); +INSERT INTO portanova.staffcontract (id, id_staff, startdate, id_staffgroup, weekdays, enddate, id_workplan, weekhours, defaultfreedays) VALUES (69, 130, '2005-01-08', 1, 6, NULL, 6, '40:00:00', '["7"]'); +INSERT INTO portanova.staffcontract (id, id_staff, startdate, id_staffgroup, weekdays, enddate, id_workplan, weekhours, defaultfreedays) VALUES (90, 132, '2020-01-01', 1, 6, '2020-01-15', 6, '40:00:00', '["7"]'); +INSERT INTO portanova.staffcontract (id, id_staff, startdate, id_staffgroup, weekdays, enddate, id_workplan, weekhours, defaultfreedays) VALUES (71, 133, '2013-01-07', 1, 6, NULL, 6, '40:00:00', '["7"]'); +INSERT INTO portanova.staffcontract (id, id_staff, startdate, id_staffgroup, weekdays, enddate, id_workplan, weekhours, defaultfreedays) VALUES (85, 121, '2020-01-01', 2, 6, '2020-07-31', 6, '40:00:00', '["7"]'); +INSERT INTO portanova.staffcontract (id, id_staff, startdate, id_staffgroup, weekdays, enddate, id_workplan, weekhours, defaultfreedays) VALUES (77, 108, '2020-01-06', 2, 6, NULL, 6, '40:00:00', '["7"]'); +INSERT INTO portanova.staffcontract (id, id_staff, startdate, id_staffgroup, weekdays, enddate, id_workplan, weekhours, defaultfreedays) VALUES (108, 129, '2019-07-15', 1, 6, NULL, 6, '40:00:00', '["7"]'); +INSERT INTO portanova.staffcontract (id, id_staff, startdate, id_staffgroup, weekdays, enddate, id_workplan, weekhours, defaultfreedays) VALUES (82, 117, '2020-05-01', 2, 6, NULL, 1, '40:00:00', '["7"]'); +INSERT INTO portanova.staffcontract (id, id_staff, startdate, id_staffgroup, weekdays, enddate, id_workplan, weekhours, defaultfreedays) VALUES (60, 109, '2005-04-19', 2, 6, NULL, 1, '40:00:00', '["7"]'); +INSERT INTO portanova.staffcontract (id, id_staff, startdate, id_staffgroup, weekdays, enddate, id_workplan, weekhours, defaultfreedays) VALUES (72, 135, '2006-10-23', 1, 6, NULL, 6, '40:00:00', '["7"]'); +INSERT INTO portanova.staffcontract (id, id_staff, startdate, id_staffgroup, weekdays, enddate, id_workplan, weekhours, defaultfreedays) VALUES (73, 136, '1992-03-15', 1, 6, NULL, 6, '40:00:00', '["7"]'); +INSERT INTO portanova.staffcontract (id, id_staff, startdate, id_staffgroup, weekdays, enddate, id_workplan, weekhours, defaultfreedays) VALUES (87, 126, '2020-01-01', 1, 6, '2019-05-31', 6, '40:00:00', '["7"]'); +INSERT INTO portanova.staffcontract (id, id_staff, startdate, id_staffgroup, weekdays, enddate, id_workplan, weekhours, defaultfreedays) VALUES (88, 127, '2020-01-01', 1, 6, NULL, 6, '40:00:00', '["7"]'); +INSERT INTO portanova.staffcontract (id, id_staff, startdate, id_staffgroup, weekdays, enddate, id_workplan, weekhours, defaultfreedays) VALUES (89, 128, '2020-01-01', 1, 6, NULL, 6, '40:00:00', '["7"]'); +INSERT INTO portanova.staffcontract (id, id_staff, startdate, id_staffgroup, weekdays, enddate, id_workplan, weekhours, defaultfreedays) VALUES (56, 103, '2014-03-01', 4, 6, NULL, 1, '40:00:00', '["7"]'); +INSERT INTO portanova.staffcontract (id, id_staff, startdate, id_staffgroup, weekdays, enddate, id_workplan, weekhours, defaultfreedays) VALUES (61, 113, '2016-05-19', 2, 6, NULL, 1, '40:00:00', '["7"]'); +INSERT INTO portanova.staffcontract (id, id_staff, startdate, id_staffgroup, weekdays, enddate, id_workplan, weekhours, defaultfreedays) VALUES (91, 134, '2020-01-01', 1, 6, NULL, 6, '40:00:00', '["7"]'); +INSERT INTO portanova.staffcontract (id, id_staff, startdate, id_staffgroup, weekdays, enddate, id_workplan, weekhours, defaultfreedays) VALUES (62, 114, '2007-08-14', 2, 6, NULL, 1, '40:00:00', '["7"]'); +INSERT INTO portanova.staffcontract (id, id_staff, startdate, id_staffgroup, weekdays, enddate, id_workplan, weekhours, defaultfreedays) VALUES (63, 115, '2013-05-01', 2, 6, NULL, 1, '40:00:00', '["7"]'); +INSERT INTO portanova.staffcontract (id, id_staff, startdate, id_staffgroup, weekdays, enddate, id_workplan, weekhours, defaultfreedays) VALUES (64, 118, '2018-02-12', 2, 6, NULL, 1, '40:00:00', '["7"]'); +INSERT INTO portanova.staffcontract (id, id_staff, startdate, id_staffgroup, weekdays, enddate, id_workplan, weekhours, defaultfreedays) VALUES (75, 102, '2020-01-01', 4, 6, NULL, 1, '40:00:00', '["7"]'); +INSERT INTO portanova.staffcontract (id, id_staff, startdate, id_staffgroup, weekdays, enddate, id_workplan, weekhours, defaultfreedays) VALUES (78, 110, '2020-01-01', 2, 6, NULL, 1, '40:00:00', '["7"]'); +INSERT INTO portanova.staffcontract (id, id_staff, startdate, id_staffgroup, weekdays, enddate, id_workplan, weekhours, defaultfreedays) VALUES (80, 112, '2020-01-01', 2, 6, '2020-05-31', 1, '40:00:00', '["7"]'); +INSERT INTO portanova.staffcontract (id, id_staff, startdate, id_staffgroup, weekdays, enddate, id_workplan, weekhours, defaultfreedays) VALUES (83, 119, '2020-01-01', 2, 6, NULL, 1, '40:00:00', '["7"]'); +INSERT INTO portanova.staffcontract (id, id_staff, startdate, id_staffgroup, weekdays, enddate, id_workplan, weekhours, defaultfreedays) VALUES (84, 120, '2020-01-01', 2, 6, '2019-03-31', 1, '40:00:00', '["7"]'); +INSERT INTO portanova.staffcontract (id, id_staff, startdate, id_staffgroup, weekdays, enddate, id_workplan, weekhours, defaultfreedays) VALUES (70, 131, '1995-07-01', 1, 5, NULL, 6, '20:00:00', '["6","7"]'); +INSERT INTO portanova.staffcontract (id, id_staff, startdate, id_staffgroup, weekdays, enddate, id_workplan, weekhours, defaultfreedays) VALUES (57, 104, '2015-11-15', 4, 5, NULL, 1, '30:00:00', '["6","7"]'); +INSERT INTO portanova.staffcontract (id, id_staff, startdate, id_staffgroup, weekdays, enddate, id_workplan, weekhours, defaultfreedays) VALUES (81, 116, '2020-01-01', 2, 6, '2020-02-28', 1, '40:00:00', '["7"]'); +INSERT INTO portanova.staffcontract (id, id_staff, startdate, id_staffgroup, weekdays, enddate, id_workplan, weekhours, defaultfreedays) VALUES (173, 111, '2020-04-01', 2, 6, NULL, 6, '40:00:00', '["7"]'); +INSERT INTO portanova.staffcontract (id, id_staff, startdate, id_staffgroup, weekdays, enddate, id_workplan, weekhours, defaultfreedays) VALUES (79, 111, '2020-01-01', 2, 6, '2020-03-31', 6, '40:00:00', '["7"]'); +INSERT INTO portanova.staffcontract (id, id_staff, startdate, id_staffgroup, weekdays, enddate, id_workplan, weekhours, defaultfreedays) VALUES (93, 138, '2020-01-01', 1, 6, '2020-06-30', 6, '40:00:00', '["7"]'); +INSERT INTO portanova.staffcontract (id, id_staff, startdate, id_staffgroup, weekdays, enddate, id_workplan, weekhours, defaultfreedays) VALUES (99, 145, '2020-01-01', 2, 6, NULL, 6, '40:00:00', '["7"]'); +INSERT INTO portanova.staffcontract (id, id_staff, startdate, id_staffgroup, weekdays, enddate, id_workplan, weekhours, defaultfreedays) VALUES (58, 105, '2011-10-01', 2, 6, NULL, 6, '40:00:00', '["7"]'); +INSERT INTO portanova.staffcontract (id, id_staff, startdate, id_staffgroup, weekdays, enddate, id_workplan, weekhours, defaultfreedays) VALUES (65, 122, '2015-10-15', 2, 6, NULL, 1, '40:00:00', '["7"]'); +INSERT INTO portanova.staffcontract (id, id_staff, startdate, id_staffgroup, weekdays, enddate, id_workplan, weekhours, defaultfreedays) VALUES (76, 107, '2020-01-01', 2, 6, '2019-07-31', 1, '40:00:00', '["7"]'); +INSERT INTO portanova.staffcontract (id, id_staff, startdate, id_staffgroup, weekdays, enddate, id_workplan, weekhours, defaultfreedays) VALUES (86, 123, '2020-01-01', 2, 6, '2017-03-31', 1, '40:00:00', '["7"]'); +INSERT INTO portanova.staffcontract (id, id_staff, startdate, id_staffgroup, weekdays, enddate, id_workplan, weekhours, defaultfreedays) VALUES (100, 146, '2020-01-01', 2, 6, NULL, 1, '40:00:00', '["7"]'); +INSERT INTO portanova.staffcontract (id, id_staff, startdate, id_staffgroup, weekdays, enddate, id_workplan, weekhours, defaultfreedays) VALUES (101, 147, '2020-01-01', 2, 6, '2020-08-31', 1, '40:00:00', '["7"]'); +INSERT INTO portanova.staffcontract (id, id_staff, startdate, id_staffgroup, weekdays, enddate, id_workplan, weekhours, defaultfreedays) VALUES (102, 148, '2020-01-01', 2, 6, NULL, 1, '40:00:00', '["7"]'); +INSERT INTO portanova.staffcontract (id, id_staff, startdate, id_staffgroup, weekdays, enddate, id_workplan, weekhours, defaultfreedays) VALUES (103, 149, '2020-01-01', 2, 6, NULL, 1, '40:00:00', '["7"]'); +INSERT INTO portanova.staffcontract (id, id_staff, startdate, id_staffgroup, weekdays, enddate, id_workplan, weekhours, defaultfreedays) VALUES (104, 150, '2020-01-01', 2, 6, '2019-07-31', 1, '40:00:00', '["7"]'); +INSERT INTO portanova.staffcontract (id, id_staff, startdate, id_staffgroup, weekdays, enddate, id_workplan, weekhours, defaultfreedays) VALUES (107, 151, '2020-02-01', 4, 6, NULL, 6, '40:00:00', '["7"]'); +INSERT INTO portanova.staffcontract (id, id_staff, startdate, id_staffgroup, weekdays, enddate, id_workplan, weekhours, defaultfreedays) VALUES (105, 129, '2018-11-15', 1, 6, '2019-06-15', 6, '40:00:00', '["7"]'); +INSERT INTO portanova.staffcontract (id, id_staff, startdate, id_staffgroup, weekdays, enddate, id_workplan, weekhours, defaultfreedays) VALUES (94, 139, '2020-01-01', 1, 6, '2020-09-30', 6, '40:00:00', '["7"]'); +INSERT INTO portanova.staffcontract (id, id_staff, startdate, id_staffgroup, weekdays, enddate, id_workplan, weekhours, defaultfreedays) VALUES (95, 140, '2020-01-01', 1, 6, '2020-01-31', 6, '40:00:00', '["7"]'); +INSERT INTO portanova.staffcontract (id, id_staff, startdate, id_staffgroup, weekdays, enddate, id_workplan, weekhours, defaultfreedays) VALUES (74, 142, '2014-04-15', 1, 6, NULL, 6, '40:00:00', '["7"]'); +INSERT INTO portanova.staffcontract (id, id_staff, startdate, id_staffgroup, weekdays, enddate, id_workplan, weekhours, defaultfreedays) VALUES (97, 143, '2020-01-01', 1, 6, NULL, 6, '40:00:00', '["7"]'); +INSERT INTO portanova.staffcontract (id, id_staff, startdate, id_staffgroup, weekdays, enddate, id_workplan, weekhours, defaultfreedays) VALUES (98, 144, '2020-01-01', 1, 6, '2020-03-31', 6, '40:00:00', '["7"]'); +INSERT INTO portanova.staffcontract (id, id_staff, startdate, id_staffgroup, weekdays, enddate, id_workplan, weekhours, defaultfreedays) VALUES (96, 141, '2020-01-01', 1, 6, '2022-08-31', 6, '40:00:00', '["7"]'); +INSERT INTO portanova.staffcontract (id, id_staff, startdate, id_staffgroup, weekdays, enddate, id_workplan, weekhours, defaultfreedays) VALUES (92, 137, '2020-01-01', 1, 6, '2019-07-31', 6, '40:00:00', '["7"]'); +INSERT INTO portanova.staffcontract (id, id_staff, startdate, id_staffgroup, weekdays, enddate, id_workplan, weekhours, defaultfreedays) VALUES (66, 124, '2016-04-01', 2, 3, '2019-05-31', 1, '12:30:00', '["5","6","7"]'); +INSERT INTO portanova.staffcontract (id, id_staff, startdate, id_staffgroup, weekdays, enddate, id_workplan, weekhours, defaultfreedays) VALUES (59, 106, '2015-07-01', 2, 3, NULL, 1, '12:30:00', '["5","6","7"]'); +INSERT INTO portanova.staffcontract (id, id_staff, startdate, id_staffgroup, weekdays, enddate, id_workplan, weekhours, defaultfreedays) VALUES (67, 125, '2003-10-01', 4, 6, NULL, 1, '20:00:00', '["7"]'); -- -- Data for Name: staffreportperiod; Type: TABLE DATA; Schema: portanova; Owner: - -- -INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (1081, 29, 149, '320:00:00', '320:00:00', '320:00:00', '00:00:00', '00:00:00', '00:00:00', NULL); -INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (992, 27, 146, '304:00:00', '313:20:00', '304:00:00', '00:00:00', '00:00:00', '-09:20:00', NULL); -INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (1082, 29, 103, '320:00:00', '320:00:00', '320:00:00', '00:00:00', '00:00:00', '00:00:00', NULL); -INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (1083, 29, 121, '320:00:00', '320:00:00', '320:00:00', '00:00:00', '00:00:00', '00:00:00', NULL); -INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (1084, 29, 125, '320:00:00', '160:00:00', '320:00:00', '00:00:00', '00:00:00', '160:00:00', NULL); -INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (1085, 29, 119, '320:00:00', '320:00:00', '320:00:00', '00:00:00', '00:00:00', '00:00:00', NULL); -INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (1086, 29, 113, '320:00:00', '320:00:00', '320:00:00', '00:00:00', '00:00:00', '00:00:00', NULL); -INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (1087, 29, 147, '320:00:00', '320:00:00', '320:00:00', '00:00:00', '00:00:00', '00:00:00', NULL); -INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (1088, 29, 131, '320:00:00', '160:00:00', '320:00:00', '00:00:00', '00:00:00', '160:00:00', NULL); -INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (1089, 29, 104, '320:00:00', '240:00:00', '320:00:00', '00:00:00', '00:00:00', '80:00:00', NULL); -INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (1090, 29, 151, '320:00:00', '320:00:00', '320:00:00', '00:00:00', '00:00:00', '00:00:00', NULL); -INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (1091, 29, 138, '320:00:00', '320:00:00', '320:00:00', '00:00:00', '00:00:00', '00:00:00', NULL); -INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (1092, 29, 105, '320:00:00', '320:00:00', '320:00:00', '00:00:00', '00:00:00', '00:00:00', NULL); -INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (1093, 29, 134, '320:00:00', '320:00:00', '320:00:00', '00:00:00', '00:00:00', '00:00:00', NULL); -INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (993, 27, 132, '88:00:00', '93:20:00', '88:00:00', '00:00:00', '00:00:00', '-05:20:00', NULL); -INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (994, 27, 115, '320:00:00', '320:00:00', '320:00:00', '00:00:00', '00:00:00', '00:00:00', NULL); -INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (995, 27, 114, '320:00:00', '320:00:00', '320:00:00', '00:00:00', '00:00:00', '00:00:00', NULL); -INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (996, 27, 112, '304:00:00', '313:20:00', '304:00:00', '00:00:00', '00:00:00', '-09:20:00', NULL); -INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (997, 27, 108, '280:00:00', '280:00:00', '280:00:00', '00:00:00', '00:00:00', '00:00:00', NULL); -INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (998, 27, 135, '320:00:00', '320:00:00', '320:00:00', '00:00:00', '00:00:00', '00:00:00', NULL); -INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (999, 27, 127, '304:00:00', '313:20:00', '304:00:00', '00:00:00', '00:00:00', '-09:20:00', NULL); -INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (1000, 27, 149, '304:00:00', '313:20:00', '304:00:00', '00:00:00', '00:00:00', '-09:20:00', NULL); -INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (1001, 27, 103, '320:00:00', '320:00:00', '320:00:00', '00:00:00', '00:00:00', '00:00:00', NULL); -INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (1002, 27, 121, '304:00:00', '313:20:00', '304:00:00', '00:00:00', '00:00:00', '-09:20:00', NULL); -INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (1003, 27, 125, '320:00:00', '160:00:00', '320:00:00', '00:00:00', '00:00:00', '160:00:00', NULL); -INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (1004, 27, 119, '304:00:00', '313:20:00', '304:00:00', '00:00:00', '00:00:00', '-09:20:00', NULL); -INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (1005, 27, 113, '320:00:00', '320:00:00', '320:00:00', '00:00:00', '00:00:00', '00:00:00', NULL); -INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (1006, 27, 147, '304:00:00', '313:20:00', '304:00:00', '00:00:00', '00:00:00', '-09:20:00', NULL); -INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (1007, 27, 131, '320:00:00', '160:00:00', '320:00:00', '00:00:00', '00:00:00', '160:00:00', NULL); -INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (1008, 27, 104, '320:00:00', '240:00:00', '320:00:00', '00:00:00', '00:00:00', '80:00:00', NULL); -INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (1009, 27, 151, '120:00:00', '133:20:00', '120:00:00', '00:00:00', '00:00:00', '-13:20:00', NULL); -INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (1010, 27, 138, '304:00:00', '313:20:00', '304:00:00', '00:00:00', '00:00:00', '-09:20:00', NULL); -INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (1011, 27, 105, '320:00:00', '320:00:00', '320:00:00', '00:00:00', '00:00:00', '00:00:00', NULL); -INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (1012, 27, 134, '304:00:00', '313:20:00', '304:00:00', '00:00:00', '00:00:00', '-09:20:00', NULL); -INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (1013, 27, 144, '304:00:00', '313:20:00', '304:00:00', '00:00:00', '00:00:00', '-09:20:00', NULL); -INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (1014, 27, 102, '304:00:00', '313:20:00', '304:00:00', '00:00:00', '00:00:00', '-09:20:00', NULL); -INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (1015, 27, 109, '320:00:00', '320:00:00', '320:00:00', '00:00:00', '00:00:00', '00:00:00', NULL); -INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (1016, 27, 118, '320:00:00', '320:00:00', '320:00:00', '00:00:00', '00:00:00', '00:00:00', NULL); -INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (1017, 27, 133, '320:00:00', '320:00:00', '320:00:00', '00:00:00', '00:00:00', '00:00:00', NULL); -INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (1018, 27, 111, '304:00:00', '313:20:00', '304:00:00', '00:00:00', '00:00:00', '-09:20:00', NULL); -INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (1019, 27, 128, '304:00:00', '313:20:00', '304:00:00', '00:00:00', '00:00:00', '-09:20:00', NULL); -INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (1020, 27, 142, '320:00:00', '320:00:00', '320:00:00', '00:00:00', '00:00:00', '00:00:00', NULL); -INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (1021, 27, 136, '320:00:00', '320:00:00', '320:00:00', '00:00:00', '00:00:00', '00:00:00', NULL); -INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (1022, 27, 140, '184:00:00', '186:40:00', '184:00:00', '00:00:00', '00:00:00', '-02:40:00', NULL); -INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (1023, 27, 139, '304:00:00', '313:20:00', '304:00:00', '00:00:00', '00:00:00', '-09:20:00', NULL); -INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (1024, 27, 141, '304:00:00', '313:20:00', '304:00:00', '00:00:00', '00:00:00', '-09:20:00', NULL); -INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (1025, 27, 122, '320:00:00', '320:00:00', '320:00:00', '00:00:00', '00:00:00', '00:00:00', NULL); -INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (1026, 27, 106, '320:00:00', '100:00:00', '320:00:00', '00:00:00', '00:00:00', '220:00:00', NULL); -INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (1027, 27, 110, '304:00:00', '313:20:00', '304:00:00', '00:00:00', '00:00:00', '-09:20:00', NULL); -INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (1028, 27, 145, '304:00:00', '313:20:00', '304:00:00', '00:00:00', '00:00:00', '-09:20:00', NULL); -INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (1029, 27, 148, '304:00:00', '313:20:00', '304:00:00', '00:00:00', '00:00:00', '-09:20:00', NULL); -INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (1030, 27, 130, '320:00:00', '320:00:00', '320:00:00', '00:00:00', '00:00:00', '00:00:00', NULL); -INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (956, 27, 129, '320:00:00', '320:00:00', '320:00:00', '00:00:00', '00:00:00', '00:00:00', NULL); -INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (1032, 27, 143, '304:00:00', '313:20:00', '304:00:00', '00:00:00', '00:00:00', '-09:20:00', NULL); -INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (1074, 29, 146, '320:00:00', '320:00:00', '320:00:00', '00:00:00', '00:00:00', '00:00:00', NULL); -INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (1075, 29, 115, '320:00:00', '320:00:00', '320:00:00', '00:00:00', '00:00:00', '00:00:00', NULL); -INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (1076, 29, 114, '320:00:00', '320:00:00', '320:00:00', '00:00:00', '00:00:00', '00:00:00', NULL); -INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (1077, 29, 112, '320:00:00', '320:00:00', '320:00:00', '00:00:00', '00:00:00', '00:00:00', NULL); -INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (1078, 29, 108, '320:00:00', '320:00:00', '320:00:00', '00:00:00', '00:00:00', '00:00:00', NULL); -INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (1079, 29, 135, '320:00:00', '320:00:00', '320:00:00', '00:00:00', '00:00:00', '00:00:00', NULL); -INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (1080, 29, 127, '320:00:00', '320:00:00', '320:00:00', '00:00:00', '00:00:00', '00:00:00', NULL); -INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (1094, 29, 144, '216:00:00', '213:20:00', '216:00:00', '00:00:00', '00:00:00', '02:40:00', NULL); -INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (1095, 29, 102, '320:00:00', '320:00:00', '320:00:00', '00:00:00', '00:00:00', '00:00:00', NULL); -INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (1096, 29, 109, '320:00:00', '320:00:00', '320:00:00', '00:00:00', '00:00:00', '00:00:00', NULL); -INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (1097, 29, 118, '320:00:00', '320:00:00', '320:00:00', '00:00:00', '00:00:00', '00:00:00', NULL); -INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (1098, 29, 133, '320:00:00', '320:00:00', '320:00:00', '00:00:00', '00:00:00', '00:00:00', NULL); -INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (1099, 29, 111, '320:00:00', '320:00:00', '320:00:00', '00:00:00', '00:00:00', '00:00:00', NULL); -INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (1100, 29, 128, '320:00:00', '320:00:00', '320:00:00', '00:00:00', '00:00:00', '00:00:00', NULL); -INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (1101, 29, 142, '320:00:00', '320:00:00', '320:00:00', '00:00:00', '00:00:00', '00:00:00', NULL); -INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (1102, 29, 136, '320:00:00', '320:00:00', '320:00:00', '00:00:00', '00:00:00', '00:00:00', NULL); -INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (1103, 29, 139, '320:00:00', '320:00:00', '320:00:00', '00:00:00', '00:00:00', '00:00:00', NULL); -INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (1104, 29, 141, '320:00:00', '320:00:00', '320:00:00', '00:00:00', '00:00:00', '00:00:00', NULL); -INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (1105, 29, 122, '320:00:00', '320:00:00', '320:00:00', '00:00:00', '00:00:00', '00:00:00', NULL); -INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (1106, 29, 106, '320:00:00', '100:00:00', '320:00:00', '00:00:00', '00:00:00', '220:00:00', NULL); -INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (1107, 29, 110, '320:00:00', '320:00:00', '320:00:00', '00:00:00', '00:00:00', '00:00:00', NULL); -INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (1108, 29, 145, '320:00:00', '320:00:00', '320:00:00', '00:00:00', '00:00:00', '00:00:00', NULL); -INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (1109, 29, 148, '320:00:00', '320:00:00', '320:00:00', '00:00:00', '00:00:00', '00:00:00', NULL); -INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (1110, 29, 130, '320:00:00', '320:00:00', '320:00:00', '00:00:00', '00:00:00', '00:00:00', NULL); -INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (1111, 29, 129, '320:00:00', '320:00:00', '320:00:00', '00:00:00', '00:00:00', '00:00:00', NULL); -INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (1112, 29, 143, '320:00:00', '320:00:00', '320:00:00', '00:00:00', '00:00:00', '00:00:00', NULL); +INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, payedhours, diffhourspayed) VALUES (1730, 27, 116, '304:00:00', '306:40:00', '304:00:00', '00:00:00', '00:00:00', '-02:40:00', NULL, NULL); +INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, payedhours, diffhourspayed) VALUES (992, 27, 146, '304:00:00', '306:40:00', '304:00:00', '00:00:00', '00:00:00', '-02:40:00', NULL, NULL); +INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, payedhours, diffhourspayed) VALUES (993, 27, 132, '88:00:00', '106:40:00', '88:00:00', '00:00:00', '00:00:00', '-18:40:00', NULL, NULL); +INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, payedhours, diffhourspayed) VALUES (994, 27, 115, '320:00:00', '320:00:00', '320:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, NULL); +INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, payedhours, diffhourspayed) VALUES (995, 27, 114, '320:00:00', '320:00:00', '320:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, NULL); +INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, payedhours, diffhourspayed) VALUES (996, 27, 112, '304:00:00', '306:40:00', '304:00:00', '00:00:00', '00:00:00', '-02:40:00', NULL, NULL); +INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, payedhours, diffhourspayed) VALUES (1086, 29, 113, '320:00:00', '320:00:00', '320:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, NULL); +INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, payedhours, diffhourspayed) VALUES (1087, 29, 147, '320:00:00', '320:00:00', '320:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, NULL); +INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, payedhours, diffhourspayed) VALUES (1088, 29, 131, '320:00:00', '160:00:00', '320:00:00', '00:00:00', '00:00:00', '160:00:00', NULL, NULL); +INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, payedhours, diffhourspayed) VALUES (1089, 29, 104, '320:00:00', '240:00:00', '320:00:00', '00:00:00', '00:00:00', '80:00:00', NULL, NULL); +INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, payedhours, diffhourspayed) VALUES (1090, 29, 151, '320:00:00', '320:00:00', '320:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, NULL); +INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, payedhours, diffhourspayed) VALUES (1091, 29, 138, '320:00:00', '320:00:00', '320:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, NULL); +INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, payedhours, diffhourspayed) VALUES (1092, 29, 105, '320:00:00', '320:00:00', '320:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, NULL); +INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, payedhours, diffhourspayed) VALUES (1093, 29, 134, '320:00:00', '320:00:00', '320:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, NULL); +INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, payedhours, diffhourspayed) VALUES (1094, 29, 144, '216:00:00', '240:00:00', '216:00:00', '00:00:00', '00:00:00', '-24:00:00', NULL, NULL); +INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, payedhours, diffhourspayed) VALUES (1095, 29, 102, '320:00:00', '320:00:00', '320:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, NULL); +INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, payedhours, diffhourspayed) VALUES (1096, 29, 109, '320:00:00', '320:00:00', '320:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, NULL); +INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, payedhours, diffhourspayed) VALUES (1097, 29, 118, '320:00:00', '320:00:00', '320:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, NULL); +INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, payedhours, diffhourspayed) VALUES (1098, 29, 133, '320:00:00', '320:00:00', '320:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, NULL); +INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, payedhours, diffhourspayed) VALUES (1099, 29, 111, '320:00:00', '320:00:00', '320:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, NULL); +INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, payedhours, diffhourspayed) VALUES (1100, 29, 128, '320:00:00', '320:00:00', '320:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, NULL); +INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, payedhours, diffhourspayed) VALUES (1101, 29, 142, '320:00:00', '320:00:00', '320:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, NULL); +INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, payedhours, diffhourspayed) VALUES (1102, 29, 136, '320:00:00', '320:00:00', '320:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, NULL); +INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, payedhours, diffhourspayed) VALUES (1103, 29, 139, '320:00:00', '320:00:00', '320:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, NULL); +INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, payedhours, diffhourspayed) VALUES (1104, 29, 141, '320:00:00', '320:00:00', '320:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, NULL); +INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, payedhours, diffhourspayed) VALUES (1105, 29, 122, '320:00:00', '320:00:00', '320:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, NULL); +INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, payedhours, diffhourspayed) VALUES (1106, 29, 106, '320:00:00', '100:00:00', '320:00:00', '00:00:00', '00:00:00', '220:00:00', NULL, NULL); +INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, payedhours, diffhourspayed) VALUES (1107, 29, 110, '320:00:00', '320:00:00', '320:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, NULL); +INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, payedhours, diffhourspayed) VALUES (1108, 29, 145, '320:00:00', '320:00:00', '320:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, NULL); +INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, payedhours, diffhourspayed) VALUES (1109, 29, 148, '320:00:00', '320:00:00', '320:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, NULL); +INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, payedhours, diffhourspayed) VALUES (1110, 29, 130, '320:00:00', '320:00:00', '320:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, NULL); +INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, payedhours, diffhourspayed) VALUES (1111, 29, 129, '320:00:00', '320:00:00', '320:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, NULL); +INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, payedhours, diffhourspayed) VALUES (1112, 29, 143, '320:00:00', '320:00:00', '320:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, NULL); +INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, payedhours, diffhourspayed) VALUES (1152, 30, 146, '320:00:00', '320:00:00', '320:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, NULL); +INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, payedhours, diffhourspayed) VALUES (1153, 30, 115, '320:00:00', '320:00:00', '320:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, NULL); +INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, payedhours, diffhourspayed) VALUES (1154, 30, 114, '320:00:00', '320:00:00', '320:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, NULL); +INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, payedhours, diffhourspayed) VALUES (1166, 30, 147, '320:00:00', '320:00:00', '320:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, NULL); +INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, payedhours, diffhourspayed) VALUES (1178, 30, 128, '320:00:00', '320:00:00', '320:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, NULL); +INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, payedhours, diffhourspayed) VALUES (1179, 30, 142, '320:00:00', '320:00:00', '320:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, NULL); +INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, payedhours, diffhourspayed) VALUES (1180, 30, 136, '320:00:00', '320:00:00', '320:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, NULL); +INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, payedhours, diffhourspayed) VALUES (1181, 30, 139, '320:00:00', '320:00:00', '320:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, NULL); +INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, payedhours, diffhourspayed) VALUES (1182, 30, 141, '320:00:00', '320:00:00', '320:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, NULL); +INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, payedhours, diffhourspayed) VALUES (1183, 30, 122, '320:00:00', '320:00:00', '320:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, NULL); +INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, payedhours, diffhourspayed) VALUES (1184, 30, 106, '320:00:00', '100:00:00', '320:00:00', '00:00:00', '00:00:00', '220:00:00', NULL, NULL); +INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, payedhours, diffhourspayed) VALUES (1185, 30, 110, '320:00:00', '320:00:00', '320:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, NULL); +INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, payedhours, diffhourspayed) VALUES (1186, 30, 145, '320:00:00', '320:00:00', '320:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, NULL); +INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, payedhours, diffhourspayed) VALUES (1187, 30, 148, '320:00:00', '320:00:00', '320:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, NULL); +INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, payedhours, diffhourspayed) VALUES (1545, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '01:00:00', NULL); +INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, payedhours, diffhourspayed) VALUES (997, 27, 108, '280:00:00', '280:00:00', '280:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, NULL); +INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, payedhours, diffhourspayed) VALUES (998, 27, 135, '320:00:00', '320:00:00', '320:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, NULL); +INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, payedhours, diffhourspayed) VALUES (1006, 27, 147, '304:00:00', '306:40:00', '304:00:00', '00:00:00', '00:00:00', '-02:40:00', NULL, NULL); +INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, payedhours, diffhourspayed) VALUES (1007, 27, 131, '320:00:00', '160:00:00', '320:00:00', '00:00:00', '00:00:00', '160:00:00', NULL, NULL); +INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, payedhours, diffhourspayed) VALUES (1008, 27, 104, '320:00:00', '240:00:00', '320:00:00', '00:00:00', '00:00:00', '80:00:00', NULL, NULL); +INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, payedhours, diffhourspayed) VALUES (1075, 29, 115, '320:00:00', '320:00:00', '320:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, NULL); +INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, payedhours, diffhourspayed) VALUES (1076, 29, 114, '320:00:00', '320:00:00', '320:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, NULL); +INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, payedhours, diffhourspayed) VALUES (1077, 29, 112, '320:00:00', '320:00:00', '320:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, NULL); +INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, payedhours, diffhourspayed) VALUES (1078, 29, 108, '320:00:00', '320:00:00', '320:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, NULL); +INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, payedhours, diffhourspayed) VALUES (1079, 29, 135, '320:00:00', '320:00:00', '320:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, NULL); +INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, payedhours, diffhourspayed) VALUES (1080, 29, 127, '320:00:00', '320:00:00', '320:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, NULL); +INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, payedhours, diffhourspayed) VALUES (1081, 29, 149, '320:00:00', '320:00:00', '320:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, NULL); +INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, payedhours, diffhourspayed) VALUES (1082, 29, 103, '320:00:00', '320:00:00', '320:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, NULL); +INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, payedhours, diffhourspayed) VALUES (1083, 29, 121, '320:00:00', '320:00:00', '320:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, NULL); +INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, payedhours, diffhourspayed) VALUES (1084, 29, 125, '320:00:00', '160:00:00', '320:00:00', '00:00:00', '00:00:00', '160:00:00', NULL, NULL); +INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, payedhours, diffhourspayed) VALUES (1085, 29, 119, '320:00:00', '320:00:00', '320:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, NULL); +INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, payedhours, diffhourspayed) VALUES (1198, 31, 103, '320:00:00', '320:00:00', '320:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, NULL); +INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, payedhours, diffhourspayed) VALUES (1199, 31, 121, '280:00:00', '280:00:00', '280:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, NULL); +INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, payedhours, diffhourspayed) VALUES (1200, 31, 117, '320:00:00', '320:00:00', '320:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, NULL); +INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, payedhours, diffhourspayed) VALUES (1201, 31, 125, '320:00:00', '160:00:00', '320:00:00', '00:00:00', '00:00:00', '160:00:00', NULL, NULL); +INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, payedhours, diffhourspayed) VALUES (1202, 31, 119, '320:00:00', '320:00:00', '320:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, NULL); +INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, payedhours, diffhourspayed) VALUES (1203, 31, 113, '320:00:00', '320:00:00', '320:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, NULL); +INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, payedhours, diffhourspayed) VALUES (1204, 31, 147, '320:00:00', '320:00:00', '320:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, NULL); +INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, payedhours, diffhourspayed) VALUES (1205, 31, 131, '320:00:00', '160:00:00', '320:00:00', '00:00:00', '00:00:00', '160:00:00', NULL, NULL); +INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, payedhours, diffhourspayed) VALUES (1206, 31, 104, '320:00:00', '240:00:00', '320:00:00', '00:00:00', '00:00:00', '80:00:00', NULL, NULL); +INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, payedhours, diffhourspayed) VALUES (1207, 31, 151, '320:00:00', '320:00:00', '320:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, NULL); +INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, payedhours, diffhourspayed) VALUES (1208, 31, 138, '96:00:00', '120:00:00', '96:00:00', '00:00:00', '00:00:00', '-24:00:00', NULL, NULL); +INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, payedhours, diffhourspayed) VALUES (1209, 31, 105, '320:00:00', '320:00:00', '320:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, NULL); +INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, payedhours, diffhourspayed) VALUES (1009, 27, 151, '120:00:00', '160:00:00', '120:00:00', '00:00:00', '00:00:00', '-40:00:00', NULL, NULL); +INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, payedhours, diffhourspayed) VALUES (1010, 27, 138, '304:00:00', '306:40:00', '304:00:00', '00:00:00', '00:00:00', '-02:40:00', NULL, NULL); +INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, payedhours, diffhourspayed) VALUES (1014, 27, 102, '304:00:00', '306:40:00', '304:00:00', '00:00:00', '00:00:00', '-02:40:00', NULL, NULL); +INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, payedhours, diffhourspayed) VALUES (1015, 27, 109, '320:00:00', '320:00:00', '320:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, NULL); +INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, payedhours, diffhourspayed) VALUES (1016, 27, 118, '320:00:00', '320:00:00', '320:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, NULL); +INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, payedhours, diffhourspayed) VALUES (1017, 27, 133, '320:00:00', '320:00:00', '320:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, NULL); +INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, payedhours, diffhourspayed) VALUES (1018, 27, 111, '306:40:00', '306:40:00', '306:40:00', '00:00:00', '00:00:00', '00:00:00', NULL, NULL); +INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, payedhours, diffhourspayed) VALUES (1019, 27, 128, '304:00:00', '306:40:00', '304:00:00', '00:00:00', '00:00:00', '-02:40:00', NULL, NULL); +INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, payedhours, diffhourspayed) VALUES (1020, 27, 142, '320:00:00', '320:00:00', '320:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, NULL); +INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, payedhours, diffhourspayed) VALUES (1021, 27, 136, '320:00:00', '320:00:00', '320:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, NULL); +INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, payedhours, diffhourspayed) VALUES (1022, 27, 140, '184:00:00', '186:40:00', '184:00:00', '00:00:00', '00:00:00', '-02:40:00', NULL, NULL); +INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, payedhours, diffhourspayed) VALUES (1023, 27, 139, '304:00:00', '306:40:00', '304:00:00', '00:00:00', '00:00:00', '-02:40:00', NULL, NULL); +INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, payedhours, diffhourspayed) VALUES (1024, 27, 141, '304:00:00', '306:40:00', '304:00:00', '00:00:00', '00:00:00', '-02:40:00', NULL, NULL); +INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, payedhours, diffhourspayed) VALUES (1025, 27, 122, '320:00:00', '320:00:00', '320:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, NULL); +INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, payedhours, diffhourspayed) VALUES (1032, 27, 143, '304:00:00', '306:40:00', '304:00:00', '00:00:00', '00:00:00', '-02:40:00', NULL, NULL); +INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, payedhours, diffhourspayed) VALUES (1772, 29, 116, '40:00:00', '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, NULL); +INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, payedhours, diffhourspayed) VALUES (1074, 29, 146, '320:00:00', '320:00:00', '320:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, NULL); +INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, payedhours, diffhourspayed) VALUES (999, 27, 127, '304:00:00', '306:40:00', '304:00:00', '00:00:00', '00:00:00', '-02:40:00', NULL, NULL); +INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, payedhours, diffhourspayed) VALUES (1000, 27, 149, '304:00:00', '306:40:00', '304:00:00', '00:00:00', '00:00:00', '-02:40:00', NULL, NULL); +INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, payedhours, diffhourspayed) VALUES (1001, 27, 103, '316:00:00', '320:00:00', '320:00:00', '04:00:00', '00:00:00', '00:00:00', NULL, NULL); +INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, payedhours, diffhourspayed) VALUES (1002, 27, 121, '304:00:00', '306:40:00', '304:00:00', '00:00:00', '00:00:00', '-02:40:00', NULL, NULL); +INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, payedhours, diffhourspayed) VALUES (1003, 27, 125, '160:00:00', '160:00:00', '160:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, NULL); +INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, payedhours, diffhourspayed) VALUES (1004, 27, 119, '304:00:00', '306:40:00', '304:00:00', '00:00:00', '00:00:00', '-02:40:00', NULL, NULL); +INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, payedhours, diffhourspayed) VALUES (1005, 27, 113, '320:00:00', '320:00:00', '320:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, NULL); +INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, payedhours, diffhourspayed) VALUES (1011, 27, 105, '320:00:00', '320:00:00', '320:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, NULL); +INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, payedhours, diffhourspayed) VALUES (1012, 27, 134, '304:00:00', '306:40:00', '304:00:00', '00:00:00', '00:00:00', '-02:40:00', NULL, NULL); +INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, payedhours, diffhourspayed) VALUES (1013, 27, 144, '304:00:00', '306:40:00', '304:00:00', '00:00:00', '00:00:00', '-02:40:00', NULL, NULL); +INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, payedhours, diffhourspayed) VALUES (1026, 27, 106, '320:00:00', '100:00:00', '320:00:00', '00:00:00', '00:00:00', '220:00:00', NULL, NULL); +INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, payedhours, diffhourspayed) VALUES (1027, 27, 110, '304:00:00', '306:40:00', '304:00:00', '00:00:00', '00:00:00', '-02:40:00', NULL, NULL); +INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, payedhours, diffhourspayed) VALUES (1028, 27, 145, '304:00:00', '306:40:00', '304:00:00', '00:00:00', '00:00:00', '-02:40:00', NULL, NULL); +INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, payedhours, diffhourspayed) VALUES (1029, 27, 148, '304:00:00', '306:40:00', '304:00:00', '00:00:00', '00:00:00', '-02:40:00', NULL, NULL); +INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, payedhours, diffhourspayed) VALUES (1030, 27, 130, '320:00:00', '320:00:00', '320:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, NULL); +INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, payedhours, diffhourspayed) VALUES (956, 27, 129, '320:00:00', '320:00:00', '320:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, NULL); +INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, payedhours, diffhourspayed) VALUES (1155, 30, 112, '240:00:00', '240:00:00', '240:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, NULL); +INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, payedhours, diffhourspayed) VALUES (1156, 30, 108, '320:00:00', '320:00:00', '320:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, NULL); +INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, payedhours, diffhourspayed) VALUES (1157, 30, 135, '320:00:00', '320:00:00', '320:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, NULL); +INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, payedhours, diffhourspayed) VALUES (1158, 30, 127, '320:00:00', '320:00:00', '320:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, NULL); +INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, payedhours, diffhourspayed) VALUES (1159, 30, 149, '320:00:00', '320:00:00', '320:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, NULL); +INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, payedhours, diffhourspayed) VALUES (1160, 30, 103, '320:00:00', '320:00:00', '320:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, NULL); +INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, payedhours, diffhourspayed) VALUES (1161, 30, 121, '320:00:00', '320:00:00', '320:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, NULL); +INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, payedhours, diffhourspayed) VALUES (1162, 30, 117, '248:00:00', '280:00:00', '248:00:00', '00:00:00', '00:00:00', '-32:00:00', NULL, NULL); +INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, payedhours, diffhourspayed) VALUES (1163, 30, 125, '320:00:00', '160:00:00', '320:00:00', '00:00:00', '00:00:00', '160:00:00', NULL, NULL); +INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, payedhours, diffhourspayed) VALUES (1164, 30, 119, '320:00:00', '320:00:00', '320:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, NULL); +INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, payedhours, diffhourspayed) VALUES (1165, 30, 113, '320:00:00', '320:00:00', '320:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, NULL); +INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, payedhours, diffhourspayed) VALUES (1188, 30, 130, '320:00:00', '320:00:00', '320:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, NULL); +INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, payedhours, diffhourspayed) VALUES (1189, 30, 129, '320:00:00', '320:00:00', '320:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, NULL); +INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, payedhours, diffhourspayed) VALUES (1190, 30, 143, '320:00:00', '320:00:00', '320:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, NULL); +INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, payedhours, diffhourspayed) VALUES (1191, 31, 146, '320:00:00', '320:00:00', '320:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, NULL); +INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, payedhours, diffhourspayed) VALUES (1192, 31, 115, '320:00:00', '320:00:00', '320:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, NULL); +INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, payedhours, diffhourspayed) VALUES (1193, 31, 114, '320:00:00', '320:00:00', '320:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, NULL); +INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, payedhours, diffhourspayed) VALUES (1194, 31, 108, '320:00:00', '320:00:00', '320:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, NULL); +INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, payedhours, diffhourspayed) VALUES (1195, 31, 135, '320:00:00', '320:00:00', '320:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, NULL); +INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, payedhours, diffhourspayed) VALUES (1196, 31, 127, '320:00:00', '320:00:00', '320:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, NULL); +INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, payedhours, diffhourspayed) VALUES (1197, 31, 149, '320:00:00', '320:00:00', '320:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, NULL); +INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, payedhours, diffhourspayed) VALUES (1167, 30, 131, '320:00:00', '160:00:00', '320:00:00', '00:00:00', '00:00:00', '160:00:00', NULL, NULL); +INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, payedhours, diffhourspayed) VALUES (1168, 30, 104, '320:00:00', '240:00:00', '320:00:00', '00:00:00', '00:00:00', '80:00:00', NULL, NULL); +INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, payedhours, diffhourspayed) VALUES (1169, 30, 151, '320:00:00', '320:00:00', '320:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, NULL); +INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, payedhours, diffhourspayed) VALUES (1170, 30, 138, '320:00:00', '320:00:00', '320:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, NULL); +INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, payedhours, diffhourspayed) VALUES (1171, 30, 105, '320:00:00', '320:00:00', '320:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, NULL); +INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, payedhours, diffhourspayed) VALUES (1172, 30, 134, '320:00:00', '320:00:00', '320:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, NULL); +INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, payedhours, diffhourspayed) VALUES (1173, 30, 102, '320:00:00', '320:00:00', '320:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, NULL); +INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, payedhours, diffhourspayed) VALUES (1174, 30, 109, '320:00:00', '320:00:00', '320:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, NULL); +INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, payedhours, diffhourspayed) VALUES (1175, 30, 118, '320:00:00', '320:00:00', '320:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, NULL); +INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, payedhours, diffhourspayed) VALUES (1176, 30, 133, '320:00:00', '320:00:00', '320:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, NULL); +INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, payedhours, diffhourspayed) VALUES (1177, 30, 111, '320:00:00', '320:00:00', '320:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, NULL); +INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, payedhours, diffhourspayed) VALUES (1210, 31, 134, '320:00:00', '320:00:00', '320:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, NULL); +INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, payedhours, diffhourspayed) VALUES (1211, 31, 102, '320:00:00', '320:00:00', '320:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, NULL); +INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, payedhours, diffhourspayed) VALUES (1212, 31, 109, '320:00:00', '320:00:00', '320:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, NULL); +INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, payedhours, diffhourspayed) VALUES (1213, 31, 118, '320:00:00', '320:00:00', '320:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, NULL); +INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, payedhours, diffhourspayed) VALUES (1214, 31, 133, '320:00:00', '320:00:00', '320:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, NULL); +INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, payedhours, diffhourspayed) VALUES (1215, 31, 111, '320:00:00', '320:00:00', '320:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, NULL); +INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, payedhours, diffhourspayed) VALUES (1216, 31, 128, '320:00:00', '320:00:00', '320:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, NULL); +INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, payedhours, diffhourspayed) VALUES (1217, 31, 142, '320:00:00', '320:00:00', '320:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, NULL); +INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, payedhours, diffhourspayed) VALUES (1218, 31, 136, '320:00:00', '320:00:00', '320:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, NULL); +INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, payedhours, diffhourspayed) VALUES (1219, 31, 139, '320:00:00', '320:00:00', '320:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, NULL); +INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, payedhours, diffhourspayed) VALUES (1220, 31, 141, '320:00:00', '320:00:00', '320:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, NULL); +INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, payedhours, diffhourspayed) VALUES (1221, 31, 122, '320:00:00', '320:00:00', '320:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, NULL); +INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, payedhours, diffhourspayed) VALUES (1222, 31, 106, '320:00:00', '100:00:00', '320:00:00', '00:00:00', '00:00:00', '220:00:00', NULL, NULL); +INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, payedhours, diffhourspayed) VALUES (1223, 31, 110, '320:00:00', '320:00:00', '320:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, NULL); +INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, payedhours, diffhourspayed) VALUES (1224, 31, 145, '320:00:00', '320:00:00', '320:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, NULL); +INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, payedhours, diffhourspayed) VALUES (1225, 31, 148, '320:00:00', '320:00:00', '320:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, NULL); +INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, payedhours, diffhourspayed) VALUES (1226, 31, 130, '320:00:00', '320:00:00', '320:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, NULL); +INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, payedhours, diffhourspayed) VALUES (1227, 31, 129, '320:00:00', '320:00:00', '320:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, NULL); +INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, payedhours, diffhourspayed) VALUES (1228, 31, 143, '320:00:00', '320:00:00', '320:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, NULL); -- -- Data for Name: staffreportperioddays; Type: TABLE DATA; Schema: portanova; Owner: - -- -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (988797, 146, '2020-01-22', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (988798, 146, '2020-01-23', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (988799, 146, '2020-01-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (988800, 146, '2020-01-25', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (988801, 146, '2020-01-26', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (988802, 146, '2020-01-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (988803, 146, '2020-01-28', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (988804, 146, '2020-01-29', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (988805, 146, '2020-01-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (993102, 115, '2020-01-23', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (993103, 115, '2020-01-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (993104, 115, '2020-01-25', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (993105, 115, '2020-01-26', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (993106, 115, '2020-01-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (993107, 115, '2020-01-28', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (993131, 115, '2020-02-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (993132, 115, '2020-02-22', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (993133, 115, '2020-02-23', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (995247, 114, '2020-01-16', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (995248, 114, '2020-01-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (995249, 114, '2020-01-18', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (995250, 114, '2020-01-19', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (995251, 114, '2020-01-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (995252, 114, '2020-01-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (995253, 114, '2020-01-22', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (995254, 114, '2020-01-23', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (995255, 114, '2020-01-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (995256, 114, '2020-01-25', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (995257, 114, '2020-01-26', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (995258, 114, '2020-01-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (995259, 114, '2020-01-28', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (995260, 114, '2020-01-29', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (995261, 114, '2020-01-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (995262, 114, '2020-01-31', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (995263, 114, '2020-02-01', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (995264, 114, '2020-02-02', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (995265, 114, '2020-02-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (995266, 114, '2020-02-04', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079166, 146, '2020-03-01', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079167, 146, '2020-03-02', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079168, 146, '2020-03-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079169, 146, '2020-03-04', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (995267, 114, '2020-02-05', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (995268, 114, '2020-02-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (995269, 114, '2020-02-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (995270, 114, '2020-02-08', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (995271, 114, '2020-02-09', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (995272, 114, '2020-02-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (995273, 114, '2020-02-11', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (995274, 114, '2020-02-12', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (995275, 114, '2020-02-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (995276, 114, '2020-02-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (997427, 112, '2020-02-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (997428, 112, '2020-02-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (997429, 112, '2020-02-15', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (997430, 112, '2020-02-16', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (997431, 112, '2020-02-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (997432, 112, '2020-02-18', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (997433, 112, '2020-02-19', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (997434, 112, '2020-02-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (997435, 112, '2020-02-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (997436, 112, '2020-02-22', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (997437, 112, '2020-02-23', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (999560, 108, '2020-01-25', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (999561, 108, '2020-01-26', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (999562, 108, '2020-01-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (999563, 108, '2020-01-28', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (999564, 108, '2020-01-29', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (999565, 108, '2020-01-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (999566, 108, '2020-01-31', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (999567, 108, '2020-02-01', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (999568, 108, '2020-02-02', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (999569, 108, '2020-02-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (999570, 108, '2020-02-04', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (999571, 108, '2020-02-05', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (999572, 108, '2020-02-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (999573, 108, '2020-02-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079170, 146, '2020-03-05', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079171, 146, '2020-03-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079172, 146, '2020-03-07', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079173, 146, '2020-03-08', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (999574, 108, '2020-02-08', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (999575, 108, '2020-02-09', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (999581, 108, '2020-02-15', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1001724, 135, '2020-02-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1001725, 135, '2020-02-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1001726, 135, '2020-02-08', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1001727, 135, '2020-02-09', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1001728, 135, '2020-02-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1001729, 135, '2020-02-11', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1001730, 135, '2020-02-12', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1001731, 135, '2020-02-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1001732, 135, '2020-02-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1001733, 135, '2020-02-15', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1001734, 135, '2020-02-16', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1001735, 135, '2020-02-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1001736, 135, '2020-02-18', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1001737, 135, '2020-02-19', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1001738, 135, '2020-02-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1001739, 135, '2020-02-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1001740, 135, '2020-02-22', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1001741, 135, '2020-02-23', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1003860, 127, '2020-01-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1003861, 127, '2020-01-22', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1003862, 127, '2020-01-23', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1003863, 127, '2020-01-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1003864, 127, '2020-01-25', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1003865, 127, '2020-01-26', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1003866, 127, '2020-01-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1003867, 127, '2020-01-28', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1003868, 127, '2020-01-29', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1003869, 127, '2020-01-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1003870, 127, '2020-01-31', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1003871, 127, '2020-02-01', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1003872, 127, '2020-02-02', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1003873, 127, '2020-02-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1006019, 149, '2020-01-28', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1006020, 149, '2020-01-29', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079174, 146, '2020-03-09', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079175, 146, '2020-03-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079176, 146, '2020-03-11', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079177, 146, '2020-03-12', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1006021, 149, '2020-01-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1006022, 149, '2020-01-31', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1006023, 149, '2020-02-01', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1006024, 149, '2020-02-02', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1006025, 149, '2020-02-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1006026, 149, '2020-02-04', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1006027, 149, '2020-02-05', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1006028, 149, '2020-02-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1006029, 149, '2020-02-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1006030, 149, '2020-02-08', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1006031, 149, '2020-02-09', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1006032, 149, '2020-02-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1006033, 149, '2020-02-11', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1006034, 149, '2020-02-12', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1006035, 149, '2020-02-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1006036, 149, '2020-02-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1006037, 149, '2020-02-15', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1006038, 149, '2020-02-16', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1006039, 149, '2020-02-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1006040, 149, '2020-02-18', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1006041, 149, '2020-02-19', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1006042, 149, '2020-02-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1006043, 149, '2020-02-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1006044, 149, '2020-02-22', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1006045, 149, '2020-02-23', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1008165, 103, '2020-01-22', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1008166, 103, '2020-01-23', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1008167, 103, '2020-01-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1008168, 103, '2020-01-25', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1008169, 103, '2020-01-26', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1008170, 103, '2020-01-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1008171, 103, '2020-01-28', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1008172, 103, '2020-01-29', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1008173, 103, '2020-01-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1008174, 103, '2020-01-31', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1010312, 121, '2020-01-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079178, 146, '2020-03-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079179, 146, '2020-03-14', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079180, 146, '2020-03-15', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079181, 146, '2020-03-16', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079182, 146, '2020-03-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1010313, 121, '2020-01-18', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1010314, 121, '2020-01-19', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1010315, 121, '2020-01-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1010316, 121, '2020-01-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1010317, 121, '2020-01-22', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1010318, 121, '2020-01-23', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1010319, 121, '2020-01-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1010320, 121, '2020-01-25', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1010321, 121, '2020-01-26', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1010322, 121, '2020-01-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1010323, 121, '2020-01-28', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1010324, 121, '2020-01-29', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1010325, 121, '2020-01-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1010326, 121, '2020-01-31', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1010327, 121, '2020-02-01', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1010328, 121, '2020-02-02', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1010329, 121, '2020-02-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1010330, 121, '2020-02-04', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1010331, 121, '2020-02-05', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1010332, 121, '2020-02-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1010333, 121, '2020-02-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1010334, 121, '2020-02-08', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1010335, 121, '2020-02-09', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1010336, 121, '2020-02-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1010337, 121, '2020-02-11', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1010338, 121, '2020-02-12', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1010339, 121, '2020-02-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1010340, 121, '2020-02-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1010341, 121, '2020-02-15', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1010342, 121, '2020-02-16', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1010343, 121, '2020-02-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1010344, 121, '2020-02-18', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1010345, 121, '2020-02-19', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1010346, 121, '2020-02-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1010347, 121, '2020-02-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079183, 146, '2020-03-18', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079184, 146, '2020-03-19', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079185, 146, '2020-03-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079186, 146, '2020-03-21', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079187, 146, '2020-03-22', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1010348, 121, '2020-02-22', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1010349, 121, '2020-02-23', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1012469, 125, '2020-01-22', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1012470, 125, '2020-01-23', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1012471, 125, '2020-01-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1012472, 125, '2020-01-25', NULL, NULL, NULL, NULL, NULL, '00:00:00', '03:20:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1012473, 125, '2020-01-26', NULL, NULL, NULL, NULL, NULL, '00:00:00', '03:20:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1012474, 125, '2020-01-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1012475, 125, '2020-01-28', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1012476, 125, '2020-01-29', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1012477, 125, '2020-01-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1012478, 125, '2020-01-31', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1014612, 119, '2020-01-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1014613, 119, '2020-01-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1014614, 119, '2020-01-15', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1014615, 119, '2020-01-16', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1014616, 119, '2020-01-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1014617, 119, '2020-01-18', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1014618, 119, '2020-01-19', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1014619, 119, '2020-01-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1014620, 119, '2020-01-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1014621, 119, '2020-01-22', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1014622, 119, '2020-01-23', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1014623, 119, '2020-01-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1014624, 119, '2020-01-25', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1014625, 119, '2020-01-26', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1014626, 119, '2020-01-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1014627, 119, '2020-01-28', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1014628, 119, '2020-01-29', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1014629, 119, '2020-01-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1014630, 119, '2020-01-31', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1014631, 119, '2020-02-01', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1014632, 119, '2020-02-02', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1014633, 119, '2020-02-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1014634, 119, '2020-02-04', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079188, 146, '2020-03-23', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079189, 146, '2020-03-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079190, 146, '2020-03-25', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079191, 146, '2020-03-26', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1014635, 119, '2020-02-05', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1014636, 119, '2020-02-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1014637, 119, '2020-02-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1014638, 119, '2020-02-08', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1014639, 119, '2020-02-09', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1014640, 119, '2020-02-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1014641, 119, '2020-02-11', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1014642, 119, '2020-02-12', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1014643, 119, '2020-02-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1014644, 119, '2020-02-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1014645, 119, '2020-02-15', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1014646, 119, '2020-02-16', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1014647, 119, '2020-02-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1014648, 119, '2020-02-18', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1014649, 119, '2020-02-19', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1014650, 119, '2020-02-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1014651, 119, '2020-02-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1014652, 119, '2020-02-22', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1014653, 119, '2020-02-23', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1016773, 113, '2020-01-22', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1016774, 113, '2020-01-23', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1016775, 113, '2020-01-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1016776, 113, '2020-01-25', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1016777, 113, '2020-01-26', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1016778, 113, '2020-01-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1016779, 113, '2020-01-28', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1016780, 113, '2020-01-29', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1016781, 113, '2020-01-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1016782, 113, '2020-01-31', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1018917, 147, '2020-01-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1018918, 147, '2020-01-15', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1018919, 147, '2020-01-16', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1018920, 147, '2020-01-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1018921, 147, '2020-01-18', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1018922, 147, '2020-01-19', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1018923, 147, '2020-01-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079192, 146, '2020-03-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079193, 146, '2020-03-28', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079194, 146, '2020-03-29', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079195, 146, '2020-03-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079196, 146, '2020-03-31', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1018924, 147, '2020-01-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1018925, 147, '2020-01-22', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1018926, 147, '2020-01-23', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1018927, 147, '2020-01-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1018928, 147, '2020-01-25', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1018929, 147, '2020-01-26', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1018930, 147, '2020-01-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1018931, 147, '2020-01-28', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1018932, 147, '2020-01-29', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1018933, 147, '2020-01-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1018934, 147, '2020-01-31', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1018935, 147, '2020-02-01', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1018936, 147, '2020-02-02', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1018937, 147, '2020-02-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1018938, 147, '2020-02-04', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1018939, 147, '2020-02-05', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1018940, 147, '2020-02-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1018941, 147, '2020-02-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1018942, 147, '2020-02-08', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1018943, 147, '2020-02-09', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1018944, 147, '2020-02-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1018945, 147, '2020-02-11', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1018946, 147, '2020-02-12', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1018947, 147, '2020-02-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1018948, 147, '2020-02-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1018949, 147, '2020-02-15', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1018950, 147, '2020-02-16', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1018951, 147, '2020-02-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1018952, 147, '2020-02-18', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1018953, 147, '2020-02-19', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1018954, 147, '2020-02-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1021078, 131, '2020-01-23', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1021079, 131, '2020-01-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1021080, 131, '2020-01-25', NULL, NULL, NULL, NULL, NULL, '00:00:00', '03:20:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1021081, 131, '2020-01-26', NULL, NULL, NULL, NULL, NULL, '00:00:00', '03:20:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079197, 146, '2020-04-01', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079198, 146, '2020-04-02', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079199, 146, '2020-04-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079200, 146, '2020-04-04', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079201, 146, '2020-04-05', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1021082, 131, '2020-01-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1021083, 131, '2020-01-28', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1021107, 131, '2020-02-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1021108, 131, '2020-02-22', NULL, NULL, NULL, NULL, NULL, '00:00:00', '03:20:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1021109, 131, '2020-02-23', NULL, NULL, NULL, NULL, NULL, '00:00:00', '03:20:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1023223, 104, '2020-01-16', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '05:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1023224, 104, '2020-01-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '05:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1023225, 104, '2020-01-18', NULL, NULL, NULL, NULL, NULL, '00:00:00', '05:00:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1023226, 104, '2020-01-19', NULL, NULL, NULL, NULL, NULL, '00:00:00', '05:00:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1023227, 104, '2020-01-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '05:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1023228, 104, '2020-01-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '05:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1023229, 104, '2020-01-22', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '05:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1023230, 104, '2020-01-23', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '05:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1023231, 104, '2020-01-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '05:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1023232, 104, '2020-01-25', NULL, NULL, NULL, NULL, NULL, '00:00:00', '05:00:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1023233, 104, '2020-01-26', NULL, NULL, NULL, NULL, NULL, '00:00:00', '05:00:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1023234, 104, '2020-01-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '05:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1023235, 104, '2020-01-28', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '05:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1023236, 104, '2020-01-29', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '05:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1023237, 104, '2020-01-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '05:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1023238, 104, '2020-01-31', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '05:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1023239, 104, '2020-02-01', NULL, NULL, NULL, NULL, NULL, '00:00:00', '05:00:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1023240, 104, '2020-02-02', NULL, NULL, NULL, NULL, NULL, '00:00:00', '05:00:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1023241, 104, '2020-02-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '05:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1023242, 104, '2020-02-04', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '05:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1023243, 104, '2020-02-05', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '05:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1023244, 104, '2020-02-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '05:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1023245, 104, '2020-02-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '05:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1023246, 104, '2020-02-08', NULL, NULL, NULL, NULL, NULL, '00:00:00', '05:00:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1023247, 104, '2020-02-09', NULL, NULL, NULL, NULL, NULL, '00:00:00', '05:00:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1023248, 104, '2020-02-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '05:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1023249, 104, '2020-02-11', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '05:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1023250, 104, '2020-02-12', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '05:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1023251, 104, '2020-02-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '05:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1023252, 104, '2020-02-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '05:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1027530, 138, '2020-01-19', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079202, 146, '2020-04-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079203, 146, '2020-04-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079204, 146, '2020-04-08', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079205, 146, '2020-04-09', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1027531, 138, '2020-01-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1027532, 138, '2020-01-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1027533, 138, '2020-01-22', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1027534, 138, '2020-01-23', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1027535, 138, '2020-01-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1027536, 138, '2020-01-25', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1027537, 138, '2020-01-26', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1027538, 138, '2020-01-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1027539, 138, '2020-01-28', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1027540, 138, '2020-01-29', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1027541, 138, '2020-01-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1027542, 138, '2020-01-31', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1027543, 138, '2020-02-01', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1027544, 138, '2020-02-02', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1027545, 138, '2020-02-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1027546, 138, '2020-02-04', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1027547, 138, '2020-02-05', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1027548, 138, '2020-02-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1027549, 138, '2020-02-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1027550, 138, '2020-02-08', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1027551, 138, '2020-02-09', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1027557, 138, '2020-02-15', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1029700, 105, '2020-02-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1029701, 105, '2020-02-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1029702, 105, '2020-02-08', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1029703, 105, '2020-02-09', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1029704, 105, '2020-02-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1029705, 105, '2020-02-11', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1029706, 105, '2020-02-12', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1029707, 105, '2020-02-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1029708, 105, '2020-02-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1029709, 105, '2020-02-15', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1029710, 105, '2020-02-16', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1029711, 105, '2020-02-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1029712, 105, '2020-02-18', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1029713, 105, '2020-02-19', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079206, 146, '2020-04-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079207, 146, '2020-04-11', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079208, 146, '2020-04-12', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079209, 146, '2020-04-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079210, 146, '2020-04-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1029714, 105, '2020-02-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1029715, 105, '2020-02-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1029716, 105, '2020-02-22', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1029717, 105, '2020-02-23', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1031836, 134, '2020-01-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1031837, 134, '2020-01-22', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1031838, 134, '2020-01-23', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1031839, 134, '2020-01-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1031840, 134, '2020-01-25', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1031841, 134, '2020-01-26', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1031842, 134, '2020-01-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1031843, 134, '2020-01-28', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1031844, 134, '2020-01-29', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1031845, 134, '2020-01-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1031846, 134, '2020-01-31', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1031847, 134, '2020-02-01', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1031848, 134, '2020-02-02', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1031849, 134, '2020-02-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1033995, 144, '2020-01-28', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1033996, 144, '2020-01-29', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1033997, 144, '2020-01-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1033998, 144, '2020-01-31', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1033999, 144, '2020-02-01', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1034000, 144, '2020-02-02', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1034001, 144, '2020-02-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1034002, 144, '2020-02-04', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1034003, 144, '2020-02-05', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1034004, 144, '2020-02-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1034005, 144, '2020-02-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1034006, 144, '2020-02-08', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1034007, 144, '2020-02-09', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1034008, 144, '2020-02-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1034009, 144, '2020-02-11', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1034010, 144, '2020-02-12', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1034011, 144, '2020-02-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079211, 146, '2020-04-15', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079212, 146, '2020-04-16', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079213, 146, '2020-04-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079214, 146, '2020-04-18', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079215, 146, '2020-04-19', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1034012, 144, '2020-02-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1034013, 144, '2020-02-15', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1034014, 144, '2020-02-16', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1034015, 144, '2020-02-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1034016, 144, '2020-02-18', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1034017, 144, '2020-02-19', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1034018, 144, '2020-02-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1034019, 144, '2020-02-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1034020, 144, '2020-02-22', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1034021, 144, '2020-02-23', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1036141, 102, '2020-01-22', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1036142, 102, '2020-01-23', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1036143, 102, '2020-01-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1036144, 102, '2020-01-25', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1036145, 102, '2020-01-26', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1036146, 102, '2020-01-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1036147, 102, '2020-01-28', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1036148, 102, '2020-01-29', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1036149, 102, '2020-01-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1036150, 102, '2020-01-31', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1038288, 109, '2020-01-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1038289, 109, '2020-01-18', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1038290, 109, '2020-01-19', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1038291, 109, '2020-01-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1038292, 109, '2020-01-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1038293, 109, '2020-01-22', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1038294, 109, '2020-01-23', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1038295, 109, '2020-01-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1038296, 109, '2020-01-25', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1038297, 109, '2020-01-26', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1038298, 109, '2020-01-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1038299, 109, '2020-01-28', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1038300, 109, '2020-01-29', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1038301, 109, '2020-01-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1038302, 109, '2020-01-31', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1038303, 109, '2020-02-01', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1038304, 109, '2020-02-02', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079216, 115, '2020-02-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079217, 115, '2020-02-25', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079218, 115, '2020-02-26', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079219, 115, '2020-02-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1038305, 109, '2020-02-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1038306, 109, '2020-02-04', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1038307, 109, '2020-02-05', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1038308, 109, '2020-02-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1038309, 109, '2020-02-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1038310, 109, '2020-02-08', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1038311, 109, '2020-02-09', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1038312, 109, '2020-02-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1038313, 109, '2020-02-11', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1038314, 109, '2020-02-12', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1038315, 109, '2020-02-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1038316, 109, '2020-02-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1038317, 109, '2020-02-15', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1038318, 109, '2020-02-16', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1038319, 109, '2020-02-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1038320, 109, '2020-02-18', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1038321, 109, '2020-02-19', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1038322, 109, '2020-02-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1038323, 109, '2020-02-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1038324, 109, '2020-02-22', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1038325, 109, '2020-02-23', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1040445, 118, '2020-01-22', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1040446, 118, '2020-01-23', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1040447, 118, '2020-01-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1040448, 118, '2020-01-25', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1040449, 118, '2020-01-26', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1040450, 118, '2020-01-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1040451, 118, '2020-01-28', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1040452, 118, '2020-01-29', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1040453, 118, '2020-01-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1040454, 118, '2020-01-31', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1042588, 133, '2020-01-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1042589, 133, '2020-01-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1042590, 133, '2020-01-15', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079220, 115, '2020-02-28', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079221, 115, '2020-02-29', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079222, 115, '2020-03-01', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079223, 115, '2020-03-02', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079224, 115, '2020-03-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1042591, 133, '2020-01-16', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1042592, 133, '2020-01-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1042593, 133, '2020-01-18', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1042594, 133, '2020-01-19', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1042595, 133, '2020-01-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1042596, 133, '2020-01-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1042597, 133, '2020-01-22', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1042598, 133, '2020-01-23', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1042599, 133, '2020-01-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1042600, 133, '2020-01-25', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1042601, 133, '2020-01-26', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1042602, 133, '2020-01-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1042603, 133, '2020-01-28', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1042604, 133, '2020-01-29', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1042605, 133, '2020-01-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1042606, 133, '2020-01-31', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1042607, 133, '2020-02-01', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1042608, 133, '2020-02-02', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1042609, 133, '2020-02-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1042610, 133, '2020-02-04', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1042611, 133, '2020-02-05', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1042612, 133, '2020-02-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1042613, 133, '2020-02-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1042614, 133, '2020-02-08', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1042615, 133, '2020-02-09', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1042616, 133, '2020-02-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1042617, 133, '2020-02-11', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1042618, 133, '2020-02-12', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1042619, 133, '2020-02-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1042620, 133, '2020-02-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1042621, 133, '2020-02-15', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1042622, 133, '2020-02-16', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1042623, 133, '2020-02-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1042624, 133, '2020-02-18', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1042625, 133, '2020-02-19', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079225, 115, '2020-03-04', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079226, 115, '2020-03-05', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079227, 115, '2020-03-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079228, 115, '2020-03-07', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079229, 115, '2020-03-08', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1042626, 133, '2020-02-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1042627, 133, '2020-02-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1042628, 133, '2020-02-22', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1042629, 133, '2020-02-23', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1044749, 111, '2020-01-22', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1044750, 111, '2020-01-23', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1044751, 111, '2020-01-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1044752, 111, '2020-01-25', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1044753, 111, '2020-01-26', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1044754, 111, '2020-01-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1044755, 111, '2020-01-28', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1044756, 111, '2020-01-29', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1044757, 111, '2020-01-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1044758, 111, '2020-01-31', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1046893, 128, '2020-01-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1046894, 128, '2020-01-15', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1046895, 128, '2020-01-16', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1046896, 128, '2020-01-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1046897, 128, '2020-01-18', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1046898, 128, '2020-01-19', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1046899, 128, '2020-01-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1046900, 128, '2020-01-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1046901, 128, '2020-01-22', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1046902, 128, '2020-01-23', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1046903, 128, '2020-01-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1046904, 128, '2020-01-25', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1046905, 128, '2020-01-26', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1046906, 128, '2020-01-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1046907, 128, '2020-01-28', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1046908, 128, '2020-01-29', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1046909, 128, '2020-01-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1046910, 128, '2020-01-31', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1046911, 128, '2020-02-01', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1046912, 128, '2020-02-02', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1046913, 128, '2020-02-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079230, 115, '2020-03-09', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079231, 115, '2020-03-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079232, 115, '2020-03-11', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079233, 115, '2020-03-12', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1046914, 128, '2020-02-04', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1046915, 128, '2020-02-05', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1046916, 128, '2020-02-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1046917, 128, '2020-02-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1046918, 128, '2020-02-08', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1046919, 128, '2020-02-09', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1046920, 128, '2020-02-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1046921, 128, '2020-02-11', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1046922, 128, '2020-02-12', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1046923, 128, '2020-02-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1046924, 128, '2020-02-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1046925, 128, '2020-02-15', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1046926, 128, '2020-02-16', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1046927, 128, '2020-02-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1046928, 128, '2020-02-18', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1046929, 128, '2020-02-19', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1046930, 128, '2020-02-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1049054, 142, '2020-01-23', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1049055, 142, '2020-01-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1049056, 142, '2020-01-25', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1049057, 142, '2020-01-26', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1049058, 142, '2020-01-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1049059, 142, '2020-01-28', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1049083, 142, '2020-02-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1049084, 142, '2020-02-22', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1049085, 142, '2020-02-23', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1051199, 136, '2020-01-16', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1051200, 136, '2020-01-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1051201, 136, '2020-01-18', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1051202, 136, '2020-01-19', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1051203, 136, '2020-01-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1051204, 136, '2020-01-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1051205, 136, '2020-01-22', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1051206, 136, '2020-01-23', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1051207, 136, '2020-01-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1051208, 136, '2020-01-25', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1051209, 136, '2020-01-26', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079234, 115, '2020-03-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079235, 115, '2020-03-14', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079236, 115, '2020-03-15', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079237, 115, '2020-03-16', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1051210, 136, '2020-01-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1051211, 136, '2020-01-28', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1051212, 136, '2020-01-29', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1051213, 136, '2020-01-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1051214, 136, '2020-01-31', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1051215, 136, '2020-02-01', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1051216, 136, '2020-02-02', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1051217, 136, '2020-02-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1051218, 136, '2020-02-04', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1051219, 136, '2020-02-05', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1051220, 136, '2020-02-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1051221, 136, '2020-02-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1051222, 136, '2020-02-08', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1051223, 136, '2020-02-09', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1051224, 136, '2020-02-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1051225, 136, '2020-02-11', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1051226, 136, '2020-02-12', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1051227, 136, '2020-02-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1051228, 136, '2020-02-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1055506, 139, '2020-01-19', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1055507, 139, '2020-01-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1055508, 139, '2020-01-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1055509, 139, '2020-01-22', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1055510, 139, '2020-01-23', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1055511, 139, '2020-01-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1055512, 139, '2020-01-25', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1055513, 139, '2020-01-26', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1055514, 139, '2020-01-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1055515, 139, '2020-01-28', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1055516, 139, '2020-01-29', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1055517, 139, '2020-01-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1055518, 139, '2020-01-31', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1055519, 139, '2020-02-01', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1055520, 139, '2020-02-02', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079238, 115, '2020-03-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079239, 115, '2020-03-18', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079240, 115, '2020-03-19', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079241, 115, '2020-03-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079242, 115, '2020-03-21', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079243, 115, '2020-03-22', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1055521, 139, '2020-02-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1055522, 139, '2020-02-04', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1055523, 139, '2020-02-05', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1055524, 139, '2020-02-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1055525, 139, '2020-02-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1055526, 139, '2020-02-08', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1055527, 139, '2020-02-09', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1055533, 139, '2020-02-15', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1057676, 141, '2020-02-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1057677, 141, '2020-02-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1057678, 141, '2020-02-08', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1057679, 141, '2020-02-09', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1057680, 141, '2020-02-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1057681, 141, '2020-02-11', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1057682, 141, '2020-02-12', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1057683, 141, '2020-02-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1057684, 141, '2020-02-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1057685, 141, '2020-02-15', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1057686, 141, '2020-02-16', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1057687, 141, '2020-02-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1057688, 141, '2020-02-18', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1057689, 141, '2020-02-19', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1057690, 141, '2020-02-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1057691, 141, '2020-02-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1057692, 141, '2020-02-22', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1057693, 141, '2020-02-23', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1059812, 122, '2020-01-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1059813, 122, '2020-01-22', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1059814, 122, '2020-01-23', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1059815, 122, '2020-01-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1059816, 122, '2020-01-25', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1059817, 122, '2020-01-26', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1059818, 122, '2020-01-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1059819, 122, '2020-01-28', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1059820, 122, '2020-01-29', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1059821, 122, '2020-01-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1059822, 122, '2020-01-31', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079244, 115, '2020-03-23', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079245, 115, '2020-03-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079246, 115, '2020-03-25', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079247, 115, '2020-03-26', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1059823, 122, '2020-02-01', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1059824, 122, '2020-02-02', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1059825, 122, '2020-02-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1061971, 106, '2020-01-28', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '02:05:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1061972, 106, '2020-01-29', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '02:05:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1061973, 106, '2020-01-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '02:05:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1061974, 106, '2020-01-31', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '02:05:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1061975, 106, '2020-02-01', NULL, NULL, NULL, NULL, NULL, '00:00:00', '02:05:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1061976, 106, '2020-02-02', NULL, NULL, NULL, NULL, NULL, '00:00:00', '02:05:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1061977, 106, '2020-02-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '02:05:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1061978, 106, '2020-02-04', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '02:05:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1061979, 106, '2020-02-05', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '02:05:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1061980, 106, '2020-02-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '02:05:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1061981, 106, '2020-02-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '02:05:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1061982, 106, '2020-02-08', NULL, NULL, NULL, NULL, NULL, '00:00:00', '02:05:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1061983, 106, '2020-02-09', NULL, NULL, NULL, NULL, NULL, '00:00:00', '02:05:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1061984, 106, '2020-02-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '02:05:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1061985, 106, '2020-02-11', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '02:05:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1061986, 106, '2020-02-12', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '02:05:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1061987, 106, '2020-02-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '02:05:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1061988, 106, '2020-02-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '02:05:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1061989, 106, '2020-02-15', NULL, NULL, NULL, NULL, NULL, '00:00:00', '02:05:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1061990, 106, '2020-02-16', NULL, NULL, NULL, NULL, NULL, '00:00:00', '02:05:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1061991, 106, '2020-02-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '02:05:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1061992, 106, '2020-02-18', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '02:05:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1061993, 106, '2020-02-19', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '02:05:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1061994, 106, '2020-02-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '02:05:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1061995, 106, '2020-02-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '02:05:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1061996, 106, '2020-02-22', NULL, NULL, NULL, NULL, NULL, '00:00:00', '02:05:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1061997, 106, '2020-02-23', NULL, NULL, NULL, NULL, NULL, '00:00:00', '02:05:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1064117, 110, '2020-01-22', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1064118, 110, '2020-01-23', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1064119, 110, '2020-01-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1064120, 110, '2020-01-25', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1064121, 110, '2020-01-26', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1064122, 110, '2020-01-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079248, 115, '2020-03-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079249, 115, '2020-03-28', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079250, 115, '2020-03-29', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079251, 115, '2020-03-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079252, 115, '2020-03-31', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1064123, 110, '2020-01-28', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1064124, 110, '2020-01-29', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1064125, 110, '2020-01-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1064126, 110, '2020-01-31', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1066264, 145, '2020-01-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1066265, 145, '2020-01-18', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1066266, 145, '2020-01-19', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1066267, 145, '2020-01-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1066268, 145, '2020-01-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1066269, 145, '2020-01-22', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1066270, 145, '2020-01-23', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1066271, 145, '2020-01-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1066272, 145, '2020-01-25', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1066273, 145, '2020-01-26', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1066274, 145, '2020-01-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1066275, 145, '2020-01-28', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1066276, 145, '2020-01-29', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1066277, 145, '2020-01-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1066278, 145, '2020-01-31', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1066279, 145, '2020-02-01', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1066280, 145, '2020-02-02', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1066281, 145, '2020-02-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1066282, 145, '2020-02-04', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1066283, 145, '2020-02-05', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1066284, 145, '2020-02-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1066285, 145, '2020-02-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1066286, 145, '2020-02-08', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1066287, 145, '2020-02-09', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1066288, 145, '2020-02-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1066289, 145, '2020-02-11', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1066290, 145, '2020-02-12', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1066291, 145, '2020-02-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1066292, 145, '2020-02-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1066293, 145, '2020-02-15', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1066294, 145, '2020-02-16', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079253, 115, '2020-04-01', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079254, 115, '2020-04-02', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079255, 115, '2020-04-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079256, 115, '2020-04-04', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1066295, 145, '2020-02-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1066296, 145, '2020-02-18', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1066297, 145, '2020-02-19', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1066298, 145, '2020-02-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1066299, 145, '2020-02-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1066300, 145, '2020-02-22', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1066301, 145, '2020-02-23', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1068421, 148, '2020-01-22', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1068422, 148, '2020-01-23', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1068423, 148, '2020-01-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1068424, 148, '2020-01-25', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1068425, 148, '2020-01-26', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1068426, 148, '2020-01-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1068427, 148, '2020-01-28', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1068428, 148, '2020-01-29', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1068429, 148, '2020-01-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1068430, 148, '2020-01-31', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1070564, 130, '2020-01-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1070565, 130, '2020-01-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1070566, 130, '2020-01-15', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1070567, 130, '2020-01-16', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1070568, 130, '2020-01-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1070569, 130, '2020-01-18', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1070570, 130, '2020-01-19', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1070571, 130, '2020-01-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1070572, 130, '2020-01-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1070573, 130, '2020-01-22', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1070574, 130, '2020-01-23', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1070575, 130, '2020-01-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1070576, 130, '2020-01-25', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1070577, 130, '2020-01-26', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1070578, 130, '2020-01-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1070579, 130, '2020-01-28', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1070580, 130, '2020-01-29', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1070581, 130, '2020-01-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079257, 115, '2020-04-05', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079258, 115, '2020-04-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079259, 115, '2020-04-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079260, 115, '2020-04-08', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079261, 115, '2020-04-09', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1070582, 130, '2020-01-31', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1070583, 130, '2020-02-01', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1070584, 130, '2020-02-02', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1070585, 130, '2020-02-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1070586, 130, '2020-02-04', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1070587, 130, '2020-02-05', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1070588, 130, '2020-02-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1070589, 130, '2020-02-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1070590, 130, '2020-02-08', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1070591, 130, '2020-02-09', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1070592, 130, '2020-02-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1070593, 130, '2020-02-11', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1070594, 130, '2020-02-12', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1070595, 130, '2020-02-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1070596, 130, '2020-02-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1070597, 130, '2020-02-15', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1070598, 130, '2020-02-16', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1070599, 130, '2020-02-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1070600, 130, '2020-02-18', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1070601, 130, '2020-02-19', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1070602, 130, '2020-02-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1070603, 130, '2020-02-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1070604, 130, '2020-02-22', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1070605, 130, '2020-02-23', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (914490, 129, '2020-01-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (914491, 129, '2020-01-28', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (914492, 129, '2020-01-29', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (914493, 129, '2020-01-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (914494, 129, '2020-01-31', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (914495, 129, '2020-02-01', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (914496, 129, '2020-02-02', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (914497, 129, '2020-02-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (914498, 129, '2020-02-04', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (914499, 129, '2020-02-05', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079262, 115, '2020-04-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079263, 115, '2020-04-11', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079264, 115, '2020-04-12', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079265, 115, '2020-04-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079266, 115, '2020-04-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (914500, 129, '2020-02-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (914501, 129, '2020-02-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (914502, 129, '2020-02-08', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (914503, 129, '2020-02-09', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (914504, 129, '2020-02-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (914505, 129, '2020-02-11', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (914506, 129, '2020-02-12', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (914507, 129, '2020-02-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (914508, 129, '2020-02-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (914509, 129, '2020-02-15', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (914510, 129, '2020-02-16', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (914511, 129, '2020-02-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (914512, 129, '2020-02-18', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (914513, 129, '2020-02-19', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (914514, 129, '2020-02-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (914515, 129, '2020-02-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (914516, 129, '2020-02-22', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1074877, 143, '2020-01-22', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1074878, 143, '2020-01-23', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1074879, 143, '2020-01-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1074880, 143, '2020-01-25', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1074881, 143, '2020-01-26', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1074882, 143, '2020-01-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1074883, 143, '2020-01-28', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1074884, 143, '2020-01-29', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1074885, 143, '2020-01-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1074886, 143, '2020-01-31', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079160, 146, '2020-02-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079161, 146, '2020-02-25', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079162, 146, '2020-02-26', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079163, 146, '2020-02-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079164, 146, '2020-02-28', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079165, 146, '2020-02-29', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079267, 115, '2020-04-15', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079268, 115, '2020-04-16', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079269, 115, '2020-04-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079270, 115, '2020-04-18', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079271, 115, '2020-04-19', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079272, 114, '2020-02-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079273, 114, '2020-02-25', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079274, 114, '2020-02-26', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079275, 114, '2020-02-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079276, 114, '2020-02-28', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079277, 114, '2020-02-29', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079278, 114, '2020-03-01', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (988776, 146, '2020-01-01', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (988777, 146, '2020-01-02', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (988778, 146, '2020-01-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (988779, 146, '2020-01-04', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (988780, 146, '2020-01-05', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (988781, 146, '2020-01-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (988782, 146, '2020-01-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (988783, 146, '2020-01-08', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (988784, 146, '2020-01-09', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (988785, 146, '2020-01-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (988786, 146, '2020-01-11', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (988787, 146, '2020-01-12', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079279, 114, '2020-03-02', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079280, 114, '2020-03-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079281, 114, '2020-03-04', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079282, 114, '2020-03-05', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079283, 114, '2020-03-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (988788, 146, '2020-01-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (988789, 146, '2020-01-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079284, 114, '2020-03-07', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (988790, 146, '2020-01-15', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (988791, 146, '2020-01-16', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079285, 114, '2020-03-08', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (988792, 146, '2020-01-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (988793, 146, '2020-01-18', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079286, 114, '2020-03-09', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (988794, 146, '2020-01-19', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (988795, 146, '2020-01-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (988796, 146, '2020-01-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (988806, 146, '2020-01-31', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (988807, 146, '2020-02-01', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (988808, 146, '2020-02-02', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (988809, 146, '2020-02-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (988810, 146, '2020-02-04', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (988811, 146, '2020-02-05', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (988812, 146, '2020-02-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (988813, 146, '2020-02-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (988814, 146, '2020-02-08', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (988815, 146, '2020-02-09', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (988816, 146, '2020-02-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (988817, 146, '2020-02-11', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (988818, 146, '2020-02-12', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (988819, 146, '2020-02-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (988820, 146, '2020-02-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (988821, 146, '2020-02-15', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (988822, 146, '2020-02-16', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (988823, 146, '2020-02-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (988824, 146, '2020-02-18', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079287, 114, '2020-03-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (988825, 146, '2020-02-19', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (988826, 146, '2020-02-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079288, 114, '2020-03-11', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (988827, 146, '2020-02-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (988828, 146, '2020-02-22', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079289, 114, '2020-03-12', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (988829, 146, '2020-02-23', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079290, 114, '2020-03-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079291, 114, '2020-03-14', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079292, 114, '2020-03-15', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079293, 114, '2020-03-16', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079294, 114, '2020-03-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079295, 114, '2020-03-18', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079296, 114, '2020-03-19', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079297, 114, '2020-03-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079298, 114, '2020-03-21', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079299, 114, '2020-03-22', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079300, 114, '2020-03-23', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079301, 114, '2020-03-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079302, 114, '2020-03-25', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079303, 114, '2020-03-26', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079304, 114, '2020-03-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079305, 114, '2020-03-28', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079306, 114, '2020-03-29', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079307, 114, '2020-03-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079308, 114, '2020-03-31', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079309, 114, '2020-04-01', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079310, 114, '2020-04-02', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079311, 114, '2020-04-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079312, 114, '2020-04-04', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079313, 114, '2020-04-05', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079314, 114, '2020-04-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079315, 114, '2020-04-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079316, 114, '2020-04-08', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079317, 114, '2020-04-09', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079318, 114, '2020-04-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079319, 114, '2020-04-11', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079320, 114, '2020-04-12', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079321, 114, '2020-04-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079322, 114, '2020-04-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079323, 114, '2020-04-15', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079324, 114, '2020-04-16', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079325, 114, '2020-04-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079326, 114, '2020-04-18', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079327, 114, '2020-04-19', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079328, 112, '2020-02-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079329, 112, '2020-02-25', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079330, 112, '2020-02-26', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079331, 112, '2020-02-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079332, 112, '2020-02-28', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079333, 112, '2020-02-29', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079334, 112, '2020-03-01', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079335, 112, '2020-03-02', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079336, 112, '2020-03-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079337, 112, '2020-03-04', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079338, 112, '2020-03-05', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079339, 112, '2020-03-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079340, 112, '2020-03-07', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079341, 112, '2020-03-08', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079342, 112, '2020-03-09', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079343, 112, '2020-03-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079344, 112, '2020-03-11', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079345, 112, '2020-03-12', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079346, 112, '2020-03-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079347, 112, '2020-03-14', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079348, 112, '2020-03-15', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079349, 112, '2020-03-16', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079350, 112, '2020-03-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079351, 112, '2020-03-18', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079352, 112, '2020-03-19', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079353, 112, '2020-03-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079354, 112, '2020-03-21', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079355, 112, '2020-03-22', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079356, 112, '2020-03-23', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079357, 112, '2020-03-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079358, 112, '2020-03-25', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079359, 112, '2020-03-26', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079360, 112, '2020-03-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079361, 112, '2020-03-28', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079362, 112, '2020-03-29', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079363, 112, '2020-03-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079364, 112, '2020-03-31', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079365, 112, '2020-04-01', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079366, 112, '2020-04-02', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079367, 112, '2020-04-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079368, 112, '2020-04-04', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079369, 112, '2020-04-05', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079370, 112, '2020-04-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079371, 112, '2020-04-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079372, 112, '2020-04-08', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079373, 112, '2020-04-09', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079374, 112, '2020-04-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079375, 112, '2020-04-11', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079376, 112, '2020-04-12', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079377, 112, '2020-04-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079378, 112, '2020-04-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079379, 112, '2020-04-15', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079380, 112, '2020-04-16', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079381, 112, '2020-04-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079382, 112, '2020-04-18', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079383, 112, '2020-04-19', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079384, 108, '2020-02-24', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079385, 108, '2020-02-25', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079386, 108, '2020-02-26', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079387, 108, '2020-02-27', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079388, 108, '2020-02-28', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079389, 108, '2020-02-29', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079390, 108, '2020-03-01', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079391, 108, '2020-03-02', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079392, 108, '2020-03-03', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079393, 108, '2020-03-04', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079394, 108, '2020-03-05', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079395, 108, '2020-03-06', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079396, 108, '2020-03-07', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079397, 108, '2020-03-08', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079398, 108, '2020-03-09', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079399, 108, '2020-03-10', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079400, 108, '2020-03-11', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079401, 108, '2020-03-12', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079402, 108, '2020-03-13', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079403, 108, '2020-03-14', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079404, 108, '2020-03-15', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079405, 108, '2020-03-16', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079406, 108, '2020-03-17', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079407, 108, '2020-03-18', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079408, 108, '2020-03-19', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079409, 108, '2020-03-20', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079410, 108, '2020-03-21', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079411, 108, '2020-03-22', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079412, 108, '2020-03-23', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079413, 108, '2020-03-24', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079414, 108, '2020-03-25', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079415, 108, '2020-03-26', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079416, 108, '2020-03-27', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079417, 108, '2020-03-28', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079418, 108, '2020-03-29', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079419, 108, '2020-03-30', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079420, 108, '2020-03-31', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079421, 108, '2020-04-01', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079422, 108, '2020-04-02', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079423, 108, '2020-04-03', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079424, 108, '2020-04-04', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079425, 108, '2020-04-05', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079426, 108, '2020-04-06', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079427, 108, '2020-04-07', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079428, 108, '2020-04-08', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079429, 108, '2020-04-09', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079430, 108, '2020-04-10', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079431, 108, '2020-04-11', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079432, 108, '2020-04-12', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079433, 108, '2020-04-13', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079434, 108, '2020-04-14', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079435, 108, '2020-04-15', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079436, 108, '2020-04-16', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079437, 108, '2020-04-17', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079438, 108, '2020-04-18', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079439, 108, '2020-04-19', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079440, 135, '2020-02-24', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079441, 135, '2020-02-25', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079442, 135, '2020-02-26', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079443, 135, '2020-02-27', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079444, 135, '2020-02-28', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079445, 135, '2020-02-29', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079446, 135, '2020-03-01', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079447, 135, '2020-03-02', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079448, 135, '2020-03-03', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079449, 135, '2020-03-04', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079450, 135, '2020-03-05', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079451, 135, '2020-03-06', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079452, 135, '2020-03-07', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079453, 135, '2020-03-08', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079454, 135, '2020-03-09', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079455, 135, '2020-03-10', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079456, 135, '2020-03-11', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079457, 135, '2020-03-12', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079458, 135, '2020-03-13', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079459, 135, '2020-03-14', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079460, 135, '2020-03-15', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079461, 135, '2020-03-16', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079462, 135, '2020-03-17', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079463, 135, '2020-03-18', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079464, 135, '2020-03-19', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079465, 135, '2020-03-20', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079466, 135, '2020-03-21', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079467, 135, '2020-03-22', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079468, 135, '2020-03-23', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079469, 135, '2020-03-24', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079470, 135, '2020-03-25', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079471, 135, '2020-03-26', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079472, 135, '2020-03-27', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079473, 135, '2020-03-28', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079474, 135, '2020-03-29', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079475, 135, '2020-03-30', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079476, 135, '2020-03-31', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079477, 135, '2020-04-01', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079478, 135, '2020-04-02', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079479, 135, '2020-04-03', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079480, 135, '2020-04-04', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079481, 135, '2020-04-05', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079482, 135, '2020-04-06', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079483, 135, '2020-04-07', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079484, 135, '2020-04-08', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079485, 135, '2020-04-09', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079486, 135, '2020-04-10', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079487, 135, '2020-04-11', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079488, 135, '2020-04-12', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079489, 135, '2020-04-13', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079490, 135, '2020-04-14', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079491, 135, '2020-04-15', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079492, 135, '2020-04-16', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079493, 135, '2020-04-17', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079494, 135, '2020-04-18', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079495, 135, '2020-04-19', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079496, 127, '2020-02-24', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079497, 127, '2020-02-25', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079498, 127, '2020-02-26', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079499, 127, '2020-02-27', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079500, 127, '2020-02-28', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079501, 127, '2020-02-29', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079502, 127, '2020-03-01', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079503, 127, '2020-03-02', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079504, 127, '2020-03-03', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079505, 127, '2020-03-04', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079506, 127, '2020-03-05', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079507, 127, '2020-03-06', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079508, 127, '2020-03-07', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079509, 127, '2020-03-08', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079510, 127, '2020-03-09', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079511, 127, '2020-03-10', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079512, 127, '2020-03-11', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079513, 127, '2020-03-12', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079514, 127, '2020-03-13', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079515, 127, '2020-03-14', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079516, 127, '2020-03-15', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079517, 127, '2020-03-16', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079518, 127, '2020-03-17', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079519, 127, '2020-03-18', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079520, 127, '2020-03-19', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079521, 127, '2020-03-20', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079522, 127, '2020-03-21', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079523, 127, '2020-03-22', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079524, 127, '2020-03-23', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079525, 127, '2020-03-24', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079526, 127, '2020-03-25', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079527, 127, '2020-03-26', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079528, 127, '2020-03-27', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079529, 127, '2020-03-28', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079530, 127, '2020-03-29', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079531, 127, '2020-03-30', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079532, 127, '2020-03-31', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079533, 127, '2020-04-01', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079534, 127, '2020-04-02', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079535, 127, '2020-04-03', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079536, 127, '2020-04-04', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079537, 127, '2020-04-05', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079538, 127, '2020-04-06', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079539, 127, '2020-04-07', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079540, 127, '2020-04-08', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079541, 127, '2020-04-09', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079542, 127, '2020-04-10', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079543, 127, '2020-04-11', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079544, 127, '2020-04-12', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079545, 127, '2020-04-13', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079546, 127, '2020-04-14', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079547, 127, '2020-04-15', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079548, 127, '2020-04-16', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079549, 127, '2020-04-17', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079550, 127, '2020-04-18', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079551, 127, '2020-04-19', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079552, 149, '2020-02-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079553, 149, '2020-02-25', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079554, 149, '2020-02-26', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079555, 149, '2020-02-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079556, 149, '2020-02-28', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079557, 149, '2020-02-29', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079558, 149, '2020-03-01', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079559, 149, '2020-03-02', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079560, 149, '2020-03-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079561, 149, '2020-03-04', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079562, 149, '2020-03-05', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079563, 149, '2020-03-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079564, 149, '2020-03-07', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079565, 149, '2020-03-08', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079566, 149, '2020-03-09', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079567, 149, '2020-03-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079568, 149, '2020-03-11', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079569, 149, '2020-03-12', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079570, 149, '2020-03-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079571, 149, '2020-03-14', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079572, 149, '2020-03-15', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079573, 149, '2020-03-16', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079574, 149, '2020-03-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079575, 149, '2020-03-18', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079576, 149, '2020-03-19', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079577, 149, '2020-03-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079578, 149, '2020-03-21', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079579, 149, '2020-03-22', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079580, 149, '2020-03-23', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079581, 149, '2020-03-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (990928, 132, '2020-01-01', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (990929, 132, '2020-01-02', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (990930, 132, '2020-01-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (990931, 132, '2020-01-04', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (990932, 132, '2020-01-05', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (990933, 132, '2020-01-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (990934, 132, '2020-01-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (990935, 132, '2020-01-08', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (990936, 132, '2020-01-09', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (990937, 132, '2020-01-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (990938, 132, '2020-01-11', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (990939, 132, '2020-01-12', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (990940, 132, '2020-01-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (990941, 132, '2020-01-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (990942, 132, '2020-01-15', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079582, 149, '2020-03-25', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079583, 149, '2020-03-26', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079584, 149, '2020-03-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079585, 149, '2020-03-28', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079586, 149, '2020-03-29', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079587, 149, '2020-03-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079588, 149, '2020-03-31', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079589, 149, '2020-04-01', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079590, 149, '2020-04-02', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079591, 149, '2020-04-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079592, 149, '2020-04-04', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079593, 149, '2020-04-05', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079594, 149, '2020-04-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079595, 149, '2020-04-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079596, 149, '2020-04-08', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079597, 149, '2020-04-09', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079598, 149, '2020-04-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079599, 149, '2020-04-11', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079600, 149, '2020-04-12', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079601, 149, '2020-04-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079602, 149, '2020-04-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079603, 149, '2020-04-15', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079604, 149, '2020-04-16', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079605, 149, '2020-04-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079606, 149, '2020-04-18', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079607, 149, '2020-04-19', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079608, 103, '2020-02-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079609, 103, '2020-02-25', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079610, 103, '2020-02-26', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079611, 103, '2020-02-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079612, 103, '2020-02-28', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079613, 103, '2020-02-29', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079614, 103, '2020-03-01', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079615, 103, '2020-03-02', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079616, 103, '2020-03-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079617, 103, '2020-03-04', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079618, 103, '2020-03-05', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079619, 103, '2020-03-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079620, 103, '2020-03-07', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079621, 103, '2020-03-08', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079622, 103, '2020-03-09', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079623, 103, '2020-03-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079624, 103, '2020-03-11', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079625, 103, '2020-03-12', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079626, 103, '2020-03-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079627, 103, '2020-03-14', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079628, 103, '2020-03-15', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079629, 103, '2020-03-16', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079630, 103, '2020-03-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079631, 103, '2020-03-18', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079632, 103, '2020-03-19', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079633, 103, '2020-03-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079634, 103, '2020-03-21', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079635, 103, '2020-03-22', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079636, 103, '2020-03-23', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079637, 103, '2020-03-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079638, 103, '2020-03-25', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079639, 103, '2020-03-26', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079640, 103, '2020-03-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079641, 103, '2020-03-28', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079642, 103, '2020-03-29', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079643, 103, '2020-03-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079644, 103, '2020-03-31', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079645, 103, '2020-04-01', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079646, 103, '2020-04-02', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079647, 103, '2020-04-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079648, 103, '2020-04-04', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079649, 103, '2020-04-05', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079650, 103, '2020-04-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079651, 103, '2020-04-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079652, 103, '2020-04-08', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079653, 103, '2020-04-09', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079654, 103, '2020-04-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079655, 103, '2020-04-11', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079656, 103, '2020-04-12', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079657, 103, '2020-04-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079658, 103, '2020-04-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079659, 103, '2020-04-15', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079660, 103, '2020-04-16', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079661, 103, '2020-04-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079662, 103, '2020-04-18', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079663, 103, '2020-04-19', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079664, 121, '2020-02-24', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079665, 121, '2020-02-25', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079666, 121, '2020-02-26', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079667, 121, '2020-02-27', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079668, 121, '2020-02-28', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079669, 121, '2020-02-29', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079670, 121, '2020-03-01', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079671, 121, '2020-03-02', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079672, 121, '2020-03-03', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079673, 121, '2020-03-04', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079674, 121, '2020-03-05', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079675, 121, '2020-03-06', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079676, 121, '2020-03-07', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079677, 121, '2020-03-08', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079678, 121, '2020-03-09', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079679, 121, '2020-03-10', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079680, 121, '2020-03-11', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079681, 121, '2020-03-12', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079682, 121, '2020-03-13', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079683, 121, '2020-03-14', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079684, 121, '2020-03-15', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079685, 121, '2020-03-16', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079686, 121, '2020-03-17', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079687, 121, '2020-03-18', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079688, 121, '2020-03-19', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079689, 121, '2020-03-20', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079690, 121, '2020-03-21', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079691, 121, '2020-03-22', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079692, 121, '2020-03-23', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079693, 121, '2020-03-24', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079694, 121, '2020-03-25', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079695, 121, '2020-03-26', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079696, 121, '2020-03-27', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079697, 121, '2020-03-28', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079698, 121, '2020-03-29', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079699, 121, '2020-03-30', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079700, 121, '2020-03-31', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079701, 121, '2020-04-01', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079702, 121, '2020-04-02', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079703, 121, '2020-04-03', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079704, 121, '2020-04-04', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079705, 121, '2020-04-05', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079706, 121, '2020-04-06', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079707, 121, '2020-04-07', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079708, 121, '2020-04-08', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079709, 121, '2020-04-09', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079710, 121, '2020-04-10', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079711, 121, '2020-04-11', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079712, 121, '2020-04-12', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079713, 121, '2020-04-13', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079714, 121, '2020-04-14', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079715, 121, '2020-04-15', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079716, 121, '2020-04-16', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079717, 121, '2020-04-17', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079718, 121, '2020-04-18', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079719, 121, '2020-04-19', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079720, 125, '2020-02-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079721, 125, '2020-02-25', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079722, 125, '2020-02-26', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079723, 125, '2020-02-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079724, 125, '2020-02-28', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079725, 125, '2020-02-29', NULL, NULL, NULL, NULL, NULL, '00:00:00', '03:20:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079726, 125, '2020-03-01', NULL, NULL, NULL, NULL, NULL, '00:00:00', '03:20:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079727, 125, '2020-03-02', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079728, 125, '2020-03-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079729, 125, '2020-03-04', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079730, 125, '2020-03-05', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079731, 125, '2020-03-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079732, 125, '2020-03-07', NULL, NULL, NULL, NULL, NULL, '00:00:00', '03:20:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079733, 125, '2020-03-08', NULL, NULL, NULL, NULL, NULL, '00:00:00', '03:20:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079734, 125, '2020-03-09', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079735, 125, '2020-03-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079736, 125, '2020-03-11', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079737, 125, '2020-03-12', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079738, 125, '2020-03-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079739, 125, '2020-03-14', NULL, NULL, NULL, NULL, NULL, '00:00:00', '03:20:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079740, 125, '2020-03-15', NULL, NULL, NULL, NULL, NULL, '00:00:00', '03:20:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079741, 125, '2020-03-16', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079742, 125, '2020-03-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079743, 125, '2020-03-18', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079744, 125, '2020-03-19', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079745, 125, '2020-03-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079746, 125, '2020-03-21', NULL, NULL, NULL, NULL, NULL, '00:00:00', '03:20:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079747, 125, '2020-03-22', NULL, NULL, NULL, NULL, NULL, '00:00:00', '03:20:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079748, 125, '2020-03-23', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079749, 125, '2020-03-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079750, 125, '2020-03-25', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079751, 125, '2020-03-26', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079752, 125, '2020-03-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079753, 125, '2020-03-28', NULL, NULL, NULL, NULL, NULL, '00:00:00', '03:20:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079754, 125, '2020-03-29', NULL, NULL, NULL, NULL, NULL, '00:00:00', '03:20:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079755, 125, '2020-03-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079756, 125, '2020-03-31', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079757, 125, '2020-04-01', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079758, 125, '2020-04-02', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079759, 125, '2020-04-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079760, 125, '2020-04-04', NULL, NULL, NULL, NULL, NULL, '00:00:00', '03:20:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079761, 125, '2020-04-05', NULL, NULL, NULL, NULL, NULL, '00:00:00', '03:20:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079762, 125, '2020-04-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079763, 125, '2020-04-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079764, 125, '2020-04-08', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079765, 125, '2020-04-09', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079766, 125, '2020-04-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079767, 125, '2020-04-11', NULL, NULL, NULL, NULL, NULL, '00:00:00', '03:20:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079768, 125, '2020-04-12', NULL, NULL, NULL, NULL, NULL, '00:00:00', '03:20:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079769, 125, '2020-04-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079770, 125, '2020-04-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079771, 125, '2020-04-15', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079772, 125, '2020-04-16', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079773, 125, '2020-04-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079774, 125, '2020-04-18', NULL, NULL, NULL, NULL, NULL, '00:00:00', '03:20:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079775, 125, '2020-04-19', NULL, NULL, NULL, NULL, NULL, '00:00:00', '03:20:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079776, 119, '2020-02-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079777, 119, '2020-02-25', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079778, 119, '2020-02-26', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079779, 119, '2020-02-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079780, 119, '2020-02-28', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079781, 119, '2020-02-29', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079782, 119, '2020-03-01', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079783, 119, '2020-03-02', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079784, 119, '2020-03-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079785, 119, '2020-03-04', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079786, 119, '2020-03-05', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079787, 119, '2020-03-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079788, 119, '2020-03-07', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079789, 119, '2020-03-08', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079790, 119, '2020-03-09', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079791, 119, '2020-03-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079792, 119, '2020-03-11', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079793, 119, '2020-03-12', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079794, 119, '2020-03-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079795, 119, '2020-03-14', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079796, 119, '2020-03-15', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079797, 119, '2020-03-16', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079798, 119, '2020-03-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079799, 119, '2020-03-18', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079800, 119, '2020-03-19', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079801, 119, '2020-03-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079802, 119, '2020-03-21', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079803, 119, '2020-03-22', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079804, 119, '2020-03-23', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079805, 119, '2020-03-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079806, 119, '2020-03-25', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079807, 119, '2020-03-26', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079808, 119, '2020-03-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079809, 119, '2020-03-28', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079810, 119, '2020-03-29', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079811, 119, '2020-03-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079812, 119, '2020-03-31', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079813, 119, '2020-04-01', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079814, 119, '2020-04-02', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079815, 119, '2020-04-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079816, 119, '2020-04-04', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079817, 119, '2020-04-05', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079818, 119, '2020-04-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079819, 119, '2020-04-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079820, 119, '2020-04-08', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079821, 119, '2020-04-09', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079822, 119, '2020-04-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079823, 119, '2020-04-11', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079824, 119, '2020-04-12', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079825, 119, '2020-04-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079826, 119, '2020-04-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079827, 119, '2020-04-15', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079828, 119, '2020-04-16', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079829, 119, '2020-04-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079830, 119, '2020-04-18', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079831, 119, '2020-04-19', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079832, 113, '2020-02-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079833, 113, '2020-02-25', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079834, 113, '2020-02-26', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079835, 113, '2020-02-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079836, 113, '2020-02-28', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079837, 113, '2020-02-29', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079838, 113, '2020-03-01', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079839, 113, '2020-03-02', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079840, 113, '2020-03-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079841, 113, '2020-03-04', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (993134, 115, '2019-12-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (993135, 115, '2019-12-31', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079842, 113, '2020-03-05', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079843, 113, '2020-03-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079844, 113, '2020-03-07', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079845, 113, '2020-03-08', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079846, 113, '2020-03-09', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079847, 113, '2020-03-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079848, 113, '2020-03-11', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079849, 113, '2020-03-12', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079850, 113, '2020-03-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079851, 113, '2020-03-14', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079852, 113, '2020-03-15', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079853, 113, '2020-03-16', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079854, 113, '2020-03-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079855, 113, '2020-03-18', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079856, 113, '2020-03-19', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079857, 113, '2020-03-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079858, 113, '2020-03-21', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079859, 113, '2020-03-22', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079860, 113, '2020-03-23', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079861, 113, '2020-03-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079862, 113, '2020-03-25', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079863, 113, '2020-03-26', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079864, 113, '2020-03-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079865, 113, '2020-03-28', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079866, 113, '2020-03-29', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079867, 113, '2020-03-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079868, 113, '2020-03-31', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079869, 113, '2020-04-01', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079870, 113, '2020-04-02', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079871, 113, '2020-04-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079872, 113, '2020-04-04', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079873, 113, '2020-04-05', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079874, 113, '2020-04-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079875, 113, '2020-04-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079876, 113, '2020-04-08', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079877, 113, '2020-04-09', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079878, 113, '2020-04-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079879, 113, '2020-04-11', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079880, 113, '2020-04-12', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079881, 113, '2020-04-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079882, 113, '2020-04-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079883, 113, '2020-04-15', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079884, 113, '2020-04-16', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079885, 113, '2020-04-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079886, 113, '2020-04-18', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079887, 113, '2020-04-19', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079888, 147, '2020-02-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (993080, 115, '2020-01-01', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (993081, 115, '2020-01-02', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (993082, 115, '2020-01-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (993083, 115, '2020-01-04', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (993084, 115, '2020-01-05', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (993085, 115, '2020-01-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (993086, 115, '2020-01-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (993087, 115, '2020-01-08', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (993088, 115, '2020-01-09', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (993089, 115, '2020-01-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (993090, 115, '2020-01-11', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (993091, 115, '2020-01-12', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (993092, 115, '2020-01-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (993093, 115, '2020-01-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079889, 147, '2020-02-25', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079890, 147, '2020-02-26', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079891, 147, '2020-02-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079892, 147, '2020-02-28', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (993094, 115, '2020-01-15', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (993095, 115, '2020-01-16', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079893, 147, '2020-02-29', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (993096, 115, '2020-01-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (993097, 115, '2020-01-18', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079894, 147, '2020-03-01', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (993098, 115, '2020-01-19', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (993099, 115, '2020-01-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079895, 147, '2020-03-02', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (993100, 115, '2020-01-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (993101, 115, '2020-01-22', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079896, 147, '2020-03-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (993108, 115, '2020-01-29', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (993109, 115, '2020-01-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (993110, 115, '2020-01-31', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (993111, 115, '2020-02-01', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (993112, 115, '2020-02-02', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (993113, 115, '2020-02-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (993114, 115, '2020-02-04', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (993115, 115, '2020-02-05', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (993116, 115, '2020-02-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (993117, 115, '2020-02-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (993118, 115, '2020-02-08', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (993119, 115, '2020-02-09', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (993120, 115, '2020-02-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (993121, 115, '2020-02-11', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (993122, 115, '2020-02-12', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079897, 147, '2020-03-04', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (993123, 115, '2020-02-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (993124, 115, '2020-02-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079898, 147, '2020-03-05', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (993125, 115, '2020-02-15', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (993126, 115, '2020-02-16', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079899, 147, '2020-03-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (993127, 115, '2020-02-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (993128, 115, '2020-02-18', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079900, 147, '2020-03-07', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (993129, 115, '2020-02-19', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (993130, 115, '2020-02-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079901, 147, '2020-03-08', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079902, 147, '2020-03-09', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079903, 147, '2020-03-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079904, 147, '2020-03-11', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079905, 147, '2020-03-12', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079906, 147, '2020-03-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079907, 147, '2020-03-14', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079908, 147, '2020-03-15', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079909, 147, '2020-03-16', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079910, 147, '2020-03-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079911, 147, '2020-03-18', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079912, 147, '2020-03-19', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079913, 147, '2020-03-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079914, 147, '2020-03-21', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079915, 147, '2020-03-22', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079916, 147, '2020-03-23', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079917, 147, '2020-03-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079918, 147, '2020-03-25', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079919, 147, '2020-03-26', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079920, 147, '2020-03-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079921, 147, '2020-03-28', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079922, 147, '2020-03-29', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079923, 147, '2020-03-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079924, 147, '2020-03-31', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079925, 147, '2020-04-01', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079926, 147, '2020-04-02', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079927, 147, '2020-04-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079928, 147, '2020-04-04', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079929, 147, '2020-04-05', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079930, 147, '2020-04-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079931, 147, '2020-04-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079932, 147, '2020-04-08', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079933, 147, '2020-04-09', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079934, 147, '2020-04-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079935, 147, '2020-04-11', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079936, 147, '2020-04-12', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079937, 147, '2020-04-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079938, 147, '2020-04-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079939, 147, '2020-04-15', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079940, 147, '2020-04-16', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079941, 147, '2020-04-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079942, 147, '2020-04-18', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079943, 147, '2020-04-19', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079944, 131, '2020-02-24', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079945, 131, '2020-02-25', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079946, 131, '2020-02-26', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079947, 131, '2020-02-27', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079948, 131, '2020-02-28', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079949, 131, '2020-02-29', NULL, NULL, NULL, NULL, NULL, '00:00:00', '03:20:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079950, 131, '2020-03-01', NULL, NULL, NULL, NULL, NULL, '00:00:00', '03:20:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079951, 131, '2020-03-02', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079952, 131, '2020-03-03', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079953, 131, '2020-03-04', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079954, 131, '2020-03-05', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079955, 131, '2020-03-06', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079956, 131, '2020-03-07', NULL, NULL, NULL, NULL, NULL, '00:00:00', '03:20:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079957, 131, '2020-03-08', NULL, NULL, NULL, NULL, NULL, '00:00:00', '03:20:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079958, 131, '2020-03-09', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079959, 131, '2020-03-10', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079960, 131, '2020-03-11', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079961, 131, '2020-03-12', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079962, 131, '2020-03-13', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079963, 131, '2020-03-14', NULL, NULL, NULL, NULL, NULL, '00:00:00', '03:20:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079964, 131, '2020-03-15', NULL, NULL, NULL, NULL, NULL, '00:00:00', '03:20:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079965, 131, '2020-03-16', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079966, 131, '2020-03-17', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079967, 131, '2020-03-18', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079968, 131, '2020-03-19', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079969, 131, '2020-03-20', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079970, 131, '2020-03-21', NULL, NULL, NULL, NULL, NULL, '00:00:00', '03:20:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079971, 131, '2020-03-22', NULL, NULL, NULL, NULL, NULL, '00:00:00', '03:20:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079972, 131, '2020-03-23', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079973, 131, '2020-03-24', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079974, 131, '2020-03-25', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079975, 131, '2020-03-26', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079976, 131, '2020-03-27', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079977, 131, '2020-03-28', NULL, NULL, NULL, NULL, NULL, '00:00:00', '03:20:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079978, 131, '2020-03-29', NULL, NULL, NULL, NULL, NULL, '00:00:00', '03:20:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079979, 131, '2020-03-30', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079980, 131, '2020-03-31', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079981, 131, '2020-04-01', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079982, 131, '2020-04-02', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079983, 131, '2020-04-03', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079984, 131, '2020-04-04', NULL, NULL, NULL, NULL, NULL, '00:00:00', '03:20:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079985, 131, '2020-04-05', NULL, NULL, NULL, NULL, NULL, '00:00:00', '03:20:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079986, 131, '2020-04-06', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079987, 131, '2020-04-07', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079988, 131, '2020-04-08', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079989, 131, '2020-04-09', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079990, 131, '2020-04-10', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079991, 131, '2020-04-11', NULL, NULL, NULL, NULL, NULL, '00:00:00', '03:20:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079992, 131, '2020-04-12', NULL, NULL, NULL, NULL, NULL, '00:00:00', '03:20:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079993, 131, '2020-04-13', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079994, 131, '2020-04-14', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079995, 131, '2020-04-15', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079996, 131, '2020-04-16', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079997, 131, '2020-04-17', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079998, 131, '2020-04-18', NULL, NULL, NULL, NULL, NULL, '00:00:00', '03:20:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079999, 131, '2020-04-19', NULL, NULL, NULL, NULL, NULL, '00:00:00', '03:20:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080000, 104, '2020-02-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '05:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080001, 104, '2020-02-25', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '05:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080002, 104, '2020-02-26', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '05:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080003, 104, '2020-02-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '05:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080004, 104, '2020-02-28', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '05:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080005, 104, '2020-02-29', NULL, NULL, NULL, NULL, NULL, '00:00:00', '05:00:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080006, 104, '2020-03-01', NULL, NULL, NULL, NULL, NULL, '00:00:00', '05:00:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080007, 104, '2020-03-02', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '05:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080008, 104, '2020-03-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '05:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080009, 104, '2020-03-04', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '05:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080010, 104, '2020-03-05', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '05:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080011, 104, '2020-03-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '05:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080012, 104, '2020-03-07', NULL, NULL, NULL, NULL, NULL, '00:00:00', '05:00:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080013, 104, '2020-03-08', NULL, NULL, NULL, NULL, NULL, '00:00:00', '05:00:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080014, 104, '2020-03-09', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '05:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080015, 104, '2020-03-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '05:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080016, 104, '2020-03-11', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '05:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080017, 104, '2020-03-12', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '05:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080018, 104, '2020-03-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '05:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080019, 104, '2020-03-14', NULL, NULL, NULL, NULL, NULL, '00:00:00', '05:00:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080020, 104, '2020-03-15', NULL, NULL, NULL, NULL, NULL, '00:00:00', '05:00:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080021, 104, '2020-03-16', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '05:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080022, 104, '2020-03-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '05:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080023, 104, '2020-03-18', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '05:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080024, 104, '2020-03-19', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '05:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080025, 104, '2020-03-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '05:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080026, 104, '2020-03-21', NULL, NULL, NULL, NULL, NULL, '00:00:00', '05:00:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080027, 104, '2020-03-22', NULL, NULL, NULL, NULL, NULL, '00:00:00', '05:00:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080028, 104, '2020-03-23', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '05:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080029, 104, '2020-03-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '05:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080030, 104, '2020-03-25', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '05:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080031, 104, '2020-03-26', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '05:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080032, 104, '2020-03-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '05:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080033, 104, '2020-03-28', NULL, NULL, NULL, NULL, NULL, '00:00:00', '05:00:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080034, 104, '2020-03-29', NULL, NULL, NULL, NULL, NULL, '00:00:00', '05:00:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080035, 104, '2020-03-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '05:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080036, 104, '2020-03-31', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '05:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080037, 104, '2020-04-01', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '05:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080038, 104, '2020-04-02', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '05:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080039, 104, '2020-04-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '05:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080040, 104, '2020-04-04', NULL, NULL, NULL, NULL, NULL, '00:00:00', '05:00:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080041, 104, '2020-04-05', NULL, NULL, NULL, NULL, NULL, '00:00:00', '05:00:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080042, 104, '2020-04-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '05:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080043, 104, '2020-04-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '05:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080044, 104, '2020-04-08', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '05:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080045, 104, '2020-04-09', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '05:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080046, 104, '2020-04-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '05:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080047, 104, '2020-04-11', NULL, NULL, NULL, NULL, NULL, '00:00:00', '05:00:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080048, 104, '2020-04-12', NULL, NULL, NULL, NULL, NULL, '00:00:00', '05:00:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080049, 104, '2020-04-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '05:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080050, 104, '2020-04-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '05:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080051, 104, '2020-04-15', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '05:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080052, 104, '2020-04-16', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '05:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080053, 104, '2020-04-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '05:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080054, 104, '2020-04-18', NULL, NULL, NULL, NULL, NULL, '00:00:00', '05:00:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080055, 104, '2020-04-19', NULL, NULL, NULL, NULL, NULL, '00:00:00', '05:00:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080056, 151, '2020-02-24', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080057, 151, '2020-02-25', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080058, 151, '2020-02-26', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080059, 151, '2020-02-27', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080060, 151, '2020-02-28', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080061, 151, '2020-02-29', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080062, 151, '2020-03-01', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080063, 151, '2020-03-02', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080064, 151, '2020-03-03', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080065, 151, '2020-03-04', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080066, 151, '2020-03-05', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080067, 151, '2020-03-06', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080068, 151, '2020-03-07', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080069, 151, '2020-03-08', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080070, 151, '2020-03-09', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080071, 151, '2020-03-10', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080072, 151, '2020-03-11', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080073, 151, '2020-03-12', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080074, 151, '2020-03-13', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080075, 151, '2020-03-14', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080076, 151, '2020-03-15', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080077, 151, '2020-03-16', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080078, 151, '2020-03-17', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080079, 151, '2020-03-18', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080080, 151, '2020-03-19', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080081, 151, '2020-03-20', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080082, 151, '2020-03-21', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080083, 151, '2020-03-22', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080084, 151, '2020-03-23', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080085, 151, '2020-03-24', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080086, 151, '2020-03-25', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080087, 151, '2020-03-26', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080088, 151, '2020-03-27', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080089, 151, '2020-03-28', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080090, 151, '2020-03-29', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080091, 151, '2020-03-30', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080092, 151, '2020-03-31', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080093, 151, '2020-04-01', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080094, 151, '2020-04-02', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080095, 151, '2020-04-03', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080096, 151, '2020-04-04', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080097, 151, '2020-04-05', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080098, 151, '2020-04-06', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080099, 151, '2020-04-07', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080100, 151, '2020-04-08', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080101, 151, '2020-04-09', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080102, 151, '2020-04-10', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080103, 151, '2020-04-11', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080104, 151, '2020-04-12', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080105, 151, '2020-04-13', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080106, 151, '2020-04-14', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080107, 151, '2020-04-15', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080108, 151, '2020-04-16', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080109, 151, '2020-04-17', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080110, 151, '2020-04-18', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080111, 151, '2020-04-19', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080112, 138, '2020-02-24', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080113, 138, '2020-02-25', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080114, 138, '2020-02-26', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080115, 138, '2020-02-27', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080116, 138, '2020-02-28', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080117, 138, '2020-02-29', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080118, 138, '2020-03-01', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080119, 138, '2020-03-02', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080120, 138, '2020-03-03', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080121, 138, '2020-03-04', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080122, 138, '2020-03-05', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080123, 138, '2020-03-06', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080124, 138, '2020-03-07', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080125, 138, '2020-03-08', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080126, 138, '2020-03-09', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080127, 138, '2020-03-10', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080128, 138, '2020-03-11', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080129, 138, '2020-03-12', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080130, 138, '2020-03-13', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080131, 138, '2020-03-14', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080132, 138, '2020-03-15', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080133, 138, '2020-03-16', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080134, 138, '2020-03-17', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080135, 138, '2020-03-18', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080136, 138, '2020-03-19', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080137, 138, '2020-03-20', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080138, 138, '2020-03-21', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080139, 138, '2020-03-22', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080140, 138, '2020-03-23', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080141, 138, '2020-03-24', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080142, 138, '2020-03-25', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080143, 138, '2020-03-26', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080144, 138, '2020-03-27', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080145, 138, '2020-03-28', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080146, 138, '2020-03-29', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080147, 138, '2020-03-30', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080148, 138, '2020-03-31', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080149, 138, '2020-04-01', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080150, 138, '2020-04-02', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080151, 138, '2020-04-03', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080152, 138, '2020-04-04', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080153, 138, '2020-04-05', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080154, 138, '2020-04-06', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080155, 138, '2020-04-07', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080156, 138, '2020-04-08', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080157, 138, '2020-04-09', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080158, 138, '2020-04-10', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080159, 138, '2020-04-11', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080160, 138, '2020-04-12', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080161, 138, '2020-04-13', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080162, 138, '2020-04-14', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080163, 138, '2020-04-15', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080164, 138, '2020-04-16', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080165, 138, '2020-04-17', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080166, 138, '2020-04-18', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080167, 138, '2020-04-19', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080168, 105, '2020-02-24', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080169, 105, '2020-02-25', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080170, 105, '2020-02-26', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080171, 105, '2020-02-27', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080172, 105, '2020-02-28', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080173, 105, '2020-02-29', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080174, 105, '2020-03-01', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080175, 105, '2020-03-02', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080176, 105, '2020-03-03', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080177, 105, '2020-03-04', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080178, 105, '2020-03-05', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080179, 105, '2020-03-06', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080180, 105, '2020-03-07', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080181, 105, '2020-03-08', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080182, 105, '2020-03-09', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080183, 105, '2020-03-10', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080184, 105, '2020-03-11', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080185, 105, '2020-03-12', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080186, 105, '2020-03-13', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080187, 105, '2020-03-14', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080188, 105, '2020-03-15', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080189, 105, '2020-03-16', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080190, 105, '2020-03-17', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080191, 105, '2020-03-18', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080192, 105, '2020-03-19', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080193, 105, '2020-03-20', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080194, 105, '2020-03-21', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080195, 105, '2020-03-22', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080196, 105, '2020-03-23', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080197, 105, '2020-03-24', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080198, 105, '2020-03-25', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080199, 105, '2020-03-26', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080200, 105, '2020-03-27', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080201, 105, '2020-03-28', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080202, 105, '2020-03-29', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080203, 105, '2020-03-30', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080204, 105, '2020-03-31', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080205, 105, '2020-04-01', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080206, 105, '2020-04-02', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080207, 105, '2020-04-03', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080208, 105, '2020-04-04', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080209, 105, '2020-04-05', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080210, 105, '2020-04-06', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080211, 105, '2020-04-07', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080212, 105, '2020-04-08', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080213, 105, '2020-04-09', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080214, 105, '2020-04-10', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080215, 105, '2020-04-11', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080216, 105, '2020-04-12', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080217, 105, '2020-04-13', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080218, 105, '2020-04-14', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080219, 105, '2020-04-15', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080220, 105, '2020-04-16', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080221, 105, '2020-04-17', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080222, 105, '2020-04-18', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080223, 105, '2020-04-19', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080224, 134, '2020-02-24', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080225, 134, '2020-02-25', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080226, 134, '2020-02-26', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080227, 134, '2020-02-27', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080228, 134, '2020-02-28', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080229, 134, '2020-02-29', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080230, 134, '2020-03-01', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080231, 134, '2020-03-02', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080232, 134, '2020-03-03', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080233, 134, '2020-03-04', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080234, 134, '2020-03-05', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080235, 134, '2020-03-06', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080236, 134, '2020-03-07', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080237, 134, '2020-03-08', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080238, 134, '2020-03-09', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080239, 134, '2020-03-10', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080240, 134, '2020-03-11', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080241, 134, '2020-03-12', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080242, 134, '2020-03-13', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080243, 134, '2020-03-14', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080244, 134, '2020-03-15', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080245, 134, '2020-03-16', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080246, 134, '2020-03-17', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080247, 134, '2020-03-18', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080248, 134, '2020-03-19', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080249, 134, '2020-03-20', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080250, 134, '2020-03-21', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080251, 134, '2020-03-22', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080252, 134, '2020-03-23', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080253, 134, '2020-03-24', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080254, 134, '2020-03-25', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080255, 134, '2020-03-26', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080256, 134, '2020-03-27', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080257, 134, '2020-03-28', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080258, 134, '2020-03-29', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080259, 134, '2020-03-30', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080260, 134, '2020-03-31', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080261, 134, '2020-04-01', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080262, 134, '2020-04-02', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080263, 134, '2020-04-03', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080264, 134, '2020-04-04', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080265, 134, '2020-04-05', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080266, 134, '2020-04-06', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080267, 134, '2020-04-07', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080268, 134, '2020-04-08', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080269, 134, '2020-04-09', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080270, 134, '2020-04-10', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080271, 134, '2020-04-11', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080272, 134, '2020-04-12', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080273, 134, '2020-04-13', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080274, 134, '2020-04-14', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080275, 134, '2020-04-15', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080276, 134, '2020-04-16', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080277, 134, '2020-04-17', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080278, 134, '2020-04-18', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080279, 134, '2020-04-19', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080280, 144, '2020-02-24', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080281, 144, '2020-02-25', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080282, 144, '2020-02-26', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080283, 144, '2020-02-27', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080284, 144, '2020-02-28', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080285, 144, '2020-02-29', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080286, 144, '2020-03-01', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080287, 144, '2020-03-02', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080288, 144, '2020-03-03', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080289, 144, '2020-03-04', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080290, 144, '2020-03-05', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080291, 144, '2020-03-06', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080292, 144, '2020-03-07', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080293, 144, '2020-03-08', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080294, 144, '2020-03-09', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080295, 144, '2020-03-10', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080296, 144, '2020-03-11', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080297, 144, '2020-03-12', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080298, 144, '2020-03-13', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080299, 144, '2020-03-14', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080300, 144, '2020-03-15', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080301, 144, '2020-03-16', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080302, 144, '2020-03-17', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080303, 144, '2020-03-18', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080304, 144, '2020-03-19', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080305, 144, '2020-03-20', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080306, 144, '2020-03-21', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080307, 144, '2020-03-22', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080308, 144, '2020-03-23', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080309, 144, '2020-03-24', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080310, 144, '2020-03-25', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080311, 144, '2020-03-26', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080312, 144, '2020-03-27', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080313, 144, '2020-03-28', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080314, 144, '2020-03-29', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080315, 144, '2020-03-30', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080316, 144, '2020-03-31', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080317, 102, '2020-02-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080318, 102, '2020-02-25', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080319, 102, '2020-02-26', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080320, 102, '2020-02-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080321, 102, '2020-02-28', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080322, 102, '2020-02-29', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080323, 102, '2020-03-01', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080324, 102, '2020-03-02', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080325, 102, '2020-03-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080326, 102, '2020-03-04', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080327, 102, '2020-03-05', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080328, 102, '2020-03-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080329, 102, '2020-03-07', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080330, 102, '2020-03-08', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080331, 102, '2020-03-09', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080332, 102, '2020-03-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080333, 102, '2020-03-11', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080334, 102, '2020-03-12', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080335, 102, '2020-03-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080336, 102, '2020-03-14', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080337, 102, '2020-03-15', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080338, 102, '2020-03-16', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080339, 102, '2020-03-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080340, 102, '2020-03-18', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080341, 102, '2020-03-19', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080342, 102, '2020-03-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080343, 102, '2020-03-21', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080344, 102, '2020-03-22', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080345, 102, '2020-03-23', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080346, 102, '2020-03-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080347, 102, '2020-03-25', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080348, 102, '2020-03-26', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080349, 102, '2020-03-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080350, 102, '2020-03-28', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080351, 102, '2020-03-29', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080352, 102, '2020-03-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080353, 102, '2020-03-31', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080354, 102, '2020-04-01', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080355, 102, '2020-04-02', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080356, 102, '2020-04-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080357, 102, '2020-04-04', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080358, 102, '2020-04-05', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080359, 102, '2020-04-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080360, 102, '2020-04-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080361, 102, '2020-04-08', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080362, 102, '2020-04-09', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080363, 102, '2020-04-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080364, 102, '2020-04-11', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080365, 102, '2020-04-12', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080366, 102, '2020-04-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080367, 102, '2020-04-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080368, 102, '2020-04-15', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080369, 102, '2020-04-16', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080370, 102, '2020-04-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080371, 102, '2020-04-18', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080372, 102, '2020-04-19', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080373, 109, '2020-02-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080374, 109, '2020-02-25', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080375, 109, '2020-02-26', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080376, 109, '2020-02-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080377, 109, '2020-02-28', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080378, 109, '2020-02-29', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080379, 109, '2020-03-01', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080380, 109, '2020-03-02', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080381, 109, '2020-03-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080382, 109, '2020-03-04', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080383, 109, '2020-03-05', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080384, 109, '2020-03-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080385, 109, '2020-03-07', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080386, 109, '2020-03-08', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080387, 109, '2020-03-09', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080388, 109, '2020-03-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080389, 109, '2020-03-11', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080390, 109, '2020-03-12', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080391, 109, '2020-03-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080392, 109, '2020-03-14', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080393, 109, '2020-03-15', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080394, 109, '2020-03-16', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080395, 109, '2020-03-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080396, 109, '2020-03-18', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080397, 109, '2020-03-19', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080398, 109, '2020-03-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080399, 109, '2020-03-21', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080400, 109, '2020-03-22', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080401, 109, '2020-03-23', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080402, 109, '2020-03-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080403, 109, '2020-03-25', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080404, 109, '2020-03-26', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080405, 109, '2020-03-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080406, 109, '2020-03-28', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080407, 109, '2020-03-29', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080408, 109, '2020-03-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080409, 109, '2020-03-31', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080410, 109, '2020-04-01', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080411, 109, '2020-04-02', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080412, 109, '2020-04-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080413, 109, '2020-04-04', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080414, 109, '2020-04-05', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080415, 109, '2020-04-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080416, 109, '2020-04-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080417, 109, '2020-04-08', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080418, 109, '2020-04-09', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080419, 109, '2020-04-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080420, 109, '2020-04-11', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080421, 109, '2020-04-12', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080422, 109, '2020-04-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080423, 109, '2020-04-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080424, 109, '2020-04-15', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080425, 109, '2020-04-16', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080426, 109, '2020-04-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080427, 109, '2020-04-18', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080428, 109, '2020-04-19', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080429, 118, '2020-02-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080430, 118, '2020-02-25', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080431, 118, '2020-02-26', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080432, 118, '2020-02-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080433, 118, '2020-02-28', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080434, 118, '2020-02-29', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080435, 118, '2020-03-01', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080436, 118, '2020-03-02', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080437, 118, '2020-03-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080438, 118, '2020-03-04', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080439, 118, '2020-03-05', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080440, 118, '2020-03-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080441, 118, '2020-03-07', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080442, 118, '2020-03-08', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080443, 118, '2020-03-09', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080444, 118, '2020-03-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080445, 118, '2020-03-11', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080446, 118, '2020-03-12', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080447, 118, '2020-03-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080448, 118, '2020-03-14', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080449, 118, '2020-03-15', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080450, 118, '2020-03-16', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (995286, 114, '2019-12-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (995287, 114, '2019-12-31', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080451, 118, '2020-03-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080452, 118, '2020-03-18', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080453, 118, '2020-03-19', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080454, 118, '2020-03-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080455, 118, '2020-03-21', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080456, 118, '2020-03-22', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080457, 118, '2020-03-23', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080458, 118, '2020-03-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080459, 118, '2020-03-25', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080460, 118, '2020-03-26', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080461, 118, '2020-03-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080462, 118, '2020-03-28', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080463, 118, '2020-03-29', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080464, 118, '2020-03-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080465, 118, '2020-03-31', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080466, 118, '2020-04-01', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080467, 118, '2020-04-02', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080468, 118, '2020-04-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080469, 118, '2020-04-04', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080470, 118, '2020-04-05', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080471, 118, '2020-04-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080472, 118, '2020-04-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080473, 118, '2020-04-08', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080474, 118, '2020-04-09', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080475, 118, '2020-04-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080476, 118, '2020-04-11', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080477, 118, '2020-04-12', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080478, 118, '2020-04-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080479, 118, '2020-04-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080480, 118, '2020-04-15', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080481, 118, '2020-04-16', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080482, 118, '2020-04-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080483, 118, '2020-04-18', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080484, 118, '2020-04-19', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080485, 133, '2020-02-24', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080486, 133, '2020-02-25', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080487, 133, '2020-02-26', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080488, 133, '2020-02-27', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080489, 133, '2020-02-28', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080490, 133, '2020-02-29', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080491, 133, '2020-03-01', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080492, 133, '2020-03-02', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080493, 133, '2020-03-03', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080494, 133, '2020-03-04', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080495, 133, '2020-03-05', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080496, 133, '2020-03-06', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080497, 133, '2020-03-07', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080498, 133, '2020-03-08', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080499, 133, '2020-03-09', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080500, 133, '2020-03-10', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080501, 133, '2020-03-11', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080502, 133, '2020-03-12', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080503, 133, '2020-03-13', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080504, 133, '2020-03-14', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080505, 133, '2020-03-15', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080506, 133, '2020-03-16', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080507, 133, '2020-03-17', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080508, 133, '2020-03-18', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080509, 133, '2020-03-19', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080510, 133, '2020-03-20', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080511, 133, '2020-03-21', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080512, 133, '2020-03-22', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080513, 133, '2020-03-23', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080514, 133, '2020-03-24', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080515, 133, '2020-03-25', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080516, 133, '2020-03-26', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080517, 133, '2020-03-27', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080518, 133, '2020-03-28', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080519, 133, '2020-03-29', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080520, 133, '2020-03-30', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080521, 133, '2020-03-31', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080522, 133, '2020-04-01', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080523, 133, '2020-04-02', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080524, 133, '2020-04-03', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080525, 133, '2020-04-04', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080526, 133, '2020-04-05', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080527, 133, '2020-04-06', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080528, 133, '2020-04-07', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080529, 133, '2020-04-08', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080530, 133, '2020-04-09', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080531, 133, '2020-04-10', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080532, 133, '2020-04-11', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080533, 133, '2020-04-12', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080534, 133, '2020-04-13', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080535, 133, '2020-04-14', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080536, 133, '2020-04-15', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080537, 133, '2020-04-16', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080538, 133, '2020-04-17', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080539, 133, '2020-04-18', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080540, 133, '2020-04-19', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080541, 111, '2020-02-24', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080542, 111, '2020-02-25', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080543, 111, '2020-02-26', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080544, 111, '2020-02-27', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080545, 111, '2020-02-28', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080546, 111, '2020-02-29', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080547, 111, '2020-03-01', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080548, 111, '2020-03-02', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080549, 111, '2020-03-03', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080550, 111, '2020-03-04', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080551, 111, '2020-03-05', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080552, 111, '2020-03-06', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080553, 111, '2020-03-07', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080554, 111, '2020-03-08', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080555, 111, '2020-03-09', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080556, 111, '2020-03-10', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080557, 111, '2020-03-11', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080558, 111, '2020-03-12', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080559, 111, '2020-03-13', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080560, 111, '2020-03-14', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080561, 111, '2020-03-15', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080562, 111, '2020-03-16', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080563, 111, '2020-03-17', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080564, 111, '2020-03-18', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080565, 111, '2020-03-19', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080566, 111, '2020-03-20', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080567, 111, '2020-03-21', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080568, 111, '2020-03-22', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080569, 111, '2020-03-23', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080570, 111, '2020-03-24', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080571, 111, '2020-03-25', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080572, 111, '2020-03-26', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080573, 111, '2020-03-27', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080574, 111, '2020-03-28', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080575, 111, '2020-03-29', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080576, 111, '2020-03-30', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080577, 111, '2020-03-31', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080578, 111, '2020-04-01', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080579, 111, '2020-04-02', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080580, 111, '2020-04-03', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080581, 111, '2020-04-04', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080582, 111, '2020-04-05', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080583, 111, '2020-04-06', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080584, 111, '2020-04-07', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080585, 111, '2020-04-08', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080586, 111, '2020-04-09', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080587, 111, '2020-04-10', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080588, 111, '2020-04-11', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080589, 111, '2020-04-12', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080590, 111, '2020-04-13', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080591, 111, '2020-04-14', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080592, 111, '2020-04-15', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080593, 111, '2020-04-16', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080594, 111, '2020-04-17', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080595, 111, '2020-04-18', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080596, 111, '2020-04-19', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080597, 128, '2020-02-24', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080598, 128, '2020-02-25', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080599, 128, '2020-02-26', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (995232, 114, '2020-01-01', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080600, 128, '2020-02-27', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (995233, 114, '2020-01-02', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (995234, 114, '2020-01-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080601, 128, '2020-02-28', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (995235, 114, '2020-01-04', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080602, 128, '2020-02-29', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080603, 128, '2020-03-01', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080604, 128, '2020-03-02', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080605, 128, '2020-03-03', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080606, 128, '2020-03-04', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080607, 128, '2020-03-05', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080608, 128, '2020-03-06', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080609, 128, '2020-03-07', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080610, 128, '2020-03-08', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080611, 128, '2020-03-09', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080612, 128, '2020-03-10', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080613, 128, '2020-03-11', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (995236, 114, '2020-01-05', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (995237, 114, '2020-01-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080614, 128, '2020-03-12', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (995238, 114, '2020-01-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (995239, 114, '2020-01-08', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080615, 128, '2020-03-13', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (995240, 114, '2020-01-09', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (995241, 114, '2020-01-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080616, 128, '2020-03-14', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (995242, 114, '2020-01-11', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (995243, 114, '2020-01-12', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080617, 128, '2020-03-15', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (995244, 114, '2020-01-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (995245, 114, '2020-01-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (995246, 114, '2020-01-15', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (995277, 114, '2020-02-15', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080618, 128, '2020-03-16', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (995278, 114, '2020-02-16', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (995279, 114, '2020-02-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080619, 128, '2020-03-17', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (995280, 114, '2020-02-18', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (995281, 114, '2020-02-19', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080620, 128, '2020-03-18', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (995282, 114, '2020-02-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (995283, 114, '2020-02-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080621, 128, '2020-03-19', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (995284, 114, '2020-02-22', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (995285, 114, '2020-02-23', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080622, 128, '2020-03-20', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080623, 128, '2020-03-21', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080624, 128, '2020-03-22', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080625, 128, '2020-03-23', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080626, 128, '2020-03-24', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080627, 128, '2020-03-25', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080628, 128, '2020-03-26', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080629, 128, '2020-03-27', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080630, 128, '2020-03-28', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080631, 128, '2020-03-29', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080632, 128, '2020-03-30', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080633, 128, '2020-03-31', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080634, 128, '2020-04-01', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080635, 128, '2020-04-02', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080636, 128, '2020-04-03', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080637, 128, '2020-04-04', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080638, 128, '2020-04-05', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080639, 128, '2020-04-06', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080640, 128, '2020-04-07', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080641, 128, '2020-04-08', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080642, 128, '2020-04-09', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080643, 128, '2020-04-10', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080644, 128, '2020-04-11', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080645, 128, '2020-04-12', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080646, 128, '2020-04-13', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080647, 128, '2020-04-14', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080648, 128, '2020-04-15', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080649, 128, '2020-04-16', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080650, 128, '2020-04-17', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080651, 128, '2020-04-18', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080652, 128, '2020-04-19', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080653, 142, '2020-02-24', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080654, 142, '2020-02-25', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080655, 142, '2020-02-26', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080656, 142, '2020-02-27', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080657, 142, '2020-02-28', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080658, 142, '2020-02-29', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080659, 142, '2020-03-01', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080660, 142, '2020-03-02', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080661, 142, '2020-03-03', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080662, 142, '2020-03-04', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080663, 142, '2020-03-05', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080664, 142, '2020-03-06', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080665, 142, '2020-03-07', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080666, 142, '2020-03-08', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080667, 142, '2020-03-09', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080668, 142, '2020-03-10', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080669, 142, '2020-03-11', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080670, 142, '2020-03-12', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080671, 142, '2020-03-13', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080672, 142, '2020-03-14', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080673, 142, '2020-03-15', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080674, 142, '2020-03-16', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080675, 142, '2020-03-17', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080676, 142, '2020-03-18', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080677, 142, '2020-03-19', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080678, 142, '2020-03-20', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080679, 142, '2020-03-21', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080680, 142, '2020-03-22', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080681, 142, '2020-03-23', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080682, 142, '2020-03-24', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080683, 142, '2020-03-25', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080684, 142, '2020-03-26', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080685, 142, '2020-03-27', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080686, 142, '2020-03-28', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080687, 142, '2020-03-29', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080688, 142, '2020-03-30', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080689, 142, '2020-03-31', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080690, 142, '2020-04-01', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080691, 142, '2020-04-02', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080692, 142, '2020-04-03', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080693, 142, '2020-04-04', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080694, 142, '2020-04-05', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080695, 142, '2020-04-06', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080696, 142, '2020-04-07', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080697, 142, '2020-04-08', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080698, 142, '2020-04-09', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080699, 142, '2020-04-10', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080700, 142, '2020-04-11', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080701, 142, '2020-04-12', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080702, 142, '2020-04-13', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080703, 142, '2020-04-14', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080704, 142, '2020-04-15', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080705, 142, '2020-04-16', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080706, 142, '2020-04-17', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080707, 142, '2020-04-18', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080708, 142, '2020-04-19', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080709, 136, '2020-02-24', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080710, 136, '2020-02-25', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080711, 136, '2020-02-26', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080712, 136, '2020-02-27', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080713, 136, '2020-02-28', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080714, 136, '2020-02-29', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080715, 136, '2020-03-01', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080716, 136, '2020-03-02', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080717, 136, '2020-03-03', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080718, 136, '2020-03-04', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080719, 136, '2020-03-05', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080720, 136, '2020-03-06', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080721, 136, '2020-03-07', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080722, 136, '2020-03-08', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080723, 136, '2020-03-09', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080724, 136, '2020-03-10', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080725, 136, '2020-03-11', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080726, 136, '2020-03-12', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080727, 136, '2020-03-13', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080728, 136, '2020-03-14', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080729, 136, '2020-03-15', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080730, 136, '2020-03-16', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080731, 136, '2020-03-17', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080732, 136, '2020-03-18', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080733, 136, '2020-03-19', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080734, 136, '2020-03-20', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080735, 136, '2020-03-21', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080736, 136, '2020-03-22', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080737, 136, '2020-03-23', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080738, 136, '2020-03-24', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080739, 136, '2020-03-25', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080740, 136, '2020-03-26', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080741, 136, '2020-03-27', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080742, 136, '2020-03-28', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080743, 136, '2020-03-29', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080744, 136, '2020-03-30', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080745, 136, '2020-03-31', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080746, 136, '2020-04-01', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080747, 136, '2020-04-02', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080748, 136, '2020-04-03', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080749, 136, '2020-04-04', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080750, 136, '2020-04-05', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080751, 136, '2020-04-06', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080752, 136, '2020-04-07', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080753, 136, '2020-04-08', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080754, 136, '2020-04-09', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080755, 136, '2020-04-10', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080756, 136, '2020-04-11', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080757, 136, '2020-04-12', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080758, 136, '2020-04-13', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080759, 136, '2020-04-14', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080760, 136, '2020-04-15', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080761, 136, '2020-04-16', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080762, 136, '2020-04-17', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080763, 136, '2020-04-18', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080764, 136, '2020-04-19', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080765, 139, '2020-02-24', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080766, 139, '2020-02-25', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080767, 139, '2020-02-26', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080768, 139, '2020-02-27', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080769, 139, '2020-02-28', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080770, 139, '2020-02-29', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080771, 139, '2020-03-01', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080772, 139, '2020-03-02', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080773, 139, '2020-03-03', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080774, 139, '2020-03-04', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080775, 139, '2020-03-05', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080776, 139, '2020-03-06', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080777, 139, '2020-03-07', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080778, 139, '2020-03-08', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080779, 139, '2020-03-09', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080780, 139, '2020-03-10', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080781, 139, '2020-03-11', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080782, 139, '2020-03-12', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080783, 139, '2020-03-13', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080784, 139, '2020-03-14', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080785, 139, '2020-03-15', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080786, 139, '2020-03-16', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080787, 139, '2020-03-17', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080788, 139, '2020-03-18', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080789, 139, '2020-03-19', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080790, 139, '2020-03-20', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080791, 139, '2020-03-21', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080792, 139, '2020-03-22', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080793, 139, '2020-03-23', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080794, 139, '2020-03-24', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080795, 139, '2020-03-25', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080796, 139, '2020-03-26', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080797, 139, '2020-03-27', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080798, 139, '2020-03-28', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080799, 139, '2020-03-29', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080800, 139, '2020-03-30', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080801, 139, '2020-03-31', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080802, 139, '2020-04-01', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080803, 139, '2020-04-02', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080804, 139, '2020-04-03', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080805, 139, '2020-04-04', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080806, 139, '2020-04-05', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080807, 139, '2020-04-06', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080808, 139, '2020-04-07', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080809, 139, '2020-04-08', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080810, 139, '2020-04-09', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080811, 139, '2020-04-10', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080812, 139, '2020-04-11', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080813, 139, '2020-04-12', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080814, 139, '2020-04-13', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080815, 139, '2020-04-14', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080816, 139, '2020-04-15', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080817, 139, '2020-04-16', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080818, 139, '2020-04-17', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080819, 139, '2020-04-18', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080820, 139, '2020-04-19', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080821, 141, '2020-02-24', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080822, 141, '2020-02-25', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080823, 141, '2020-02-26', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080824, 141, '2020-02-27', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080825, 141, '2020-02-28', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080826, 141, '2020-02-29', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080827, 141, '2020-03-01', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080828, 141, '2020-03-02', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080829, 141, '2020-03-03', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080830, 141, '2020-03-04', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080831, 141, '2020-03-05', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080832, 141, '2020-03-06', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080833, 141, '2020-03-07', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080834, 141, '2020-03-08', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080835, 141, '2020-03-09', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080836, 141, '2020-03-10', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080837, 141, '2020-03-11', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080838, 141, '2020-03-12', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080839, 141, '2020-03-13', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080840, 141, '2020-03-14', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080841, 141, '2020-03-15', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080842, 141, '2020-03-16', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080843, 141, '2020-03-17', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080844, 141, '2020-03-18', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080845, 141, '2020-03-19', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080846, 141, '2020-03-20', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080847, 141, '2020-03-21', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080848, 141, '2020-03-22', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080849, 141, '2020-03-23', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080850, 141, '2020-03-24', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080851, 141, '2020-03-25', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080852, 141, '2020-03-26', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080853, 141, '2020-03-27', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080854, 141, '2020-03-28', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080855, 141, '2020-03-29', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080856, 141, '2020-03-30', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080857, 141, '2020-03-31', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080858, 141, '2020-04-01', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080859, 141, '2020-04-02', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080860, 141, '2020-04-03', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080861, 141, '2020-04-04', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080862, 141, '2020-04-05', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080863, 141, '2020-04-06', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080864, 141, '2020-04-07', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080865, 141, '2020-04-08', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080866, 141, '2020-04-09', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080867, 141, '2020-04-10', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080868, 141, '2020-04-11', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080869, 141, '2020-04-12', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080870, 141, '2020-04-13', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080871, 141, '2020-04-14', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080872, 141, '2020-04-15', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080873, 141, '2020-04-16', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080874, 141, '2020-04-17', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080875, 141, '2020-04-18', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080876, 141, '2020-04-19', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080877, 122, '2020-02-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080878, 122, '2020-02-25', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080879, 122, '2020-02-26', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080880, 122, '2020-02-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080881, 122, '2020-02-28', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080882, 122, '2020-02-29', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080883, 122, '2020-03-01', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080884, 122, '2020-03-02', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080885, 122, '2020-03-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080886, 122, '2020-03-04', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080887, 122, '2020-03-05', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080888, 122, '2020-03-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080889, 122, '2020-03-07', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080890, 122, '2020-03-08', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080891, 122, '2020-03-09', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080892, 122, '2020-03-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080893, 122, '2020-03-11', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080894, 122, '2020-03-12', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080895, 122, '2020-03-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080896, 122, '2020-03-14', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080897, 122, '2020-03-15', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080898, 122, '2020-03-16', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080899, 122, '2020-03-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080900, 122, '2020-03-18', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080901, 122, '2020-03-19', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080902, 122, '2020-03-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080903, 122, '2020-03-21', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080904, 122, '2020-03-22', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080905, 122, '2020-03-23', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080906, 122, '2020-03-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080907, 122, '2020-03-25', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080908, 122, '2020-03-26', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080909, 122, '2020-03-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080910, 122, '2020-03-28', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080911, 122, '2020-03-29', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080912, 122, '2020-03-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080913, 122, '2020-03-31', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080914, 122, '2020-04-01', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080915, 122, '2020-04-02', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080916, 122, '2020-04-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080917, 122, '2020-04-04', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080918, 122, '2020-04-05', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080919, 122, '2020-04-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080920, 122, '2020-04-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080921, 122, '2020-04-08', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080922, 122, '2020-04-09', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080923, 122, '2020-04-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080924, 122, '2020-04-11', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080925, 122, '2020-04-12', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080926, 122, '2020-04-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080927, 122, '2020-04-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080928, 122, '2020-04-15', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080929, 122, '2020-04-16', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080930, 122, '2020-04-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080931, 122, '2020-04-18', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080932, 122, '2020-04-19', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080933, 106, '2020-02-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '02:05:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080934, 106, '2020-02-25', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '02:05:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080935, 106, '2020-02-26', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '02:05:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080936, 106, '2020-02-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '02:05:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080937, 106, '2020-02-28', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '02:05:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080938, 106, '2020-02-29', NULL, NULL, NULL, NULL, NULL, '00:00:00', '02:05:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080939, 106, '2020-03-01', NULL, NULL, NULL, NULL, NULL, '00:00:00', '02:05:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080940, 106, '2020-03-02', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '02:05:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080941, 106, '2020-03-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '02:05:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080942, 106, '2020-03-04', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '02:05:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080943, 106, '2020-03-05', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '02:05:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080944, 106, '2020-03-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '02:05:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080945, 106, '2020-03-07', NULL, NULL, NULL, NULL, NULL, '00:00:00', '02:05:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080946, 106, '2020-03-08', NULL, NULL, NULL, NULL, NULL, '00:00:00', '02:05:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080947, 106, '2020-03-09', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '02:05:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080948, 106, '2020-03-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '02:05:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080949, 106, '2020-03-11', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '02:05:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080950, 106, '2020-03-12', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '02:05:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080951, 106, '2020-03-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '02:05:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080952, 106, '2020-03-14', NULL, NULL, NULL, NULL, NULL, '00:00:00', '02:05:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080953, 106, '2020-03-15', NULL, NULL, NULL, NULL, NULL, '00:00:00', '02:05:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080954, 106, '2020-03-16', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '02:05:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080955, 106, '2020-03-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '02:05:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080956, 106, '2020-03-18', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '02:05:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080957, 106, '2020-03-19', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '02:05:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080958, 106, '2020-03-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '02:05:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080959, 106, '2020-03-21', NULL, NULL, NULL, NULL, NULL, '00:00:00', '02:05:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080960, 106, '2020-03-22', NULL, NULL, NULL, NULL, NULL, '00:00:00', '02:05:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080961, 106, '2020-03-23', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '02:05:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080962, 106, '2020-03-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '02:05:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080963, 106, '2020-03-25', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '02:05:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080964, 106, '2020-03-26', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '02:05:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080965, 106, '2020-03-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '02:05:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080966, 106, '2020-03-28', NULL, NULL, NULL, NULL, NULL, '00:00:00', '02:05:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080967, 106, '2020-03-29', NULL, NULL, NULL, NULL, NULL, '00:00:00', '02:05:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080968, 106, '2020-03-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '02:05:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080969, 106, '2020-03-31', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '02:05:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080970, 106, '2020-04-01', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '02:05:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080971, 106, '2020-04-02', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '02:05:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080972, 106, '2020-04-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '02:05:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080973, 106, '2020-04-04', NULL, NULL, NULL, NULL, NULL, '00:00:00', '02:05:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080974, 106, '2020-04-05', NULL, NULL, NULL, NULL, NULL, '00:00:00', '02:05:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080975, 106, '2020-04-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '02:05:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080976, 106, '2020-04-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '02:05:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080977, 106, '2020-04-08', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '02:05:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080978, 106, '2020-04-09', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '02:05:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080979, 106, '2020-04-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '02:05:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080980, 106, '2020-04-11', NULL, NULL, NULL, NULL, NULL, '00:00:00', '02:05:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080981, 106, '2020-04-12', NULL, NULL, NULL, NULL, NULL, '00:00:00', '02:05:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080982, 106, '2020-04-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '02:05:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080983, 106, '2020-04-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '02:05:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080984, 106, '2020-04-15', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '02:05:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080985, 106, '2020-04-16', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '02:05:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080986, 106, '2020-04-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '02:05:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080987, 106, '2020-04-18', NULL, NULL, NULL, NULL, NULL, '00:00:00', '02:05:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080988, 106, '2020-04-19', NULL, NULL, NULL, NULL, NULL, '00:00:00', '02:05:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080989, 110, '2020-02-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080990, 110, '2020-02-25', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080991, 110, '2020-02-26', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080992, 110, '2020-02-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080993, 110, '2020-02-28', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080994, 110, '2020-02-29', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080995, 110, '2020-03-01', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080996, 110, '2020-03-02', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080997, 110, '2020-03-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080998, 110, '2020-03-04', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080999, 110, '2020-03-05', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081000, 110, '2020-03-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081001, 110, '2020-03-07', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081002, 110, '2020-03-08', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081003, 110, '2020-03-09', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081004, 110, '2020-03-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081005, 110, '2020-03-11', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081006, 110, '2020-03-12', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081007, 110, '2020-03-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081008, 110, '2020-03-14', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081009, 110, '2020-03-15', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081010, 110, '2020-03-16', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081011, 110, '2020-03-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081012, 110, '2020-03-18', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081013, 110, '2020-03-19', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081014, 110, '2020-03-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081015, 110, '2020-03-21', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081016, 110, '2020-03-22', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081017, 110, '2020-03-23', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081018, 110, '2020-03-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081019, 110, '2020-03-25', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081020, 110, '2020-03-26', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081021, 110, '2020-03-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081022, 110, '2020-03-28', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081023, 110, '2020-03-29', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081024, 110, '2020-03-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081025, 110, '2020-03-31', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081026, 110, '2020-04-01', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081027, 110, '2020-04-02', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081028, 110, '2020-04-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081029, 110, '2020-04-04', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081030, 110, '2020-04-05', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081031, 110, '2020-04-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081032, 110, '2020-04-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081033, 110, '2020-04-08', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081034, 110, '2020-04-09', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081035, 110, '2020-04-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081036, 110, '2020-04-11', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081037, 110, '2020-04-12', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081038, 110, '2020-04-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081039, 110, '2020-04-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081040, 110, '2020-04-15', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081041, 110, '2020-04-16', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081042, 110, '2020-04-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081043, 110, '2020-04-18', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081044, 110, '2020-04-19', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081045, 145, '2020-02-24', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081046, 145, '2020-02-25', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081047, 145, '2020-02-26', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081048, 145, '2020-02-27', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081049, 145, '2020-02-28', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081050, 145, '2020-02-29', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081051, 145, '2020-03-01', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081052, 145, '2020-03-02', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081053, 145, '2020-03-03', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081054, 145, '2020-03-04', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081055, 145, '2020-03-05', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081056, 145, '2020-03-06', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081057, 145, '2020-03-07', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081058, 145, '2020-03-08', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081059, 145, '2020-03-09', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081060, 145, '2020-03-10', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081061, 145, '2020-03-11', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081062, 145, '2020-03-12', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081063, 145, '2020-03-13', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081064, 145, '2020-03-14', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081065, 145, '2020-03-15', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081066, 145, '2020-03-16', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081067, 145, '2020-03-17', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081068, 145, '2020-03-18', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081069, 145, '2020-03-19', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081070, 145, '2020-03-20', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081071, 145, '2020-03-21', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081072, 145, '2020-03-22', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081073, 145, '2020-03-23', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081074, 145, '2020-03-24', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081075, 145, '2020-03-25', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081076, 145, '2020-03-26', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081077, 145, '2020-03-27', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081078, 145, '2020-03-28', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081079, 145, '2020-03-29', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081080, 145, '2020-03-30', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081081, 145, '2020-03-31', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081082, 145, '2020-04-01', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081083, 145, '2020-04-02', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081084, 145, '2020-04-03', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081085, 145, '2020-04-04', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081086, 145, '2020-04-05', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081087, 145, '2020-04-06', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081088, 145, '2020-04-07', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081089, 145, '2020-04-08', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081090, 145, '2020-04-09', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081091, 145, '2020-04-10', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081092, 145, '2020-04-11', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081093, 145, '2020-04-12', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081094, 145, '2020-04-13', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081095, 145, '2020-04-14', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081096, 145, '2020-04-15', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081097, 145, '2020-04-16', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081098, 145, '2020-04-17', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081099, 145, '2020-04-18', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081100, 145, '2020-04-19', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081101, 148, '2020-02-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081102, 148, '2020-02-25', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081103, 148, '2020-02-26', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081104, 148, '2020-02-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081105, 148, '2020-02-28', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081106, 148, '2020-02-29', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081107, 148, '2020-03-01', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081108, 148, '2020-03-02', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081109, 148, '2020-03-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081110, 148, '2020-03-04', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081111, 148, '2020-03-05', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081112, 148, '2020-03-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081113, 148, '2020-03-07', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081114, 148, '2020-03-08', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081115, 148, '2020-03-09', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081116, 148, '2020-03-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081117, 148, '2020-03-11', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081118, 148, '2020-03-12', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081119, 148, '2020-03-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081120, 148, '2020-03-14', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081121, 148, '2020-03-15', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081122, 148, '2020-03-16', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081123, 148, '2020-03-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081124, 148, '2020-03-18', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081125, 148, '2020-03-19', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081126, 148, '2020-03-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081127, 148, '2020-03-21', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081128, 148, '2020-03-22', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081129, 148, '2020-03-23', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081130, 148, '2020-03-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081131, 148, '2020-03-25', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081132, 148, '2020-03-26', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081133, 148, '2020-03-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081134, 148, '2020-03-28', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081135, 148, '2020-03-29', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081136, 148, '2020-03-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081137, 148, '2020-03-31', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081138, 148, '2020-04-01', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081139, 148, '2020-04-02', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081140, 148, '2020-04-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081141, 148, '2020-04-04', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081142, 148, '2020-04-05', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081143, 148, '2020-04-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081144, 148, '2020-04-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081145, 148, '2020-04-08', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081146, 148, '2020-04-09', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081147, 148, '2020-04-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081148, 148, '2020-04-11', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081149, 148, '2020-04-12', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081150, 148, '2020-04-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081151, 148, '2020-04-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081152, 148, '2020-04-15', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081153, 148, '2020-04-16', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081154, 148, '2020-04-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081155, 148, '2020-04-18', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081156, 148, '2020-04-19', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081157, 130, '2020-02-24', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081158, 130, '2020-02-25', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081159, 130, '2020-02-26', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081160, 130, '2020-02-27', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081161, 130, '2020-02-28', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081162, 130, '2020-02-29', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081163, 130, '2020-03-01', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081164, 130, '2020-03-02', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081165, 130, '2020-03-03', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081166, 130, '2020-03-04', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081167, 130, '2020-03-05', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081168, 130, '2020-03-06', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081169, 130, '2020-03-07', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081170, 130, '2020-03-08', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081171, 130, '2020-03-09', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081172, 130, '2020-03-10', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081173, 130, '2020-03-11', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081174, 130, '2020-03-12', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081175, 130, '2020-03-13', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081176, 130, '2020-03-14', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081177, 130, '2020-03-15', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081178, 130, '2020-03-16', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081179, 130, '2020-03-17', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081180, 130, '2020-03-18', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081181, 130, '2020-03-19', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081182, 130, '2020-03-20', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081183, 130, '2020-03-21', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081184, 130, '2020-03-22', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081185, 130, '2020-03-23', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081186, 130, '2020-03-24', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081187, 130, '2020-03-25', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081188, 130, '2020-03-26', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081189, 130, '2020-03-27', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081190, 130, '2020-03-28', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081191, 130, '2020-03-29', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081192, 130, '2020-03-30', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081193, 130, '2020-03-31', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081194, 130, '2020-04-01', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081195, 130, '2020-04-02', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081196, 130, '2020-04-03', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081197, 130, '2020-04-04', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081198, 130, '2020-04-05', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081199, 130, '2020-04-06', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081200, 130, '2020-04-07', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081201, 130, '2020-04-08', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081202, 130, '2020-04-09', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081203, 130, '2020-04-10', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081204, 130, '2020-04-11', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081205, 130, '2020-04-12', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081206, 130, '2020-04-13', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081207, 130, '2020-04-14', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081208, 130, '2020-04-15', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081209, 130, '2020-04-16', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081210, 130, '2020-04-17', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081211, 130, '2020-04-18', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081212, 130, '2020-04-19', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081213, 129, '2020-02-24', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081214, 129, '2020-02-25', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081215, 129, '2020-02-26', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081216, 129, '2020-02-27', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081217, 129, '2020-02-28', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081218, 129, '2020-02-29', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081219, 129, '2020-03-01', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081220, 129, '2020-03-02', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081221, 129, '2020-03-03', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081222, 129, '2020-03-04', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081223, 129, '2020-03-05', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081224, 129, '2020-03-06', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081225, 129, '2020-03-07', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081226, 129, '2020-03-08', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081227, 129, '2020-03-09', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081228, 129, '2020-03-10', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081229, 129, '2020-03-11', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081230, 129, '2020-03-12', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081231, 129, '2020-03-13', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081232, 129, '2020-03-14', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081233, 129, '2020-03-15', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081234, 129, '2020-03-16', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081235, 129, '2020-03-17', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081236, 129, '2020-03-18', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081237, 129, '2020-03-19', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081238, 129, '2020-03-20', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081239, 129, '2020-03-21', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081240, 129, '2020-03-22', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081241, 129, '2020-03-23', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081242, 129, '2020-03-24', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081243, 129, '2020-03-25', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081244, 129, '2020-03-26', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081245, 129, '2020-03-27', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081246, 129, '2020-03-28', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081247, 129, '2020-03-29', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081248, 129, '2020-03-30', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081249, 129, '2020-03-31', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081250, 129, '2020-04-01', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081251, 129, '2020-04-02', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081252, 129, '2020-04-03', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081253, 129, '2020-04-04', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081254, 129, '2020-04-05', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081255, 129, '2020-04-06', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081256, 129, '2020-04-07', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081257, 129, '2020-04-08', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081258, 129, '2020-04-09', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081259, 129, '2020-04-10', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081260, 129, '2020-04-11', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081261, 129, '2020-04-12', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081262, 129, '2020-04-13', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081263, 129, '2020-04-14', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081264, 129, '2020-04-15', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081265, 129, '2020-04-16', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081266, 129, '2020-04-17', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081267, 129, '2020-04-18', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081268, 129, '2020-04-19', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081269, 143, '2020-02-24', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081270, 143, '2020-02-25', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081271, 143, '2020-02-26', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081272, 143, '2020-02-27', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081273, 143, '2020-02-28', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081274, 143, '2020-02-29', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081275, 143, '2020-03-01', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081276, 143, '2020-03-02', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081277, 143, '2020-03-03', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081278, 143, '2020-03-04', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081279, 143, '2020-03-05', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081280, 143, '2020-03-06', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081281, 143, '2020-03-07', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081282, 143, '2020-03-08', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081283, 143, '2020-03-09', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081284, 143, '2020-03-10', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081285, 143, '2020-03-11', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081286, 143, '2020-03-12', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081287, 143, '2020-03-13', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081288, 143, '2020-03-14', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081289, 143, '2020-03-15', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081290, 143, '2020-03-16', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081291, 143, '2020-03-17', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081292, 143, '2020-03-18', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081293, 143, '2020-03-19', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081294, 143, '2020-03-20', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081295, 143, '2020-03-21', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081296, 143, '2020-03-22', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081297, 143, '2020-03-23', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081298, 143, '2020-03-24', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081299, 143, '2020-03-25', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081300, 143, '2020-03-26', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081301, 143, '2020-03-27', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081302, 143, '2020-03-28', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081303, 143, '2020-03-29', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081304, 143, '2020-03-30', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081305, 143, '2020-03-31', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081306, 143, '2020-04-01', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081307, 143, '2020-04-02', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081308, 143, '2020-04-03', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081309, 143, '2020-04-04', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081310, 143, '2020-04-05', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081311, 143, '2020-04-06', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081312, 143, '2020-04-07', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081313, 143, '2020-04-08', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081314, 143, '2020-04-09', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081315, 143, '2020-04-10', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081316, 143, '2020-04-11', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (997384, 112, '2020-01-01', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (997385, 112, '2020-01-02', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081317, 143, '2020-04-12', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (997386, 112, '2020-01-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (997387, 112, '2020-01-04', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081318, 143, '2020-04-13', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (997388, 112, '2020-01-05', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (997389, 112, '2020-01-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081319, 143, '2020-04-14', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (997390, 112, '2020-01-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (997391, 112, '2020-01-08', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081320, 143, '2020-04-15', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (997392, 112, '2020-01-09', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (997393, 112, '2020-01-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081321, 143, '2020-04-16', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (997394, 112, '2020-01-11', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (997395, 112, '2020-01-12', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081322, 143, '2020-04-17', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (997396, 112, '2020-01-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (997397, 112, '2020-01-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081323, 143, '2020-04-18', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (997398, 112, '2020-01-15', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (997399, 112, '2020-01-16', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081324, 143, '2020-04-19', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (997400, 112, '2020-01-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (997401, 112, '2020-01-18', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (997402, 112, '2020-01-19', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (997403, 112, '2020-01-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (997404, 112, '2020-01-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (997405, 112, '2020-01-22', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (997406, 112, '2020-01-23', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (997407, 112, '2020-01-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (997408, 112, '2020-01-25', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (997409, 112, '2020-01-26', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (997410, 112, '2020-01-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (997411, 112, '2020-01-28', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (997412, 112, '2020-01-29', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (997413, 112, '2020-01-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (997414, 112, '2020-01-31', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (997415, 112, '2020-02-01', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (997416, 112, '2020-02-02', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (997417, 112, '2020-02-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (997418, 112, '2020-02-04', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (997419, 112, '2020-02-05', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (997420, 112, '2020-02-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (997421, 112, '2020-02-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (997422, 112, '2020-02-08', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (997423, 112, '2020-02-09', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (997424, 112, '2020-02-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (997425, 112, '2020-02-11', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (997426, 112, '2020-02-12', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (999541, 108, '2020-01-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (999542, 108, '2020-01-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (999543, 108, '2020-01-08', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (999544, 108, '2020-01-09', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (999545, 108, '2020-01-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (999546, 108, '2020-01-11', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (999547, 108, '2020-01-12', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (999548, 108, '2020-01-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (999549, 108, '2020-01-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (999550, 108, '2020-01-15', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (999551, 108, '2020-01-16', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (999552, 108, '2020-01-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (999553, 108, '2020-01-18', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (999554, 108, '2020-01-19', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (999555, 108, '2020-01-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (999556, 108, '2020-01-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (999557, 108, '2020-01-22', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (999558, 108, '2020-01-23', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (999559, 108, '2020-01-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (999576, 108, '2020-02-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (999577, 108, '2020-02-11', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (999578, 108, '2020-02-12', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (999579, 108, '2020-02-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (999580, 108, '2020-02-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (999582, 108, '2020-02-16', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (999583, 108, '2020-02-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (999584, 108, '2020-02-18', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (999585, 108, '2020-02-19', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (999586, 108, '2020-02-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (999587, 108, '2020-02-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (999588, 108, '2020-02-22', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (999589, 108, '2020-02-23', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1001742, 135, '2019-12-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1001743, 135, '2019-12-31', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1001688, 135, '2020-01-01', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1001689, 135, '2020-01-02', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1001690, 135, '2020-01-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1001691, 135, '2020-01-04', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1001692, 135, '2020-01-05', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1001693, 135, '2020-01-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1001694, 135, '2020-01-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1001695, 135, '2020-01-08', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1001696, 135, '2020-01-09', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1001697, 135, '2020-01-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1001698, 135, '2020-01-11', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1001699, 135, '2020-01-12', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1001700, 135, '2020-01-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1001701, 135, '2020-01-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1001702, 135, '2020-01-15', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1001703, 135, '2020-01-16', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1001704, 135, '2020-01-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1001705, 135, '2020-01-18', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1001706, 135, '2020-01-19', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1001707, 135, '2020-01-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1001708, 135, '2020-01-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1001709, 135, '2020-01-22', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1001710, 135, '2020-01-23', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1001711, 135, '2020-01-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1001712, 135, '2020-01-25', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1001713, 135, '2020-01-26', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1001714, 135, '2020-01-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1001715, 135, '2020-01-28', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1001716, 135, '2020-01-29', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1001717, 135, '2020-01-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1001718, 135, '2020-01-31', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1001719, 135, '2020-02-01', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1001720, 135, '2020-02-02', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1001721, 135, '2020-02-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1001722, 135, '2020-02-04', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1001723, 135, '2020-02-05', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1003840, 127, '2020-01-01', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1003841, 127, '2020-01-02', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1003842, 127, '2020-01-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1003843, 127, '2020-01-04', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1003844, 127, '2020-01-05', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1003845, 127, '2020-01-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1003846, 127, '2020-01-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1003847, 127, '2020-01-08', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1003848, 127, '2020-01-09', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1003849, 127, '2020-01-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1003850, 127, '2020-01-11', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1003851, 127, '2020-01-12', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1003852, 127, '2020-01-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1003853, 127, '2020-01-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1003854, 127, '2020-01-15', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1003855, 127, '2020-01-16', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1003856, 127, '2020-01-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1003857, 127, '2020-01-18', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1003858, 127, '2020-01-19', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1003859, 127, '2020-01-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1003874, 127, '2020-02-04', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1003875, 127, '2020-02-05', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1003876, 127, '2020-02-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1003877, 127, '2020-02-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1003878, 127, '2020-02-08', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1003879, 127, '2020-02-09', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1003880, 127, '2020-02-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1003881, 127, '2020-02-11', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1003882, 127, '2020-02-12', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1003883, 127, '2020-02-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1003884, 127, '2020-02-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1003885, 127, '2020-02-15', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1003886, 127, '2020-02-16', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1003887, 127, '2020-02-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1003888, 127, '2020-02-18', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1003889, 127, '2020-02-19', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1003890, 127, '2020-02-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1003891, 127, '2020-02-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1003892, 127, '2020-02-22', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1003893, 127, '2020-02-23', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1005992, 149, '2020-01-01', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1005993, 149, '2020-01-02', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1005994, 149, '2020-01-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1005995, 149, '2020-01-04', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1005996, 149, '2020-01-05', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1005997, 149, '2020-01-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1005998, 149, '2020-01-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1005999, 149, '2020-01-08', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1006000, 149, '2020-01-09', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1006001, 149, '2020-01-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1006002, 149, '2020-01-11', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1006003, 149, '2020-01-12', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1006004, 149, '2020-01-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1006005, 149, '2020-01-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1006006, 149, '2020-01-15', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1006007, 149, '2020-01-16', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1006008, 149, '2020-01-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1006009, 149, '2020-01-18', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1006010, 149, '2020-01-19', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1006011, 149, '2020-01-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1006012, 149, '2020-01-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1006013, 149, '2020-01-22', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1006014, 149, '2020-01-23', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1006015, 149, '2020-01-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1006016, 149, '2020-01-25', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1006017, 149, '2020-01-26', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1006018, 149, '2020-01-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1008198, 103, '2019-12-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1008199, 103, '2019-12-31', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1008144, 103, '2020-01-01', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1008145, 103, '2020-01-02', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1008146, 103, '2020-01-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1008147, 103, '2020-01-04', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1008148, 103, '2020-01-05', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1008149, 103, '2020-01-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1008150, 103, '2020-01-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1008151, 103, '2020-01-08', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1008152, 103, '2020-01-09', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1008153, 103, '2020-01-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1008154, 103, '2020-01-11', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1008155, 103, '2020-01-12', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1008156, 103, '2020-01-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1008157, 103, '2020-01-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1008158, 103, '2020-01-15', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1008159, 103, '2020-01-16', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1008160, 103, '2020-01-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1008161, 103, '2020-01-18', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1008162, 103, '2020-01-19', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1008163, 103, '2020-01-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1008164, 103, '2020-01-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1008175, 103, '2020-02-01', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1008176, 103, '2020-02-02', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1008177, 103, '2020-02-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1008178, 103, '2020-02-04', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1008179, 103, '2020-02-05', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1008180, 103, '2020-02-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1008181, 103, '2020-02-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1008182, 103, '2020-02-08', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1008183, 103, '2020-02-09', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1008184, 103, '2020-02-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1008185, 103, '2020-02-11', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1008186, 103, '2020-02-12', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1008187, 103, '2020-02-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1008188, 103, '2020-02-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1008189, 103, '2020-02-15', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1008190, 103, '2020-02-16', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1008191, 103, '2020-02-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1008192, 103, '2020-02-18', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1008193, 103, '2020-02-19', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1008194, 103, '2020-02-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1008195, 103, '2020-02-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1008196, 103, '2020-02-22', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1008197, 103, '2020-02-23', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1010296, 121, '2020-01-01', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1010297, 121, '2020-01-02', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1010298, 121, '2020-01-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1010299, 121, '2020-01-04', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1010300, 121, '2020-01-05', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1010301, 121, '2020-01-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1010302, 121, '2020-01-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1010303, 121, '2020-01-08', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1010304, 121, '2020-01-09', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1010305, 121, '2020-01-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1010306, 121, '2020-01-11', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1010307, 121, '2020-01-12', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1010308, 121, '2020-01-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1010309, 121, '2020-01-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1010310, 121, '2020-01-15', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1010311, 121, '2020-01-16', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1012502, 125, '2019-12-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1012503, 125, '2019-12-31', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1012448, 125, '2020-01-01', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1012449, 125, '2020-01-02', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1012450, 125, '2020-01-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1012451, 125, '2020-01-04', NULL, NULL, NULL, NULL, NULL, '00:00:00', '03:20:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1012452, 125, '2020-01-05', NULL, NULL, NULL, NULL, NULL, '00:00:00', '03:20:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1012453, 125, '2020-01-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1012454, 125, '2020-01-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1012455, 125, '2020-01-08', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1012456, 125, '2020-01-09', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1012457, 125, '2020-01-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1012458, 125, '2020-01-11', NULL, NULL, NULL, NULL, NULL, '00:00:00', '03:20:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1012459, 125, '2020-01-12', NULL, NULL, NULL, NULL, NULL, '00:00:00', '03:20:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1012460, 125, '2020-01-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1012461, 125, '2020-01-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1012462, 125, '2020-01-15', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1012463, 125, '2020-01-16', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1012464, 125, '2020-01-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1012465, 125, '2020-01-18', NULL, NULL, NULL, NULL, NULL, '00:00:00', '03:20:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1012466, 125, '2020-01-19', NULL, NULL, NULL, NULL, NULL, '00:00:00', '03:20:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1012467, 125, '2020-01-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1012468, 125, '2020-01-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1012479, 125, '2020-02-01', NULL, NULL, NULL, NULL, NULL, '00:00:00', '03:20:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1012480, 125, '2020-02-02', NULL, NULL, NULL, NULL, NULL, '00:00:00', '03:20:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1012481, 125, '2020-02-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1012482, 125, '2020-02-04', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1012483, 125, '2020-02-05', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1012484, 125, '2020-02-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1012485, 125, '2020-02-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1012486, 125, '2020-02-08', NULL, NULL, NULL, NULL, NULL, '00:00:00', '03:20:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1012487, 125, '2020-02-09', NULL, NULL, NULL, NULL, NULL, '00:00:00', '03:20:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1012488, 125, '2020-02-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1012489, 125, '2020-02-11', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1012490, 125, '2020-02-12', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1012491, 125, '2020-02-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1012492, 125, '2020-02-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1012493, 125, '2020-02-15', NULL, NULL, NULL, NULL, NULL, '00:00:00', '03:20:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1012494, 125, '2020-02-16', NULL, NULL, NULL, NULL, NULL, '00:00:00', '03:20:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1012495, 125, '2020-02-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1012496, 125, '2020-02-18', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1012497, 125, '2020-02-19', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1012498, 125, '2020-02-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1012499, 125, '2020-02-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1012500, 125, '2020-02-22', NULL, NULL, NULL, NULL, NULL, '00:00:00', '03:20:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1012501, 125, '2020-02-23', NULL, NULL, NULL, NULL, NULL, '00:00:00', '03:20:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1014600, 119, '2020-01-01', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1014601, 119, '2020-01-02', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1014602, 119, '2020-01-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1014603, 119, '2020-01-04', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1014604, 119, '2020-01-05', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1014605, 119, '2020-01-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1014606, 119, '2020-01-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1014607, 119, '2020-01-08', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1014608, 119, '2020-01-09', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1014609, 119, '2020-01-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1014610, 119, '2020-01-11', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1014611, 119, '2020-01-12', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1016806, 113, '2019-12-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1016807, 113, '2019-12-31', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1016752, 113, '2020-01-01', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1016753, 113, '2020-01-02', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1016754, 113, '2020-01-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1016755, 113, '2020-01-04', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1016756, 113, '2020-01-05', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1016757, 113, '2020-01-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1016758, 113, '2020-01-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1016759, 113, '2020-01-08', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1016760, 113, '2020-01-09', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1016761, 113, '2020-01-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1016762, 113, '2020-01-11', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1016763, 113, '2020-01-12', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1016764, 113, '2020-01-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1016765, 113, '2020-01-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1016766, 113, '2020-01-15', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1016767, 113, '2020-01-16', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1016768, 113, '2020-01-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1016769, 113, '2020-01-18', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1016770, 113, '2020-01-19', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1016771, 113, '2020-01-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1016772, 113, '2020-01-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1016783, 113, '2020-02-01', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1016784, 113, '2020-02-02', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1016785, 113, '2020-02-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1016786, 113, '2020-02-04', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1016787, 113, '2020-02-05', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1016788, 113, '2020-02-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1016789, 113, '2020-02-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1016790, 113, '2020-02-08', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1016791, 113, '2020-02-09', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1016792, 113, '2020-02-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1016793, 113, '2020-02-11', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1016794, 113, '2020-02-12', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1016795, 113, '2020-02-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1016796, 113, '2020-02-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1016797, 113, '2020-02-15', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1016798, 113, '2020-02-16', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1016799, 113, '2020-02-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1016800, 113, '2020-02-18', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1016801, 113, '2020-02-19', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1016802, 113, '2020-02-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1016803, 113, '2020-02-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1016804, 113, '2020-02-22', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1016805, 113, '2020-02-23', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1018904, 147, '2020-01-01', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1018905, 147, '2020-01-02', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1018906, 147, '2020-01-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1018907, 147, '2020-01-04', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1018908, 147, '2020-01-05', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1018909, 147, '2020-01-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1018910, 147, '2020-01-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1018911, 147, '2020-01-08', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1018912, 147, '2020-01-09', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1018913, 147, '2020-01-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1018914, 147, '2020-01-11', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1018915, 147, '2020-01-12', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1018916, 147, '2020-01-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1018955, 147, '2020-02-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1018956, 147, '2020-02-22', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1018957, 147, '2020-02-23', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1021110, 131, '2019-12-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1021111, 131, '2019-12-31', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1021056, 131, '2020-01-01', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1021057, 131, '2020-01-02', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1021058, 131, '2020-01-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1021059, 131, '2020-01-04', NULL, NULL, NULL, NULL, NULL, '00:00:00', '03:20:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1021060, 131, '2020-01-05', NULL, NULL, NULL, NULL, NULL, '00:00:00', '03:20:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1021061, 131, '2020-01-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1021062, 131, '2020-01-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1021063, 131, '2020-01-08', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1021064, 131, '2020-01-09', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1021065, 131, '2020-01-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1021066, 131, '2020-01-11', NULL, NULL, NULL, NULL, NULL, '00:00:00', '03:20:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1021067, 131, '2020-01-12', NULL, NULL, NULL, NULL, NULL, '00:00:00', '03:20:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1021068, 131, '2020-01-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1021069, 131, '2020-01-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1021070, 131, '2020-01-15', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1021071, 131, '2020-01-16', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1021072, 131, '2020-01-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1021073, 131, '2020-01-18', NULL, NULL, NULL, NULL, NULL, '00:00:00', '03:20:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1021074, 131, '2020-01-19', NULL, NULL, NULL, NULL, NULL, '00:00:00', '03:20:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1021075, 131, '2020-01-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1021076, 131, '2020-01-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1021077, 131, '2020-01-22', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1021084, 131, '2020-01-29', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1021085, 131, '2020-01-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1021086, 131, '2020-01-31', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1021087, 131, '2020-02-01', NULL, NULL, NULL, NULL, NULL, '00:00:00', '03:20:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1021088, 131, '2020-02-02', NULL, NULL, NULL, NULL, NULL, '00:00:00', '03:20:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1021089, 131, '2020-02-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1021090, 131, '2020-02-04', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1021091, 131, '2020-02-05', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1021092, 131, '2020-02-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1021093, 131, '2020-02-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1021094, 131, '2020-02-08', NULL, NULL, NULL, NULL, NULL, '00:00:00', '03:20:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1021095, 131, '2020-02-09', NULL, NULL, NULL, NULL, NULL, '00:00:00', '03:20:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1021096, 131, '2020-02-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1021097, 131, '2020-02-11', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1021098, 131, '2020-02-12', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1021099, 131, '2020-02-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1021100, 131, '2020-02-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1021101, 131, '2020-02-15', NULL, NULL, NULL, NULL, NULL, '00:00:00', '03:20:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1021102, 131, '2020-02-16', NULL, NULL, NULL, NULL, NULL, '00:00:00', '03:20:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1021103, 131, '2020-02-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1021104, 131, '2020-02-18', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1021105, 131, '2020-02-19', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1021106, 131, '2020-02-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1023262, 104, '2019-12-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '05:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1023263, 104, '2019-12-31', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '05:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1023208, 104, '2020-01-01', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '05:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1023209, 104, '2020-01-02', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '05:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1023210, 104, '2020-01-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '05:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1023211, 104, '2020-01-04', NULL, NULL, NULL, NULL, NULL, '00:00:00', '05:00:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1023212, 104, '2020-01-05', NULL, NULL, NULL, NULL, NULL, '00:00:00', '05:00:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1023213, 104, '2020-01-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '05:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1023214, 104, '2020-01-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '05:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1023215, 104, '2020-01-08', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '05:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1023216, 104, '2020-01-09', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '05:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1023217, 104, '2020-01-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '05:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1023218, 104, '2020-01-11', NULL, NULL, NULL, NULL, NULL, '00:00:00', '05:00:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1023219, 104, '2020-01-12', NULL, NULL, NULL, NULL, NULL, '00:00:00', '05:00:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1023220, 104, '2020-01-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '05:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1023221, 104, '2020-01-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '05:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1023222, 104, '2020-01-15', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '05:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1023253, 104, '2020-02-15', NULL, NULL, NULL, NULL, NULL, '00:00:00', '05:00:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1023254, 104, '2020-02-16', NULL, NULL, NULL, NULL, NULL, '00:00:00', '05:00:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1023255, 104, '2020-02-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '05:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1023256, 104, '2020-02-18', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '05:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1023257, 104, '2020-02-19', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '05:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1023258, 104, '2020-02-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '05:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1023259, 104, '2020-02-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '05:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1023260, 104, '2020-02-22', NULL, NULL, NULL, NULL, NULL, '00:00:00', '05:00:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1023261, 104, '2020-02-23', NULL, NULL, NULL, NULL, NULL, '00:00:00', '05:00:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1025391, 151, '2020-02-01', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1025392, 151, '2020-02-02', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1025393, 151, '2020-02-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1025394, 151, '2020-02-04', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1025395, 151, '2020-02-05', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1025396, 151, '2020-02-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1025397, 151, '2020-02-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1025398, 151, '2020-02-08', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1025399, 151, '2020-02-09', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1025400, 151, '2020-02-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1025401, 151, '2020-02-11', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1025402, 151, '2020-02-12', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1025403, 151, '2020-02-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1025404, 151, '2020-02-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1025405, 151, '2020-02-15', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1025406, 151, '2020-02-16', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1025407, 151, '2020-02-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1025408, 151, '2020-02-18', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1025409, 151, '2020-02-19', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1025410, 151, '2020-02-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1025411, 151, '2020-02-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1025412, 151, '2020-02-22', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1025413, 151, '2020-02-23', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1027512, 138, '2020-01-01', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1027513, 138, '2020-01-02', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1027514, 138, '2020-01-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1027515, 138, '2020-01-04', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1027516, 138, '2020-01-05', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1027517, 138, '2020-01-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1027518, 138, '2020-01-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1027519, 138, '2020-01-08', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1027520, 138, '2020-01-09', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1027521, 138, '2020-01-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1027522, 138, '2020-01-11', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1027523, 138, '2020-01-12', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1027524, 138, '2020-01-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1027525, 138, '2020-01-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1027526, 138, '2020-01-15', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1027527, 138, '2020-01-16', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1027528, 138, '2020-01-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1027529, 138, '2020-01-18', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1027552, 138, '2020-02-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1027553, 138, '2020-02-11', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1027554, 138, '2020-02-12', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1027555, 138, '2020-02-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1027556, 138, '2020-02-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1027558, 138, '2020-02-16', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1027559, 138, '2020-02-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1027560, 138, '2020-02-18', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1027561, 138, '2020-02-19', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1027562, 138, '2020-02-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1027563, 138, '2020-02-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1027564, 138, '2020-02-22', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1027565, 138, '2020-02-23', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1029718, 105, '2019-12-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1029719, 105, '2019-12-31', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1029664, 105, '2020-01-01', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1029665, 105, '2020-01-02', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1029666, 105, '2020-01-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1029667, 105, '2020-01-04', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1029668, 105, '2020-01-05', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1029669, 105, '2020-01-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1029670, 105, '2020-01-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1029671, 105, '2020-01-08', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1029672, 105, '2020-01-09', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1029673, 105, '2020-01-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1029674, 105, '2020-01-11', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1029675, 105, '2020-01-12', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1029676, 105, '2020-01-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1029677, 105, '2020-01-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1029678, 105, '2020-01-15', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1029679, 105, '2020-01-16', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1029680, 105, '2020-01-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1029681, 105, '2020-01-18', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1029682, 105, '2020-01-19', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1029683, 105, '2020-01-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1029684, 105, '2020-01-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1029685, 105, '2020-01-22', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1029686, 105, '2020-01-23', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1029687, 105, '2020-01-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1029688, 105, '2020-01-25', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1029689, 105, '2020-01-26', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1029690, 105, '2020-01-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1029691, 105, '2020-01-28', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1029692, 105, '2020-01-29', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1029693, 105, '2020-01-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1029694, 105, '2020-01-31', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1029695, 105, '2020-02-01', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1029696, 105, '2020-02-02', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1029697, 105, '2020-02-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1029698, 105, '2020-02-04', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1029699, 105, '2020-02-05', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1031816, 134, '2020-01-01', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1031817, 134, '2020-01-02', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1031818, 134, '2020-01-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1031819, 134, '2020-01-04', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1031820, 134, '2020-01-05', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1031821, 134, '2020-01-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1031822, 134, '2020-01-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1031823, 134, '2020-01-08', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1031824, 134, '2020-01-09', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1031825, 134, '2020-01-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1031826, 134, '2020-01-11', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1031827, 134, '2020-01-12', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1031828, 134, '2020-01-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1031829, 134, '2020-01-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1031830, 134, '2020-01-15', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1031831, 134, '2020-01-16', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1031832, 134, '2020-01-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1031833, 134, '2020-01-18', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1031834, 134, '2020-01-19', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1031835, 134, '2020-01-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1031850, 134, '2020-02-04', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1031851, 134, '2020-02-05', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1031852, 134, '2020-02-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1031853, 134, '2020-02-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1031854, 134, '2020-02-08', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1031855, 134, '2020-02-09', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1031856, 134, '2020-02-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1031857, 134, '2020-02-11', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1031858, 134, '2020-02-12', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1031859, 134, '2020-02-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1031860, 134, '2020-02-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1031861, 134, '2020-02-15', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1031862, 134, '2020-02-16', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1031863, 134, '2020-02-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1031864, 134, '2020-02-18', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1031865, 134, '2020-02-19', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1031866, 134, '2020-02-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1031867, 134, '2020-02-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1031868, 134, '2020-02-22', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1031869, 134, '2020-02-23', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1033968, 144, '2020-01-01', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1033969, 144, '2020-01-02', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1033970, 144, '2020-01-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1033971, 144, '2020-01-04', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1033972, 144, '2020-01-05', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1033973, 144, '2020-01-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1033974, 144, '2020-01-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1033975, 144, '2020-01-08', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1033976, 144, '2020-01-09', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1033977, 144, '2020-01-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1033978, 144, '2020-01-11', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1033979, 144, '2020-01-12', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1033980, 144, '2020-01-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1033981, 144, '2020-01-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1033982, 144, '2020-01-15', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1033983, 144, '2020-01-16', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1033984, 144, '2020-01-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1033985, 144, '2020-01-18', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1033986, 144, '2020-01-19', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1033987, 144, '2020-01-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1033988, 144, '2020-01-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1033989, 144, '2020-01-22', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1033990, 144, '2020-01-23', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1033991, 144, '2020-01-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1033992, 144, '2020-01-25', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1033993, 144, '2020-01-26', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1033994, 144, '2020-01-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1036120, 102, '2020-01-01', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1036121, 102, '2020-01-02', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1036122, 102, '2020-01-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1036123, 102, '2020-01-04', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1036124, 102, '2020-01-05', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1036125, 102, '2020-01-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1036126, 102, '2020-01-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1036127, 102, '2020-01-08', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1036128, 102, '2020-01-09', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1036129, 102, '2020-01-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1036130, 102, '2020-01-11', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1036131, 102, '2020-01-12', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1036132, 102, '2020-01-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1036133, 102, '2020-01-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1036134, 102, '2020-01-15', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1036135, 102, '2020-01-16', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1036136, 102, '2020-01-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1036137, 102, '2020-01-18', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1036138, 102, '2020-01-19', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1036139, 102, '2020-01-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1036140, 102, '2020-01-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1036151, 102, '2020-02-01', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1036152, 102, '2020-02-02', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1036153, 102, '2020-02-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1036154, 102, '2020-02-04', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1036155, 102, '2020-02-05', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1036156, 102, '2020-02-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1036157, 102, '2020-02-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1036158, 102, '2020-02-08', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1036159, 102, '2020-02-09', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1036160, 102, '2020-02-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1036161, 102, '2020-02-11', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1036162, 102, '2020-02-12', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1036163, 102, '2020-02-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1036164, 102, '2020-02-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1036165, 102, '2020-02-15', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1036166, 102, '2020-02-16', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1036167, 102, '2020-02-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1036168, 102, '2020-02-18', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1036169, 102, '2020-02-19', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1036170, 102, '2020-02-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1036171, 102, '2020-02-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1036172, 102, '2020-02-22', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1036173, 102, '2020-02-23', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1038326, 109, '2019-12-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1038327, 109, '2019-12-31', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1038272, 109, '2020-01-01', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1038273, 109, '2020-01-02', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1038274, 109, '2020-01-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1038275, 109, '2020-01-04', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1038276, 109, '2020-01-05', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1038277, 109, '2020-01-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1038278, 109, '2020-01-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1038279, 109, '2020-01-08', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1038280, 109, '2020-01-09', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1038281, 109, '2020-01-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1038282, 109, '2020-01-11', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1038283, 109, '2020-01-12', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1038284, 109, '2020-01-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1038285, 109, '2020-01-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1038286, 109, '2020-01-15', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1038287, 109, '2020-01-16', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1040478, 118, '2019-12-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1040479, 118, '2019-12-31', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1040424, 118, '2020-01-01', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1040425, 118, '2020-01-02', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1040426, 118, '2020-01-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1040427, 118, '2020-01-04', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1040428, 118, '2020-01-05', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1040429, 118, '2020-01-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1040430, 118, '2020-01-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1040431, 118, '2020-01-08', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1040432, 118, '2020-01-09', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1040433, 118, '2020-01-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1040434, 118, '2020-01-11', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1040435, 118, '2020-01-12', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1040436, 118, '2020-01-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1040437, 118, '2020-01-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1040438, 118, '2020-01-15', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1040439, 118, '2020-01-16', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1040440, 118, '2020-01-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1040441, 118, '2020-01-18', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1040442, 118, '2020-01-19', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1040443, 118, '2020-01-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1040444, 118, '2020-01-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1040455, 118, '2020-02-01', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1040456, 118, '2020-02-02', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1040457, 118, '2020-02-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1040458, 118, '2020-02-04', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1040459, 118, '2020-02-05', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1040460, 118, '2020-02-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1040461, 118, '2020-02-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1040462, 118, '2020-02-08', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1040463, 118, '2020-02-09', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1040464, 118, '2020-02-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1040465, 118, '2020-02-11', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1040466, 118, '2020-02-12', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1040467, 118, '2020-02-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1040468, 118, '2020-02-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1040469, 118, '2020-02-15', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1040470, 118, '2020-02-16', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1040471, 118, '2020-02-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1040472, 118, '2020-02-18', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1040473, 118, '2020-02-19', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1040474, 118, '2020-02-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1040475, 118, '2020-02-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1040476, 118, '2020-02-22', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1040477, 118, '2020-02-23', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1042630, 133, '2019-12-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1042631, 133, '2019-12-31', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1042576, 133, '2020-01-01', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1042577, 133, '2020-01-02', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1042578, 133, '2020-01-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1042579, 133, '2020-01-04', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1042580, 133, '2020-01-05', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1042581, 133, '2020-01-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1042582, 133, '2020-01-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1042583, 133, '2020-01-08', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1042584, 133, '2020-01-09', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1042585, 133, '2020-01-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1042586, 133, '2020-01-11', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1042587, 133, '2020-01-12', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1044728, 111, '2020-01-01', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1044729, 111, '2020-01-02', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1044730, 111, '2020-01-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1044731, 111, '2020-01-04', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1044732, 111, '2020-01-05', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1044733, 111, '2020-01-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1044734, 111, '2020-01-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1044735, 111, '2020-01-08', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1044736, 111, '2020-01-09', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1044737, 111, '2020-01-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1044738, 111, '2020-01-11', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1044739, 111, '2020-01-12', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1044740, 111, '2020-01-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1044741, 111, '2020-01-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1044742, 111, '2020-01-15', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1044743, 111, '2020-01-16', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1044744, 111, '2020-01-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1044745, 111, '2020-01-18', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1044746, 111, '2020-01-19', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1044747, 111, '2020-01-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1044748, 111, '2020-01-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1044759, 111, '2020-02-01', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1044760, 111, '2020-02-02', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1044761, 111, '2020-02-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1044762, 111, '2020-02-04', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1044763, 111, '2020-02-05', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1044764, 111, '2020-02-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1044765, 111, '2020-02-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1044766, 111, '2020-02-08', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1044767, 111, '2020-02-09', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1044768, 111, '2020-02-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1044769, 111, '2020-02-11', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1044770, 111, '2020-02-12', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1044771, 111, '2020-02-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1044772, 111, '2020-02-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1044773, 111, '2020-02-15', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1044774, 111, '2020-02-16', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1044775, 111, '2020-02-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1044776, 111, '2020-02-18', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1044777, 111, '2020-02-19', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1044778, 111, '2020-02-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1044779, 111, '2020-02-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1044780, 111, '2020-02-22', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1044781, 111, '2020-02-23', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1046880, 128, '2020-01-01', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1046881, 128, '2020-01-02', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1046882, 128, '2020-01-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1046883, 128, '2020-01-04', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1046884, 128, '2020-01-05', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1046885, 128, '2020-01-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1046886, 128, '2020-01-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1046887, 128, '2020-01-08', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1046888, 128, '2020-01-09', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1046889, 128, '2020-01-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1046890, 128, '2020-01-11', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1046891, 128, '2020-01-12', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1046892, 128, '2020-01-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1046931, 128, '2020-02-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1046932, 128, '2020-02-22', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1046933, 128, '2020-02-23', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1049086, 142, '2019-12-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1049087, 142, '2019-12-31', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1049032, 142, '2020-01-01', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1049033, 142, '2020-01-02', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1049034, 142, '2020-01-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1049035, 142, '2020-01-04', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1049036, 142, '2020-01-05', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1049037, 142, '2020-01-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1049038, 142, '2020-01-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1049039, 142, '2020-01-08', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1049040, 142, '2020-01-09', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1049041, 142, '2020-01-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1049042, 142, '2020-01-11', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1049043, 142, '2020-01-12', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1049044, 142, '2020-01-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1049045, 142, '2020-01-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1049046, 142, '2020-01-15', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1049047, 142, '2020-01-16', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1049048, 142, '2020-01-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1049049, 142, '2020-01-18', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1049050, 142, '2020-01-19', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1049051, 142, '2020-01-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1049052, 142, '2020-01-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1049053, 142, '2020-01-22', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1049060, 142, '2020-01-29', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1049061, 142, '2020-01-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1049062, 142, '2020-01-31', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1049063, 142, '2020-02-01', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1049064, 142, '2020-02-02', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1049065, 142, '2020-02-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1049066, 142, '2020-02-04', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1049067, 142, '2020-02-05', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1049068, 142, '2020-02-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1049069, 142, '2020-02-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1049070, 142, '2020-02-08', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1049071, 142, '2020-02-09', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1049072, 142, '2020-02-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1049073, 142, '2020-02-11', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1049074, 142, '2020-02-12', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1049075, 142, '2020-02-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1049076, 142, '2020-02-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1049077, 142, '2020-02-15', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1049078, 142, '2020-02-16', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1049079, 142, '2020-02-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1049080, 142, '2020-02-18', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1049081, 142, '2020-02-19', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1049082, 142, '2020-02-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1051238, 136, '2019-12-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1051239, 136, '2019-12-31', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1051184, 136, '2020-01-01', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1051185, 136, '2020-01-02', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1051186, 136, '2020-01-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1051187, 136, '2020-01-04', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1051188, 136, '2020-01-05', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1051189, 136, '2020-01-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1051190, 136, '2020-01-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1051191, 136, '2020-01-08', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1051192, 136, '2020-01-09', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1051193, 136, '2020-01-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1051194, 136, '2020-01-11', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1051195, 136, '2020-01-12', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1051196, 136, '2020-01-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1051197, 136, '2020-01-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1051198, 136, '2020-01-15', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1051229, 136, '2020-02-15', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1051230, 136, '2020-02-16', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1051231, 136, '2020-02-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1051232, 136, '2020-02-18', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1051233, 136, '2020-02-19', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1051234, 136, '2020-02-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1051235, 136, '2020-02-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1051236, 136, '2020-02-22', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1051237, 136, '2020-02-23', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1053336, 140, '2020-01-01', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1053337, 140, '2020-01-02', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1053338, 140, '2020-01-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1053339, 140, '2020-01-04', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1053340, 140, '2020-01-05', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1053341, 140, '2020-01-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1053342, 140, '2020-01-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1053343, 140, '2020-01-08', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1053344, 140, '2020-01-09', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1053345, 140, '2020-01-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1053346, 140, '2020-01-11', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1053347, 140, '2020-01-12', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1053348, 140, '2020-01-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1053349, 140, '2020-01-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1053350, 140, '2020-01-15', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1053351, 140, '2020-01-16', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1053352, 140, '2020-01-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1053353, 140, '2020-01-18', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1053354, 140, '2020-01-19', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1053355, 140, '2020-01-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1053356, 140, '2020-01-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1053357, 140, '2020-01-22', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1053358, 140, '2020-01-23', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1053359, 140, '2020-01-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1053360, 140, '2020-01-25', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1053361, 140, '2020-01-26', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1053362, 140, '2020-01-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1053363, 140, '2020-01-28', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1053364, 140, '2020-01-29', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1053365, 140, '2020-01-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1053366, 140, '2020-01-31', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1055488, 139, '2020-01-01', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1055489, 139, '2020-01-02', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1055490, 139, '2020-01-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1055491, 139, '2020-01-04', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1055492, 139, '2020-01-05', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1055493, 139, '2020-01-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1055494, 139, '2020-01-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1055495, 139, '2020-01-08', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1055496, 139, '2020-01-09', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1055497, 139, '2020-01-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1055498, 139, '2020-01-11', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1055499, 139, '2020-01-12', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1055500, 139, '2020-01-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1055501, 139, '2020-01-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1055502, 139, '2020-01-15', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1055503, 139, '2020-01-16', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1055504, 139, '2020-01-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1055505, 139, '2020-01-18', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1055528, 139, '2020-02-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1055529, 139, '2020-02-11', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1055530, 139, '2020-02-12', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1055531, 139, '2020-02-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1055532, 139, '2020-02-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1055534, 139, '2020-02-16', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1055535, 139, '2020-02-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1055536, 139, '2020-02-18', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1055537, 139, '2020-02-19', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1055538, 139, '2020-02-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1055539, 139, '2020-02-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1055540, 139, '2020-02-22', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1055541, 139, '2020-02-23', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1057640, 141, '2020-01-01', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1057641, 141, '2020-01-02', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1057642, 141, '2020-01-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1057643, 141, '2020-01-04', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1057644, 141, '2020-01-05', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1057645, 141, '2020-01-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1057646, 141, '2020-01-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1057647, 141, '2020-01-08', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1057648, 141, '2020-01-09', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1057649, 141, '2020-01-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1057650, 141, '2020-01-11', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1057651, 141, '2020-01-12', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1057652, 141, '2020-01-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1057653, 141, '2020-01-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1057654, 141, '2020-01-15', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1057655, 141, '2020-01-16', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1057656, 141, '2020-01-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1057657, 141, '2020-01-18', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1057658, 141, '2020-01-19', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1057659, 141, '2020-01-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1057660, 141, '2020-01-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1057661, 141, '2020-01-22', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1057662, 141, '2020-01-23', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1057663, 141, '2020-01-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1057664, 141, '2020-01-25', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1057665, 141, '2020-01-26', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1057666, 141, '2020-01-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1057667, 141, '2020-01-28', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1057668, 141, '2020-01-29', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1057669, 141, '2020-01-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1057670, 141, '2020-01-31', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1057671, 141, '2020-02-01', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1057672, 141, '2020-02-02', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1057673, 141, '2020-02-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1057674, 141, '2020-02-04', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1057675, 141, '2020-02-05', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1059846, 122, '2019-12-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1059847, 122, '2019-12-31', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1059792, 122, '2020-01-01', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1059793, 122, '2020-01-02', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1059794, 122, '2020-01-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1059795, 122, '2020-01-04', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1059796, 122, '2020-01-05', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1059797, 122, '2020-01-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1059798, 122, '2020-01-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1059799, 122, '2020-01-08', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1059800, 122, '2020-01-09', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1059801, 122, '2020-01-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1059802, 122, '2020-01-11', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1059803, 122, '2020-01-12', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1059804, 122, '2020-01-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1059805, 122, '2020-01-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1059806, 122, '2020-01-15', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1059807, 122, '2020-01-16', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1059808, 122, '2020-01-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1059809, 122, '2020-01-18', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1059810, 122, '2020-01-19', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1059811, 122, '2020-01-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1059826, 122, '2020-02-04', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1059827, 122, '2020-02-05', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1059828, 122, '2020-02-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1059829, 122, '2020-02-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1059830, 122, '2020-02-08', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1059831, 122, '2020-02-09', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1059832, 122, '2020-02-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1059833, 122, '2020-02-11', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1059834, 122, '2020-02-12', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1059835, 122, '2020-02-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1059836, 122, '2020-02-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1059837, 122, '2020-02-15', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1059838, 122, '2020-02-16', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1059839, 122, '2020-02-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1059840, 122, '2020-02-18', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1059841, 122, '2020-02-19', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1059842, 122, '2020-02-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1059843, 122, '2020-02-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1059844, 122, '2020-02-22', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1059845, 122, '2020-02-23', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1061998, 106, '2019-12-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '02:05:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1061999, 106, '2019-12-31', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '02:05:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1061944, 106, '2020-01-01', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '02:05:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1061945, 106, '2020-01-02', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '02:05:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1061946, 106, '2020-01-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '02:05:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1061947, 106, '2020-01-04', NULL, NULL, NULL, NULL, NULL, '00:00:00', '02:05:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1061948, 106, '2020-01-05', NULL, NULL, NULL, NULL, NULL, '00:00:00', '02:05:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1061949, 106, '2020-01-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '02:05:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1061950, 106, '2020-01-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '02:05:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1061951, 106, '2020-01-08', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '02:05:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1061952, 106, '2020-01-09', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '02:05:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1061953, 106, '2020-01-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '02:05:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1061954, 106, '2020-01-11', NULL, NULL, NULL, NULL, NULL, '00:00:00', '02:05:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1061955, 106, '2020-01-12', NULL, NULL, NULL, NULL, NULL, '00:00:00', '02:05:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1061956, 106, '2020-01-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '02:05:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1061957, 106, '2020-01-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '02:05:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1061958, 106, '2020-01-15', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '02:05:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1061959, 106, '2020-01-16', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '02:05:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1061960, 106, '2020-01-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '02:05:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1061961, 106, '2020-01-18', NULL, NULL, NULL, NULL, NULL, '00:00:00', '02:05:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1061962, 106, '2020-01-19', NULL, NULL, NULL, NULL, NULL, '00:00:00', '02:05:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1061963, 106, '2020-01-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '02:05:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1061964, 106, '2020-01-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '02:05:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1061965, 106, '2020-01-22', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '02:05:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1061966, 106, '2020-01-23', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '02:05:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1061967, 106, '2020-01-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '02:05:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1061968, 106, '2020-01-25', NULL, NULL, NULL, NULL, NULL, '00:00:00', '02:05:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1061969, 106, '2020-01-26', NULL, NULL, NULL, NULL, NULL, '00:00:00', '02:05:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1061970, 106, '2020-01-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '02:05:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1064096, 110, '2020-01-01', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1064097, 110, '2020-01-02', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1064098, 110, '2020-01-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1064099, 110, '2020-01-04', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1064100, 110, '2020-01-05', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1064101, 110, '2020-01-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1064102, 110, '2020-01-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1064103, 110, '2020-01-08', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1064104, 110, '2020-01-09', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1064105, 110, '2020-01-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1064106, 110, '2020-01-11', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1064107, 110, '2020-01-12', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1064108, 110, '2020-01-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1064109, 110, '2020-01-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1064110, 110, '2020-01-15', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1064111, 110, '2020-01-16', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1064112, 110, '2020-01-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1064113, 110, '2020-01-18', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1064114, 110, '2020-01-19', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1064115, 110, '2020-01-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1064116, 110, '2020-01-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1064127, 110, '2020-02-01', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1064128, 110, '2020-02-02', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1064129, 110, '2020-02-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1064130, 110, '2020-02-04', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1064131, 110, '2020-02-05', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1064132, 110, '2020-02-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1064133, 110, '2020-02-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1064134, 110, '2020-02-08', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1064135, 110, '2020-02-09', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1064136, 110, '2020-02-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1064137, 110, '2020-02-11', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1064138, 110, '2020-02-12', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1064139, 110, '2020-02-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1064140, 110, '2020-02-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1064141, 110, '2020-02-15', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1064142, 110, '2020-02-16', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1064143, 110, '2020-02-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1064144, 110, '2020-02-18', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1064145, 110, '2020-02-19', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1064146, 110, '2020-02-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1064147, 110, '2020-02-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1064148, 110, '2020-02-22', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1064149, 110, '2020-02-23', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1066248, 145, '2020-01-01', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1066249, 145, '2020-01-02', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1066250, 145, '2020-01-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1066251, 145, '2020-01-04', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1066252, 145, '2020-01-05', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1066253, 145, '2020-01-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1066254, 145, '2020-01-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1066255, 145, '2020-01-08', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1066256, 145, '2020-01-09', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1066257, 145, '2020-01-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1066258, 145, '2020-01-11', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1066259, 145, '2020-01-12', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1066260, 145, '2020-01-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1066261, 145, '2020-01-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1066262, 145, '2020-01-15', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1066263, 145, '2020-01-16', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1068400, 148, '2020-01-01', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1068401, 148, '2020-01-02', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1068402, 148, '2020-01-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1068403, 148, '2020-01-04', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1068404, 148, '2020-01-05', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1068405, 148, '2020-01-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1068406, 148, '2020-01-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1068407, 148, '2020-01-08', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1068408, 148, '2020-01-09', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1068409, 148, '2020-01-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1068410, 148, '2020-01-11', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1068411, 148, '2020-01-12', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1068412, 148, '2020-01-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1068413, 148, '2020-01-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1068414, 148, '2020-01-15', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1068415, 148, '2020-01-16', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1068416, 148, '2020-01-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1068417, 148, '2020-01-18', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1068418, 148, '2020-01-19', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1068419, 148, '2020-01-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1068420, 148, '2020-01-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1068431, 148, '2020-02-01', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1068432, 148, '2020-02-02', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1068433, 148, '2020-02-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1068434, 148, '2020-02-04', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1068435, 148, '2020-02-05', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1068436, 148, '2020-02-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1068437, 148, '2020-02-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1068438, 148, '2020-02-08', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1068439, 148, '2020-02-09', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1068440, 148, '2020-02-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1068441, 148, '2020-02-11', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1068442, 148, '2020-02-12', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1068443, 148, '2020-02-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1068444, 148, '2020-02-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1068445, 148, '2020-02-15', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1068446, 148, '2020-02-16', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1068447, 148, '2020-02-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1068448, 148, '2020-02-18', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1068449, 148, '2020-02-19', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1068450, 148, '2020-02-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1068451, 148, '2020-02-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1068452, 148, '2020-02-22', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1068453, 148, '2020-02-23', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1070606, 130, '2019-12-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1070607, 130, '2019-12-31', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1070552, 130, '2020-01-01', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1070553, 130, '2020-01-02', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1070554, 130, '2020-01-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1070555, 130, '2020-01-04', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1070556, 130, '2020-01-05', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1070557, 130, '2020-01-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1070558, 130, '2020-01-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1070559, 130, '2020-01-08', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1070560, 130, '2020-01-09', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1070561, 130, '2020-01-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1070562, 130, '2020-01-11', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1070563, 130, '2020-01-12', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (914518, 129, '2019-12-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (914519, 129, '2019-12-31', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (914464, 129, '2020-01-01', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (914465, 129, '2020-01-02', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (914466, 129, '2020-01-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (914467, 129, '2020-01-04', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (914468, 129, '2020-01-05', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (914469, 129, '2020-01-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (914470, 129, '2020-01-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (914471, 129, '2020-01-08', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (914472, 129, '2020-01-09', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (914473, 129, '2020-01-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (914474, 129, '2020-01-11', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (914475, 129, '2020-01-12', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (914476, 129, '2020-01-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (914477, 129, '2020-01-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (914478, 129, '2020-01-15', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (914481, 129, '2020-01-18', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (914479, 129, '2020-01-16', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (914480, 129, '2020-01-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (914482, 129, '2020-01-19', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (914483, 129, '2020-01-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (914484, 129, '2020-01-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (914485, 129, '2020-01-22', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (914486, 129, '2020-01-23', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (914487, 129, '2020-01-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (914488, 129, '2020-01-25', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (914489, 129, '2020-01-26', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (914517, 129, '2020-02-23', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1074856, 143, '2020-01-01', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1074857, 143, '2020-01-02', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1074858, 143, '2020-01-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1074859, 143, '2020-01-04', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1074860, 143, '2020-01-05', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1074861, 143, '2020-01-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1074862, 143, '2020-01-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1074863, 143, '2020-01-08', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1074864, 143, '2020-01-09', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1074865, 143, '2020-01-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1074866, 143, '2020-01-11', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1074867, 143, '2020-01-12', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1074868, 143, '2020-01-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1074869, 143, '2020-01-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1074870, 143, '2020-01-15', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1074871, 143, '2020-01-16', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1074872, 143, '2020-01-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1074873, 143, '2020-01-18', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1074874, 143, '2020-01-19', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1074875, 143, '2020-01-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1074876, 143, '2020-01-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1074887, 143, '2020-02-01', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1074888, 143, '2020-02-02', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1074889, 143, '2020-02-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1074890, 143, '2020-02-04', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1074891, 143, '2020-02-05', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1074892, 143, '2020-02-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1074893, 143, '2020-02-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1074894, 143, '2020-02-08', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1074895, 143, '2020-02-09', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1074896, 143, '2020-02-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1074897, 143, '2020-02-11', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1074898, 143, '2020-02-12', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1074899, 143, '2020-02-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1074900, 143, '2020-02-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1074901, 143, '2020-02-15', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1074902, 143, '2020-02-16', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1074903, 143, '2020-02-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1074904, 143, '2020-02-18', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1074905, 143, '2020-02-19', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1074906, 143, '2020-02-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1074907, 143, '2020-02-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1074908, 143, '2020-02-22', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1074909, 143, '2020-02-23', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1115017, 116, '2020-01-01', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1115018, 116, '2020-01-02', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1115019, 116, '2020-01-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1115020, 116, '2020-01-04', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1115021, 116, '2020-01-05', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1115022, 116, '2020-01-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1115023, 116, '2020-01-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1115024, 116, '2020-01-08', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1115025, 116, '2020-01-09', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1115026, 116, '2020-01-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1115027, 116, '2020-01-11', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1115028, 116, '2020-01-12', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1115029, 116, '2020-01-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1115030, 116, '2020-01-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1115031, 116, '2020-01-15', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1115032, 116, '2020-01-16', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1115066, 116, '2020-02-19', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1029699, 105, '2020-02-05', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1031834, 134, '2020-01-19', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1115033, 116, '2020-01-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1115034, 116, '2020-01-18', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1115035, 116, '2020-01-19', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1115036, 116, '2020-01-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1115037, 116, '2020-01-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1115038, 116, '2020-01-22', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1115039, 116, '2020-01-23', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1115040, 116, '2020-01-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1115041, 116, '2020-01-25', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1115042, 116, '2020-01-26', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1115043, 116, '2020-01-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1115044, 116, '2020-01-28', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1115045, 116, '2020-01-29', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1115046, 116, '2020-01-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1115047, 116, '2020-01-31', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1115048, 116, '2020-02-01', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1031868, 134, '2020-02-22', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1036138, 102, '2020-01-19', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1040442, 118, '2020-01-19', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1057680, 141, '2020-02-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1059810, 122, '2020-01-19', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1115049, 116, '2020-02-02', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1115050, 116, '2020-02-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1115051, 116, '2020-02-04', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1115052, 116, '2020-02-05', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1115053, 116, '2020-02-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1115054, 116, '2020-02-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1115055, 116, '2020-02-08', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1115056, 116, '2020-02-09', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1115057, 116, '2020-02-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1115058, 116, '2020-02-11', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1115059, 116, '2020-02-12', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1115060, 116, '2020-02-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1115061, 116, '2020-02-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1115062, 116, '2020-02-15', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1115063, 116, '2020-02-16', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1115064, 116, '2020-02-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1115065, 116, '2020-02-18', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1066296, 145, '2020-02-18', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084022, 121, '2020-06-01', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084113, 125, '2020-05-22', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '03:20:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1115067, 116, '2020-02-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1115068, 116, '2020-02-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1115069, 116, '2020-02-22', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1115070, 116, '2020-02-23', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (988797, 146, '2020-01-22', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (995267, 114, '2020-02-05', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (999559, 108, '2020-01-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (999574, 108, '2020-02-08', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1001723, 135, '2020-02-05', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1003858, 127, '2020-01-19', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1003892, 127, '2020-02-22', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1006021, 149, '2020-01-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1006022, 149, '2020-01-31', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1006023, 149, '2020-02-01', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1006024, 149, '2020-02-02', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1006025, 149, '2020-02-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1006026, 149, '2020-02-04', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1008162, 103, '2020-01-19', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1010313, 121, '2020-01-18', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1042623, 133, '2020-02-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1042624, 133, '2020-02-18', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1042625, 133, '2020-02-19', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1042626, 133, '2020-02-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1042627, 133, '2020-02-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1042628, 133, '2020-02-22', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1042629, 133, '2020-02-23', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1044746, 111, '2020-01-19', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1044747, 111, '2020-01-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1044748, 111, '2020-01-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1044749, 111, '2020-01-22', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1044750, 111, '2020-01-23', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1044751, 111, '2020-01-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1044752, 111, '2020-01-25', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1044753, 111, '2020-01-26', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1044754, 111, '2020-01-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1044777, 111, '2020-02-19', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084114, 125, '2020-05-23', NULL, NULL, NULL, NULL, NULL, '00:00:00', '03:20:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '03:20:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084177, 119, '2020-05-30', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1008170, 103, '2020-01-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1044778, 111, '2020-02-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1044779, 111, '2020-02-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1044780, 111, '2020-02-22', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1044781, 111, '2020-02-23', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1046893, 128, '2020-01-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1046908, 128, '2020-01-29', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1046909, 128, '2020-01-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1046910, 128, '2020-01-31', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1046911, 128, '2020-02-01', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1046912, 128, '2020-02-02', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1046913, 128, '2020-02-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1046914, 128, '2020-02-04', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1046915, 128, '2020-02-05', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1046916, 128, '2020-02-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1046917, 128, '2020-02-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1046918, 128, '2020-02-08', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084221, 113, '2020-05-18', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084250, 147, '2020-04-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084374, 104, '2020-05-03', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:00:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1014635, 119, '2020-02-05', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1046919, 128, '2020-02-09', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1046920, 128, '2020-02-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1046921, 128, '2020-02-11', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1046922, 128, '2020-02-12', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1049056, 142, '2020-01-25', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1049057, 142, '2020-01-26', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1049058, 142, '2020-01-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1049059, 142, '2020-01-28', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1049077, 142, '2020-02-15', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1049078, 142, '2020-02-16', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1049079, 142, '2020-02-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1049080, 142, '2020-02-18', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1049081, 142, '2020-02-19', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1049082, 142, '2020-02-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1049083, 142, '2020-02-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1049084, 142, '2020-02-22', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1049085, 142, '2020-02-23', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084402, 104, '2020-05-31', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:00:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1008173, 103, '2020-01-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1051199, 136, '2020-01-16', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1051200, 136, '2020-01-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1051201, 136, '2020-01-18', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1051202, 136, '2020-01-19', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1051217, 136, '2020-02-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1051218, 136, '2020-02-04', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1051219, 136, '2020-02-05', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1051220, 136, '2020-02-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1051221, 136, '2020-02-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1051222, 136, '2020-02-08', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1051223, 136, '2020-02-09', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1051224, 136, '2020-02-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1051225, 136, '2020-02-11', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1051226, 136, '2020-02-12', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1051227, 136, '2020-02-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1051228, 136, '2020-02-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084403, 104, '2020-06-01', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084463, 151, '2020-06-05', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084490, 138, '2020-05-07', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1021082, 131, '2020-01-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '04:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '04:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1053354, 140, '2020-01-19', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1053355, 140, '2020-01-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1053356, 140, '2020-01-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1055520, 139, '2020-02-02', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1055521, 139, '2020-02-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1055522, 139, '2020-02-04', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1055523, 139, '2020-02-05', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1055524, 139, '2020-02-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1055525, 139, '2020-02-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1055526, 139, '2020-02-08', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1055527, 139, '2020-02-09', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1055533, 139, '2020-02-15', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1057675, 141, '2020-02-05', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1057676, 141, '2020-02-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1057677, 141, '2020-02-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1057678, 141, '2020-02-08', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1057679, 141, '2020-02-09', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1027531, 138, '2020-01-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1059812, 122, '2020-01-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1059813, 122, '2020-01-22', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1059814, 122, '2020-01-23', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1059815, 122, '2020-01-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1059816, 122, '2020-01-25', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1059817, 122, '2020-01-26', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1059818, 122, '2020-01-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1059819, 122, '2020-01-28', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1059820, 122, '2020-01-29', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1059821, 122, '2020-01-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1059822, 122, '2020-01-31', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1059823, 122, '2020-02-01', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1059824, 122, '2020-02-02', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1059825, 122, '2020-02-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1059844, 122, '2020-02-22', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1059845, 122, '2020-02-23', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1061971, 106, '2020-01-28', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '04:10:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '04:10:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084497, 138, '2020-05-14', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084528, 138, '2020-06-14', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1029714, 105, '2020-02-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1061972, 106, '2020-01-29', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '04:10:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '04:10:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1061987, 106, '2020-02-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '04:10:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '04:10:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1061988, 106, '2020-02-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '04:10:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1061989, 106, '2020-02-15', NULL, NULL, NULL, NULL, NULL, '00:00:00', '04:10:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1061990, 106, '2020-02-16', NULL, NULL, NULL, NULL, NULL, '00:00:00', '04:10:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1061991, 106, '2020-02-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '04:10:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '04:10:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1061992, 106, '2020-02-18', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '04:10:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '04:10:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1061993, 106, '2020-02-19', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '04:10:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '04:10:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1061994, 106, '2020-02-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '04:10:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '04:10:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1061995, 106, '2020-02-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '04:10:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1061996, 106, '2020-02-22', NULL, NULL, NULL, NULL, NULL, '00:00:00', '04:10:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1061997, 106, '2020-02-23', NULL, NULL, NULL, NULL, NULL, '00:00:00', '04:10:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1064114, 110, '2020-01-19', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1064115, 110, '2020-01-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1064116, 110, '2020-01-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1064117, 110, '2020-01-22', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1064118, 110, '2020-01-23', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084610, 134, '2020-05-15', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1034012, 144, '2020-02-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1066265, 145, '2020-01-18', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1066266, 145, '2020-01-19', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1066267, 145, '2020-01-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1066268, 145, '2020-01-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1066269, 145, '2020-01-22', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1066270, 145, '2020-01-23', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1066271, 145, '2020-01-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1066272, 145, '2020-01-25', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1066273, 145, '2020-01-26', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1066274, 145, '2020-01-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1066275, 145, '2020-01-28', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1066276, 145, '2020-01-29', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1066277, 145, '2020-01-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1066278, 145, '2020-01-31', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1066279, 145, '2020-02-01', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1066280, 145, '2020-02-02', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1066295, 145, '2020-02-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1066297, 145, '2020-02-19', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1066298, 145, '2020-02-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1066299, 145, '2020-02-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1066300, 145, '2020-02-22', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1066301, 145, '2020-02-23', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1068418, 148, '2020-01-19', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1068419, 148, '2020-01-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1068420, 148, '2020-01-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1068421, 148, '2020-01-22', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1068422, 148, '2020-01-23', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1068423, 148, '2020-01-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1068424, 148, '2020-01-25', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1068425, 148, '2020-01-26', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1068426, 148, '2020-01-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1070568, 130, '2020-01-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1070569, 130, '2020-01-18', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1070570, 130, '2020-01-19', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1070571, 130, '2020-01-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084634, 134, '2020-06-08', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084635, 134, '2020-06-09', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1070572, 130, '2020-01-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1070573, 130, '2020-01-22', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1070574, 130, '2020-01-23', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1070575, 130, '2020-01-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1070576, 130, '2020-01-25', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1070577, 130, '2020-01-26', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1070578, 130, '2020-01-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1070579, 130, '2020-01-28', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1070580, 130, '2020-01-29', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1070581, 130, '2020-01-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1070582, 130, '2020-01-31', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1070583, 130, '2020-02-01', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1070584, 130, '2020-02-02', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1070599, 130, '2020-02-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1070600, 130, '2020-02-18', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1070601, 130, '2020-02-19', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1070602, 130, '2020-02-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1070603, 130, '2020-02-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1070604, 130, '2020-02-22', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1070605, 130, '2020-02-23', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (914490, 129, '2020-01-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (914491, 129, '2020-01-28', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (914492, 129, '2020-01-29', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (914493, 129, '2020-01-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (914494, 129, '2020-01-31', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (914495, 129, '2020-02-01', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (914496, 129, '2020-02-02', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (914497, 129, '2020-02-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (914512, 129, '2020-02-18', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (914513, 129, '2020-02-19', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (914514, 129, '2020-02-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (914515, 129, '2020-02-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (914516, 129, '2020-02-22', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1074874, 143, '2020-01-19', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1074875, 143, '2020-01-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1074876, 143, '2020-01-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084732, 109, '2020-05-25', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1074877, 143, '2020-01-22', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1074878, 143, '2020-01-23', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1074879, 143, '2020-01-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1074880, 143, '2020-01-25', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1074881, 143, '2020-01-26', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1074882, 143, '2020-01-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1074883, 143, '2020-01-28', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1117223, 116, '2020-02-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1117224, 116, '2020-02-25', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1117225, 116, '2020-02-26', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1117226, 116, '2020-02-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1117227, 116, '2020-02-28', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079166, 146, '2020-03-01', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079167, 146, '2020-03-02', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079168, 146, '2020-03-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079169, 146, '2020-03-04', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079170, 146, '2020-03-05', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084733, 109, '2020-05-26', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084868, 111, '2020-04-23', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079171, 146, '2020-03-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079172, 146, '2020-03-07', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079173, 146, '2020-03-08', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079174, 146, '2020-03-09', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079175, 146, '2020-03-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079176, 146, '2020-03-11', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079177, 146, '2020-03-12', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079178, 146, '2020-03-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079179, 146, '2020-03-14', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079180, 146, '2020-03-15', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079181, 146, '2020-03-16', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079196, 146, '2020-03-31', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079197, 146, '2020-04-01', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079198, 146, '2020-04-02', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079199, 146, '2020-04-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079200, 146, '2020-04-04', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079201, 146, '2020-04-05', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079202, 146, '2020-04-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085072, 136, '2020-05-29', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079203, 146, '2020-04-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079204, 146, '2020-04-08', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079205, 146, '2020-04-09', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079206, 146, '2020-04-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079207, 146, '2020-04-11', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079208, 146, '2020-04-12', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079209, 146, '2020-04-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079210, 146, '2020-04-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079225, 115, '2020-03-04', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079226, 115, '2020-03-05', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079227, 115, '2020-03-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079228, 115, '2020-03-07', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079229, 115, '2020-03-08', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079230, 115, '2020-03-09', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079231, 115, '2020-03-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079232, 115, '2020-03-11', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079233, 115, '2020-03-12', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079234, 115, '2020-03-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1008197, 103, '2020-02-23', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079235, 115, '2020-03-14', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079236, 115, '2020-03-15', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079237, 115, '2020-03-16', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079238, 115, '2020-03-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079239, 115, '2020-03-18', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079254, 115, '2020-04-02', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079255, 115, '2020-04-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079256, 115, '2020-04-04', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079257, 115, '2020-04-05', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079258, 115, '2020-04-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079259, 115, '2020-04-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079260, 115, '2020-04-08', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079261, 115, '2020-04-09', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079262, 115, '2020-04-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079263, 115, '2020-04-11', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079264, 115, '2020-04-12', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079265, 115, '2020-04-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085110, 139, '2020-05-11', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085139, 139, '2020-06-09', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085158, 141, '2020-05-03', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (988778, 146, '2020-01-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079266, 115, '2020-04-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079267, 115, '2020-04-15', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079268, 115, '2020-04-16', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079283, 114, '2020-03-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079284, 114, '2020-03-07', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079285, 114, '2020-03-08', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079286, 114, '2020-03-09', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079287, 114, '2020-03-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079288, 114, '2020-03-11', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079289, 114, '2020-03-12', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079290, 114, '2020-03-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079291, 114, '2020-03-14', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079292, 114, '2020-03-15', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079293, 114, '2020-03-16', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079502, 127, '2020-03-01', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083766, 135, '2020-04-30', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085167, 141, '2020-05-12', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085198, 141, '2020-06-12', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085252, 122, '2020-06-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085302, 106, '2020-06-04', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '04:10:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '04:10:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (988779, 146, '2020-01-04', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079294, 114, '2020-03-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079295, 114, '2020-03-18', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079296, 114, '2020-03-19', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079297, 114, '2020-03-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079312, 114, '2020-04-04', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079313, 114, '2020-04-05', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079314, 114, '2020-04-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079315, 114, '2020-04-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079316, 114, '2020-04-08', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079317, 114, '2020-04-09', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079318, 114, '2020-04-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079319, 114, '2020-04-11', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079320, 114, '2020-04-12', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079321, 114, '2020-04-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084019, 121, '2020-05-29', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084020, 121, '2020-05-30', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084021, 121, '2020-05-31', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085304, 106, '2020-06-06', NULL, NULL, NULL, NULL, NULL, '00:00:00', '04:10:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (988780, 146, '2020-01-05', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (988781, 146, '2020-01-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079322, 114, '2020-04-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079323, 114, '2020-04-15', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079324, 114, '2020-04-16', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079325, 114, '2020-04-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079326, 114, '2020-04-18', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079327, 114, '2020-04-19', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079342, 112, '2020-03-09', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079343, 112, '2020-03-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079344, 112, '2020-03-11', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079345, 112, '2020-03-12', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079346, 112, '2020-03-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079347, 112, '2020-03-14', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084023, 121, '2020-06-02', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084024, 121, '2020-06-03', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084025, 121, '2020-06-04', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084030, 121, '2020-06-09', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (988782, 146, '2020-01-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (988783, 146, '2020-01-08', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079348, 112, '2020-03-15', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079349, 112, '2020-03-16', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079350, 112, '2020-03-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079351, 112, '2020-03-18', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079352, 112, '2020-03-19', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079353, 112, '2020-03-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079354, 112, '2020-03-21', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079355, 112, '2020-03-22', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079356, 112, '2020-03-23', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079371, 112, '2020-04-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079372, 112, '2020-04-08', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079373, 112, '2020-04-09', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084031, 121, '2020-06-10', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084047, 117, '2020-05-12', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084048, 117, '2020-05-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085311, 106, '2020-06-13', NULL, NULL, NULL, NULL, NULL, '00:00:00', '04:10:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (988784, 146, '2020-01-09', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (988785, 146, '2020-01-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (988786, 146, '2020-01-11', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (988787, 146, '2020-01-12', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079374, 112, '2020-04-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079375, 112, '2020-04-11', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079376, 112, '2020-04-12', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079377, 112, '2020-04-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079378, 112, '2020-04-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079379, 112, '2020-04-15', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079380, 112, '2020-04-16', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079381, 112, '2020-04-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079382, 112, '2020-04-18', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079383, 112, '2020-04-19', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079384, 108, '2020-02-24', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079385, 108, '2020-02-25', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084053, 117, '2020-05-18', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084054, 117, '2020-05-19', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085312, 106, '2020-06-14', NULL, NULL, NULL, NULL, NULL, '00:00:00', '04:10:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085333, 110, '2020-05-10', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (988776, 146, '2020-01-01', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (988777, 146, '2020-01-02', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079398, 108, '2020-03-09', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079399, 108, '2020-03-10', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079400, 108, '2020-03-11', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079401, 108, '2020-03-12', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079402, 108, '2020-03-13', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079403, 108, '2020-03-14', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079404, 108, '2020-03-15', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079405, 108, '2020-03-16', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079406, 108, '2020-03-17', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079407, 108, '2020-03-18', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079408, 108, '2020-03-19', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084055, 117, '2020-05-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084060, 117, '2020-05-25', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084075, 117, '2020-06-09', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084076, 117, '2020-06-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085334, 110, '2020-05-11', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (988788, 146, '2020-01-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (988789, 146, '2020-01-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079409, 108, '2020-03-20', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079410, 108, '2020-03-21', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079411, 108, '2020-03-22', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079412, 108, '2020-03-23', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079427, 108, '2020-04-07', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079428, 108, '2020-04-08', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079429, 108, '2020-04-09', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079430, 108, '2020-04-10', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079431, 108, '2020-04-11', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079432, 108, '2020-04-12', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079433, 108, '2020-04-13', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079434, 108, '2020-04-14', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079435, 108, '2020-04-15', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084077, 117, '2020-06-11', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084078, 117, '2020-06-12', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084082, 125, '2020-04-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '03:20:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (988790, 146, '2020-01-15', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (988791, 146, '2020-01-16', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (988792, 146, '2020-01-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079436, 108, '2020-04-16', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079437, 108, '2020-04-17', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079438, 108, '2020-04-18', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079439, 108, '2020-04-19', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079440, 135, '2020-02-24', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079441, 135, '2020-02-25', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079442, 135, '2020-02-26', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079457, 135, '2020-03-12', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079458, 135, '2020-03-13', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079459, 135, '2020-03-14', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079460, 135, '2020-03-15', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079461, 135, '2020-03-16', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084083, 125, '2020-04-22', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '03:20:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084084, 125, '2020-04-23', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '03:20:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085335, 110, '2020-05-12', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085361, 110, '2020-06-07', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (988793, 146, '2020-01-18', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (988794, 146, '2020-01-19', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (988795, 146, '2020-01-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (988796, 146, '2020-01-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079462, 135, '2020-03-17', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079463, 135, '2020-03-18', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079464, 135, '2020-03-19', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079465, 135, '2020-03-20', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079466, 135, '2020-03-21', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079467, 135, '2020-03-22', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079468, 135, '2020-03-23', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079469, 135, '2020-03-24', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079470, 135, '2020-03-25', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079471, 135, '2020-03-26', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079486, 135, '2020-04-10', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084089, 125, '2020-04-28', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '03:20:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084104, 125, '2020-05-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '03:20:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084105, 125, '2020-05-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '03:20:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (988798, 146, '2020-01-23', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (988799, 146, '2020-01-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (988800, 146, '2020-01-25', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (988801, 146, '2020-01-26', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079487, 135, '2020-04-11', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079488, 135, '2020-04-12', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079489, 135, '2020-04-13', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079490, 135, '2020-04-14', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079491, 135, '2020-04-15', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079492, 135, '2020-04-16', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079493, 135, '2020-04-17', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079494, 135, '2020-04-18', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079495, 135, '2020-04-19', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079496, 127, '2020-02-24', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079497, 127, '2020-02-25', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084106, 125, '2020-05-15', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '03:20:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084107, 125, '2020-05-16', NULL, NULL, NULL, NULL, NULL, '00:00:00', '03:20:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '03:20:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084112, 125, '2020-05-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '03:20:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (988802, 146, '2020-01-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (988803, 146, '2020-01-28', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (988804, 146, '2020-01-29', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (988805, 146, '2020-01-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079498, 127, '2020-02-26', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079499, 127, '2020-02-27', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079500, 127, '2020-02-28', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079503, 127, '2020-03-02', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079504, 127, '2020-03-03', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079519, 127, '2020-03-18', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079520, 127, '2020-03-19', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079521, 127, '2020-03-20', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079522, 127, '2020-03-21', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079523, 127, '2020-03-22', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084115, 125, '2020-05-24', NULL, NULL, NULL, NULL, NULL, '00:00:00', '03:20:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084134, 125, '2020-06-12', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '03:20:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084135, 125, '2020-06-13', NULL, NULL, NULL, NULL, NULL, '00:00:00', '03:20:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '03:20:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084136, 125, '2020-06-14', NULL, NULL, NULL, NULL, NULL, '00:00:00', '03:20:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085364, 110, '2020-06-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (988806, 146, '2020-01-31', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (988807, 146, '2020-02-01', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (988808, 146, '2020-02-02', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (988809, 146, '2020-02-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079524, 127, '2020-03-23', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079525, 127, '2020-03-24', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079526, 127, '2020-03-25', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079527, 127, '2020-03-26', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079528, 127, '2020-03-27', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079529, 127, '2020-03-28', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079530, 127, '2020-03-29', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079531, 127, '2020-03-30', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079532, 127, '2020-03-31', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079533, 127, '2020-04-01', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079534, 127, '2020-04-02', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084137, 119, '2020-04-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084142, 119, '2020-04-25', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084143, 119, '2020-04-26', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085369, 145, '2020-04-20', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085370, 145, '2020-04-21', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (988810, 146, '2020-02-04', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (988811, 146, '2020-02-05', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (988812, 146, '2020-02-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (988813, 146, '2020-02-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079549, 127, '2020-04-17', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079550, 127, '2020-04-18', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079551, 127, '2020-04-19', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079552, 149, '2020-02-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079553, 149, '2020-02-25', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079554, 149, '2020-02-26', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079555, 149, '2020-02-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079556, 149, '2020-02-28', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079557, 149, '2020-02-29', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079558, 149, '2020-03-01', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079559, 149, '2020-03-02', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084144, 119, '2020-04-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084145, 119, '2020-04-28', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084164, 119, '2020-05-17', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (988814, 146, '2020-02-08', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (988815, 146, '2020-02-09', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (988816, 146, '2020-02-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (988817, 146, '2020-02-11', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079560, 149, '2020-03-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079561, 149, '2020-03-04', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079562, 149, '2020-03-05', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079563, 149, '2020-03-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079578, 149, '2020-03-21', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079579, 149, '2020-03-22', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079580, 149, '2020-03-23', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079581, 149, '2020-03-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079582, 149, '2020-03-25', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079583, 149, '2020-03-26', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084165, 119, '2020-05-18', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084166, 119, '2020-05-19', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084167, 119, '2020-05-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085371, 145, '2020-04-22', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085372, 145, '2020-04-23', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085391, 145, '2020-05-12', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (988818, 146, '2020-02-12', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (988819, 146, '2020-02-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (988820, 146, '2020-02-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079584, 149, '2020-03-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079585, 149, '2020-03-28', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079586, 149, '2020-03-29', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079587, 149, '2020-03-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079588, 149, '2020-03-31', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079589, 149, '2020-04-01', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079590, 149, '2020-04-02', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079591, 149, '2020-04-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079592, 149, '2020-04-04', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079593, 149, '2020-04-05', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079594, 149, '2020-04-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079609, 103, '2020-02-25', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084168, 119, '2020-05-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084173, 119, '2020-05-26', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084174, 119, '2020-05-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (988821, 146, '2020-02-15', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (988822, 146, '2020-02-16', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (988823, 146, '2020-02-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (988824, 146, '2020-02-18', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079610, 103, '2020-02-26', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079611, 103, '2020-02-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079612, 103, '2020-02-28', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079613, 103, '2020-02-29', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079614, 103, '2020-03-01', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079615, 103, '2020-03-02', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079616, 103, '2020-03-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079617, 103, '2020-03-04', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079618, 103, '2020-03-05', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079619, 103, '2020-03-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079620, 103, '2020-03-07', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079621, 103, '2020-03-08', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084175, 119, '2020-05-28', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084176, 119, '2020-05-29', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (988825, 146, '2020-02-19', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (988826, 146, '2020-02-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (988827, 146, '2020-02-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (988828, 146, '2020-02-22', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079622, 103, '2020-03-09', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079623, 103, '2020-03-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079624, 103, '2020-03-11', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079639, 103, '2020-03-26', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079640, 103, '2020-03-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079641, 103, '2020-03-28', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079642, 103, '2020-03-29', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079643, 103, '2020-03-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079644, 103, '2020-03-31', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079645, 103, '2020-04-01', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084197, 113, '2020-04-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084198, 113, '2020-04-25', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084199, 113, '2020-04-26', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084200, 113, '2020-04-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085392, 145, '2020-05-13', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (988829, 146, '2020-02-23', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (990930, 132, '2020-01-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (990931, 132, '2020-01-04', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (990932, 132, '2020-01-05', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (990933, 132, '2020-01-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079646, 103, '2020-04-02', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079647, 103, '2020-04-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079648, 103, '2020-04-04', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079649, 103, '2020-04-05', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079650, 103, '2020-04-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079651, 103, '2020-04-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079652, 103, '2020-04-08', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079653, 103, '2020-04-09', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079668, 121, '2020-02-28', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079669, 121, '2020-02-29', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079670, 121, '2020-03-01', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084204, 113, '2020-05-01', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084205, 113, '2020-05-02', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084206, 113, '2020-05-03', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (990934, 132, '2020-01-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (990935, 132, '2020-01-08', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (990936, 132, '2020-01-09', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079671, 121, '2020-03-02', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079672, 121, '2020-03-03', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079673, 121, '2020-03-04', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079674, 121, '2020-03-05', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079675, 121, '2020-03-06', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079676, 121, '2020-03-07', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079677, 121, '2020-03-08', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079678, 121, '2020-03-09', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079679, 121, '2020-03-10', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079680, 121, '2020-03-11', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079681, 121, '2020-03-12', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084225, 113, '2020-05-22', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084226, 113, '2020-05-23', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084227, 113, '2020-05-24', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085393, 145, '2020-05-14', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085394, 145, '2020-05-15', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (990937, 132, '2020-01-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (990938, 132, '2020-01-11', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (990939, 132, '2020-01-12', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (990940, 132, '2020-01-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079682, 121, '2020-03-13', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079683, 121, '2020-03-14', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079699, 121, '2020-03-30', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079700, 121, '2020-03-31', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079701, 121, '2020-04-01', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079702, 121, '2020-04-02', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079703, 121, '2020-04-03', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079704, 121, '2020-04-04', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079705, 121, '2020-04-05', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079706, 121, '2020-04-06', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084228, 113, '2020-05-25', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084229, 113, '2020-05-26', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084234, 113, '2020-05-31', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084235, 113, '2020-06-01', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (990941, 132, '2020-01-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (990942, 132, '2020-01-15', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (993082, 115, '2020-01-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079707, 121, '2020-04-07', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079708, 121, '2020-04-08', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079709, 121, '2020-04-09', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079710, 121, '2020-04-10', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079711, 121, '2020-04-11', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079712, 121, '2020-04-12', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079727, 125, '2020-03-02', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '03:20:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079728, 125, '2020-03-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '03:20:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079729, 125, '2020-03-04', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '03:20:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079730, 125, '2020-03-05', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '03:20:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079731, 125, '2020-03-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '03:20:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079732, 125, '2020-03-07', NULL, NULL, NULL, NULL, NULL, '00:00:00', '03:20:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '03:20:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084251, 147, '2020-04-22', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084256, 147, '2020-04-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085395, 145, '2020-05-16', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085396, 145, '2020-05-17', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (993083, 115, '2020-01-04', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (993084, 115, '2020-01-05', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (993085, 115, '2020-01-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (993086, 115, '2020-01-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079733, 125, '2020-03-08', NULL, NULL, NULL, NULL, NULL, '00:00:00', '03:20:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079734, 125, '2020-03-09', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '03:20:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079735, 125, '2020-03-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '03:20:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079736, 125, '2020-03-11', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '03:20:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079737, 125, '2020-03-12', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '03:20:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079738, 125, '2020-03-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '03:20:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079739, 125, '2020-03-14', NULL, NULL, NULL, NULL, NULL, '00:00:00', '03:20:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '03:20:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079740, 125, '2020-03-15', NULL, NULL, NULL, NULL, NULL, '00:00:00', '03:20:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079741, 125, '2020-03-16', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '03:20:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079742, 125, '2020-03-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '03:20:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079757, 125, '2020-04-01', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '03:20:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084257, 147, '2020-04-28', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084258, 147, '2020-04-29', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084259, 147, '2020-04-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085400, 145, '2020-05-21', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (993087, 115, '2020-01-08', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (993088, 115, '2020-01-09', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (993089, 115, '2020-01-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (993090, 115, '2020-01-11', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079758, 125, '2020-04-02', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '03:20:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079759, 125, '2020-04-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '03:20:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079760, 125, '2020-04-04', NULL, NULL, NULL, NULL, NULL, '00:00:00', '03:20:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '03:20:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079761, 125, '2020-04-05', NULL, NULL, NULL, NULL, NULL, '00:00:00', '03:20:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079762, 125, '2020-04-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '03:20:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079763, 125, '2020-04-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '03:20:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079764, 125, '2020-04-08', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '03:20:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079765, 125, '2020-04-09', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '03:20:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079766, 125, '2020-04-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '03:20:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079767, 125, '2020-04-11', NULL, NULL, NULL, NULL, NULL, '00:00:00', '03:20:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '03:20:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079768, 125, '2020-04-12', NULL, NULL, NULL, NULL, NULL, '00:00:00', '03:20:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084264, 147, '2020-05-05', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084279, 147, '2020-05-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084280, 147, '2020-05-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085401, 145, '2020-05-22', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (993091, 115, '2020-01-12', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (993092, 115, '2020-01-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (993093, 115, '2020-01-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (993094, 115, '2020-01-15', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079769, 125, '2020-04-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '03:20:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079770, 125, '2020-04-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '03:20:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079771, 125, '2020-04-15', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '03:20:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079786, 119, '2020-03-05', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079787, 119, '2020-03-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079788, 119, '2020-03-07', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079789, 119, '2020-03-08', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079790, 119, '2020-03-09', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079791, 119, '2020-03-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079792, 119, '2020-03-11', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079793, 119, '2020-03-12', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079794, 119, '2020-03-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084281, 147, '2020-05-22', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084282, 147, '2020-05-23', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (993095, 115, '2020-01-16', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (993096, 115, '2020-01-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (993097, 115, '2020-01-18', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (993098, 115, '2020-01-19', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079795, 119, '2020-03-14', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079796, 119, '2020-03-15', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079797, 119, '2020-03-16', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079798, 119, '2020-03-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079799, 119, '2020-03-18', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079800, 119, '2020-03-19', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079815, 119, '2020-04-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079816, 119, '2020-04-04', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079817, 119, '2020-04-05', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079818, 119, '2020-04-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079819, 119, '2020-04-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084287, 147, '2020-05-28', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084288, 147, '2020-05-29', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084289, 147, '2020-05-30', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084290, 147, '2020-05-31', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (993099, 115, '2020-01-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (993100, 115, '2020-01-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (993101, 115, '2020-01-22', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079820, 119, '2020-04-08', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079821, 119, '2020-04-09', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079822, 119, '2020-04-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079823, 119, '2020-04-11', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079824, 119, '2020-04-12', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079825, 119, '2020-04-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079826, 119, '2020-04-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079827, 119, '2020-04-15', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079828, 119, '2020-04-16', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079829, 119, '2020-04-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079844, 113, '2020-03-07', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084309, 131, '2020-04-24', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '04:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '04:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084310, 131, '2020-04-25', NULL, NULL, NULL, NULL, NULL, '00:00:00', '04:00:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084311, 131, '2020-04-26', NULL, NULL, NULL, NULL, NULL, '00:00:00', '04:00:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085403, 145, '2020-05-24', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085418, 145, '2020-06-08', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085423, 145, '2020-06-13', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (993102, 115, '2020-01-23', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (993103, 115, '2020-01-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (993104, 115, '2020-01-25', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (993105, 115, '2020-01-26', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079845, 113, '2020-03-08', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079846, 113, '2020-03-09', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079847, 113, '2020-03-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079848, 113, '2020-03-11', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079849, 113, '2020-03-12', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079850, 113, '2020-03-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079851, 113, '2020-03-14', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079852, 113, '2020-03-15', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079853, 113, '2020-03-16', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079854, 113, '2020-03-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079855, 113, '2020-03-18', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084312, 131, '2020-04-27', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '04:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '04:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084317, 131, '2020-05-02', NULL, NULL, NULL, NULL, NULL, '00:00:00', '04:00:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084318, 131, '2020-05-03', NULL, NULL, NULL, NULL, NULL, '00:00:00', '04:00:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084319, 131, '2020-05-04', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '04:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '04:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (993106, 115, '2020-01-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (993107, 115, '2020-01-28', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (993109, 115, '2020-01-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (993110, 115, '2020-01-31', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (993111, 115, '2020-02-01', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079856, 113, '2020-03-19', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079857, 113, '2020-03-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079858, 113, '2020-03-21', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079859, 113, '2020-03-22', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079874, 113, '2020-04-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079875, 113, '2020-04-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079876, 113, '2020-04-08', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079877, 113, '2020-04-09', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079878, 113, '2020-04-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079879, 113, '2020-04-11', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084320, 131, '2020-05-05', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '04:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '04:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084339, 131, '2020-05-24', NULL, NULL, NULL, NULL, NULL, '00:00:00', '04:00:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084340, 131, '2020-05-25', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '04:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '04:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085424, 145, '2020-06-14', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (993112, 115, '2020-02-02', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (993113, 115, '2020-02-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (993114, 115, '2020-02-04', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (993115, 115, '2020-02-05', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079880, 113, '2020-04-12', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079881, 113, '2020-04-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079882, 113, '2020-04-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079883, 113, '2020-04-15', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079884, 113, '2020-04-16', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079885, 113, '2020-04-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079886, 113, '2020-04-18', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079887, 113, '2020-04-19', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079888, 147, '2020-02-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079903, 147, '2020-03-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079904, 147, '2020-03-11', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084341, 131, '2020-05-26', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '04:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '04:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084342, 131, '2020-05-27', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '04:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '04:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085425, 148, '2020-04-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085426, 148, '2020-04-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (993116, 115, '2020-02-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (993117, 115, '2020-02-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (993118, 115, '2020-02-08', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (993119, 115, '2020-02-09', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079905, 147, '2020-03-12', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079906, 147, '2020-03-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079907, 147, '2020-03-14', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079908, 147, '2020-03-15', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079909, 147, '2020-03-16', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079910, 147, '2020-03-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079911, 147, '2020-03-18', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079912, 147, '2020-03-19', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079913, 147, '2020-03-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079914, 147, '2020-03-21', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079915, 147, '2020-03-22', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079916, 147, '2020-03-23', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084347, 131, '2020-06-01', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '04:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '04:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084348, 131, '2020-06-02', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '04:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '04:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085431, 148, '2020-04-26', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (993120, 115, '2020-02-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (993121, 115, '2020-02-11', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (993122, 115, '2020-02-12', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079917, 147, '2020-03-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079932, 147, '2020-04-08', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079933, 147, '2020-04-09', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079934, 147, '2020-04-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079935, 147, '2020-04-11', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079936, 147, '2020-04-12', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079937, 147, '2020-04-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079938, 147, '2020-04-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079939, 147, '2020-04-15', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079940, 147, '2020-04-16', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079941, 147, '2020-04-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084349, 131, '2020-06-03', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '04:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '04:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084350, 131, '2020-06-04', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '04:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '04:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084369, 104, '2020-04-28', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085432, 148, '2020-04-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (990928, 132, '2020-01-01', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (990929, 132, '2020-01-02', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079942, 147, '2020-04-18', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079943, 147, '2020-04-19', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079944, 131, '2020-02-24', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '04:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '04:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079945, 131, '2020-02-25', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '04:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '04:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079946, 131, '2020-02-26', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '04:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '04:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079961, 131, '2020-03-12', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '04:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '04:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079962, 131, '2020-03-13', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '04:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '04:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079963, 131, '2020-03-14', NULL, NULL, NULL, NULL, NULL, '00:00:00', '04:00:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079964, 131, '2020-03-15', NULL, NULL, NULL, NULL, NULL, '00:00:00', '04:00:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079965, 131, '2020-03-16', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '04:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '04:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079966, 131, '2020-03-17', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '04:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '04:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079967, 131, '2020-03-18', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '04:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '04:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084370, 104, '2020-04-29', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084371, 104, '2020-04-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084372, 104, '2020-05-01', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084373, 104, '2020-05-02', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:00:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (993123, 115, '2020-02-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (993124, 115, '2020-02-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (993125, 115, '2020-02-15', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (993126, 115, '2020-02-16', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079968, 131, '2020-03-19', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '04:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '04:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079969, 131, '2020-03-20', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '04:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '04:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079970, 131, '2020-03-21', NULL, NULL, NULL, NULL, NULL, '00:00:00', '04:00:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079971, 131, '2020-03-22', NULL, NULL, NULL, NULL, NULL, '00:00:00', '04:00:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079972, 131, '2020-03-23', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '04:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '04:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079973, 131, '2020-03-24', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '04:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '04:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079974, 131, '2020-03-25', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '04:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '04:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079975, 131, '2020-03-26', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '04:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '04:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079990, 131, '2020-04-10', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '04:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '04:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079991, 131, '2020-04-11', NULL, NULL, NULL, NULL, NULL, '00:00:00', '04:00:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079992, 131, '2020-04-12', NULL, NULL, NULL, NULL, NULL, '00:00:00', '04:00:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084378, 104, '2020-05-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084379, 104, '2020-05-08', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084380, 104, '2020-05-09', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:00:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084381, 104, '2020-05-10', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:00:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085447, 148, '2020-05-12', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (993127, 115, '2020-02-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (993128, 115, '2020-02-18', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (993129, 115, '2020-02-19', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079993, 131, '2020-04-13', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '04:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '04:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079994, 131, '2020-04-14', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '04:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '04:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079995, 131, '2020-04-15', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '04:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '04:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079996, 131, '2020-04-16', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '04:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '04:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079997, 131, '2020-04-17', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '04:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '04:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079998, 131, '2020-04-18', NULL, NULL, NULL, NULL, NULL, '00:00:00', '04:00:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079999, 131, '2020-04-19', NULL, NULL, NULL, NULL, NULL, '00:00:00', '04:00:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080000, 104, '2020-02-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080001, 104, '2020-02-25', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080002, 104, '2020-02-26', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080003, 104, '2020-02-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080004, 104, '2020-02-28', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084396, 104, '2020-05-25', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084397, 104, '2020-05-26', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (993130, 115, '2020-02-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (993131, 115, '2020-02-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (993132, 115, '2020-02-22', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (993133, 115, '2020-02-23', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080005, 104, '2020-02-29', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:00:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080021, 104, '2020-03-16', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080022, 104, '2020-03-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080023, 104, '2020-03-18', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080024, 104, '2020-03-19', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080025, 104, '2020-03-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080026, 104, '2020-03-21', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:00:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080027, 104, '2020-03-22', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:00:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080028, 104, '2020-03-23', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080029, 104, '2020-03-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080030, 104, '2020-03-25', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084404, 104, '2020-06-02', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084405, 104, '2020-06-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084410, 104, '2020-06-08', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085452, 148, '2020-05-17', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (995233, 114, '2020-01-02', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (995234, 114, '2020-01-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (995235, 114, '2020-01-04', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (995236, 114, '2020-01-05', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (995237, 114, '2020-01-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080031, 104, '2020-03-26', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080032, 104, '2020-03-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080033, 104, '2020-03-28', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:00:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080034, 104, '2020-03-29', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:00:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080049, 104, '2020-04-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080050, 104, '2020-04-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080051, 104, '2020-04-15', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080052, 104, '2020-04-16', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080053, 104, '2020-04-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080054, 104, '2020-04-18', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:00:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084425, 151, '2020-04-28', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084426, 151, '2020-04-29', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084427, 151, '2020-04-30', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (995238, 114, '2020-01-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (995239, 114, '2020-01-08', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (995240, 114, '2020-01-09', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080055, 104, '2020-04-19', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:00:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080056, 151, '2020-02-24', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080057, 151, '2020-02-25', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080058, 151, '2020-02-26', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080059, 151, '2020-02-27', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080060, 151, '2020-02-28', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080061, 151, '2020-02-29', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080062, 151, '2020-03-01', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080063, 151, '2020-03-02', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080078, 151, '2020-03-17', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080079, 151, '2020-03-18', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084432, 151, '2020-05-05', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084433, 151, '2020-05-06', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084434, 151, '2020-05-07', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085454, 148, '2020-05-19', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085459, 148, '2020-05-24', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (995241, 114, '2020-01-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (995242, 114, '2020-01-11', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (995243, 114, '2020-01-12', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (995244, 114, '2020-01-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080080, 151, '2020-03-19', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080081, 151, '2020-03-20', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080082, 151, '2020-03-21', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080083, 151, '2020-03-22', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080084, 151, '2020-03-23', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080085, 151, '2020-03-24', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080086, 151, '2020-03-25', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080087, 151, '2020-03-26', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080088, 151, '2020-03-27', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080089, 151, '2020-03-28', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080090, 151, '2020-03-29', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084435, 151, '2020-05-08', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084436, 151, '2020-05-09', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084453, 151, '2020-05-26', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085460, 148, '2020-05-25', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085461, 148, '2020-05-26', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (995245, 114, '2020-01-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (995246, 114, '2020-01-15', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (995247, 114, '2020-01-16', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080091, 151, '2020-03-30', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080092, 151, '2020-03-31', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080107, 151, '2020-04-15', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080108, 151, '2020-04-16', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080109, 151, '2020-04-17', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080110, 151, '2020-04-18', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080111, 151, '2020-04-19', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080112, 138, '2020-02-24', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080113, 138, '2020-02-25', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080114, 138, '2020-02-26', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080115, 138, '2020-02-27', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084454, 151, '2020-05-27', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084455, 151, '2020-05-28', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084456, 151, '2020-05-29', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (995248, 114, '2020-01-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (995249, 114, '2020-01-18', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (995250, 114, '2020-01-19', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (995251, 114, '2020-01-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (995252, 114, '2020-01-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080116, 138, '2020-02-28', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080117, 138, '2020-02-29', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080118, 138, '2020-03-01', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080119, 138, '2020-03-02', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080120, 138, '2020-03-03', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080121, 138, '2020-03-04', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080136, 138, '2020-03-19', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080137, 138, '2020-03-20', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080138, 138, '2020-03-21', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080139, 138, '2020-03-22', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080140, 138, '2020-03-23', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084461, 151, '2020-06-03', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084462, 151, '2020-06-04', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (995253, 114, '2020-01-22', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (995254, 114, '2020-01-23', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (995255, 114, '2020-01-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080141, 138, '2020-03-24', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080142, 138, '2020-03-25', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080143, 138, '2020-03-26', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080144, 138, '2020-03-27', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080145, 138, '2020-03-28', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080146, 138, '2020-03-29', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080147, 138, '2020-03-30', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080148, 138, '2020-03-31', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080149, 138, '2020-04-01', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080150, 138, '2020-04-02', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080165, 138, '2020-04-17', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084464, 151, '2020-06-06', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084488, 138, '2020-05-05', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084489, 138, '2020-05-06', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (995256, 114, '2020-01-25', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (995257, 114, '2020-01-26', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (995258, 114, '2020-01-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (995259, 114, '2020-01-28', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080166, 138, '2020-04-18', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080167, 138, '2020-04-19', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080168, 105, '2020-02-24', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080169, 105, '2020-02-25', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080170, 105, '2020-02-26', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080171, 105, '2020-02-27', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080172, 105, '2020-02-28', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080173, 105, '2020-02-29', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080174, 105, '2020-03-01', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080175, 105, '2020-03-02', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080176, 105, '2020-03-03', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084491, 138, '2020-05-08', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084492, 138, '2020-05-09', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084496, 138, '2020-05-13', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (995260, 114, '2020-01-29', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (995261, 114, '2020-01-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (995262, 114, '2020-01-31', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (995263, 114, '2020-02-01', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080177, 105, '2020-03-04', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080178, 105, '2020-03-05', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080179, 105, '2020-03-06', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080180, 105, '2020-03-07', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080195, 105, '2020-03-22', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080196, 105, '2020-03-23', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080197, 105, '2020-03-24', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080198, 105, '2020-03-25', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080199, 105, '2020-03-26', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080200, 105, '2020-03-27', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080201, 105, '2020-03-28', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080202, 105, '2020-03-29', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084498, 138, '2020-05-15', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084499, 138, '2020-05-16', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085476, 148, '2020-06-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (995264, 114, '2020-02-02', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (995265, 114, '2020-02-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (995266, 114, '2020-02-04', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (995268, 114, '2020-02-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080203, 105, '2020-03-30', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080204, 105, '2020-03-31', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080205, 105, '2020-04-01', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080206, 105, '2020-04-02', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080207, 105, '2020-04-03', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080208, 105, '2020-04-04', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080209, 105, '2020-04-05', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080210, 105, '2020-04-06', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080225, 134, '2020-02-25', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080226, 134, '2020-02-26', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084518, 138, '2020-06-04', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084519, 138, '2020-06-05', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084520, 138, '2020-06-06', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084521, 138, '2020-06-07', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085481, 130, '2020-04-20', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (995269, 114, '2020-02-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (995270, 114, '2020-02-08', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (995271, 114, '2020-02-09', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (995272, 114, '2020-02-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (995273, 114, '2020-02-11', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080227, 134, '2020-02-27', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080228, 134, '2020-02-28', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080229, 134, '2020-02-29', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080230, 134, '2020-03-01', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080231, 134, '2020-03-02', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080232, 134, '2020-03-03', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080233, 134, '2020-03-04', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080234, 134, '2020-03-05', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080235, 134, '2020-03-06', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080236, 134, '2020-03-07', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084525, 138, '2020-06-11', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084526, 138, '2020-06-12', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084527, 138, '2020-06-13', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (995274, 114, '2020-02-12', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (995275, 114, '2020-02-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (995276, 114, '2020-02-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (995279, 114, '2020-02-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080237, 134, '2020-03-08', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080238, 134, '2020-03-09', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080239, 134, '2020-03-10', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080254, 134, '2020-03-25', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080255, 134, '2020-03-26', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080256, 134, '2020-03-27', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080257, 134, '2020-03-28', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080258, 134, '2020-03-29', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080259, 134, '2020-03-30', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080260, 134, '2020-03-31', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080261, 134, '2020-04-01', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084529, 105, '2020-04-20', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084548, 105, '2020-05-09', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084549, 105, '2020-05-10', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085482, 130, '2020-04-21', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (995280, 114, '2020-02-18', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (995281, 114, '2020-02-19', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (995282, 114, '2020-02-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080262, 134, '2020-04-02', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080263, 134, '2020-04-03', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080264, 134, '2020-04-04', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080265, 134, '2020-04-05', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080266, 134, '2020-04-06', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080267, 134, '2020-04-07', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080268, 134, '2020-04-08', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080283, 144, '2020-02-27', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080284, 144, '2020-02-28', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080285, 144, '2020-02-29', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080286, 144, '2020-03-01', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084550, 105, '2020-05-11', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084551, 105, '2020-05-12', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084556, 105, '2020-05-17', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084557, 105, '2020-05-18', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085483, 130, '2020-04-22', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (995283, 114, '2020-02-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (995284, 114, '2020-02-22', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (995285, 114, '2020-02-23', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (997390, 112, '2020-01-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080287, 144, '2020-03-02', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080288, 144, '2020-03-03', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080289, 144, '2020-03-04', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080290, 144, '2020-03-05', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080291, 144, '2020-03-06', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080292, 144, '2020-03-07', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080293, 144, '2020-03-08', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080294, 144, '2020-03-09', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080295, 144, '2020-03-10', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080296, 144, '2020-03-11', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080297, 144, '2020-03-12', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084558, 105, '2020-05-19', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084559, 105, '2020-05-20', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084578, 105, '2020-06-08', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (997391, 112, '2020-01-08', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (997392, 112, '2020-01-09', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (997393, 112, '2020-01-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (997394, 112, '2020-01-11', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080312, 144, '2020-03-27', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080313, 144, '2020-03-28', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080314, 144, '2020-03-29', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080315, 144, '2020-03-30', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080316, 144, '2020-03-31', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080317, 102, '2020-02-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080318, 102, '2020-02-25', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080319, 102, '2020-02-26', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080320, 102, '2020-02-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080321, 102, '2020-02-28', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080322, 102, '2020-02-29', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084579, 105, '2020-06-09', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084580, 105, '2020-06-10', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085488, 130, '2020-04-27', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085489, 130, '2020-04-28', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (997395, 112, '2020-01-12', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (997396, 112, '2020-01-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (997397, 112, '2020-01-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (997398, 112, '2020-01-15', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080323, 102, '2020-03-01', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080324, 102, '2020-03-02', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080325, 102, '2020-03-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080326, 102, '2020-03-04', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080327, 102, '2020-03-05', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080342, 102, '2020-03-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080343, 102, '2020-03-21', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080344, 102, '2020-03-22', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080345, 102, '2020-03-23', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080346, 102, '2020-03-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080347, 102, '2020-03-25', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080348, 102, '2020-03-26', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084581, 105, '2020-06-11', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084586, 134, '2020-04-21', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (997399, 112, '2020-01-16', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (997400, 112, '2020-01-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (997401, 112, '2020-01-18', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (997402, 112, '2020-01-19', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080349, 102, '2020-03-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080350, 102, '2020-03-28', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080351, 102, '2020-03-29', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080352, 102, '2020-03-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080353, 102, '2020-03-31', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080354, 102, '2020-04-01', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080355, 102, '2020-04-02', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080356, 102, '2020-04-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080371, 102, '2020-04-18', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080372, 102, '2020-04-19', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084587, 134, '2020-04-22', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084588, 134, '2020-04-23', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084589, 134, '2020-04-24', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084590, 134, '2020-04-25', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (997403, 112, '2020-01-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (997404, 112, '2020-01-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (997405, 112, '2020-01-22', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (997413, 112, '2020-01-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080373, 109, '2020-02-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080374, 109, '2020-02-25', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080375, 109, '2020-02-26', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080376, 109, '2020-02-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080377, 109, '2020-02-28', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080378, 109, '2020-02-29', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080379, 109, '2020-03-01', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080380, 109, '2020-03-02', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080381, 109, '2020-03-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080382, 109, '2020-03-04', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080383, 109, '2020-03-05', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084611, 134, '2020-05-16', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084612, 134, '2020-05-17', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085490, 130, '2020-04-29', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085505, 130, '2020-05-14', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085510, 130, '2020-05-19', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (997414, 112, '2020-01-31', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (997415, 112, '2020-02-01', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (997416, 112, '2020-02-02', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (997417, 112, '2020-02-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080384, 109, '2020-03-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080385, 109, '2020-03-07', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080386, 109, '2020-03-08', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080401, 109, '2020-03-23', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080402, 109, '2020-03-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080403, 109, '2020-03-25', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080404, 109, '2020-03-26', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080405, 109, '2020-03-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080406, 109, '2020-03-28', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080407, 109, '2020-03-29', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080408, 109, '2020-03-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084613, 134, '2020-05-18', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084618, 134, '2020-05-23', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084619, 134, '2020-05-24', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (993134, 115, '2019-12-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (993135, 115, '2019-12-31', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (997418, 112, '2020-02-04', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080409, 109, '2020-03-31', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080410, 109, '2020-04-01', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080411, 109, '2020-04-02', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080412, 109, '2020-04-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080413, 109, '2020-04-04', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080414, 109, '2020-04-05', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080415, 109, '2020-04-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080430, 118, '2020-02-25', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080431, 118, '2020-02-26', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080432, 118, '2020-02-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080433, 118, '2020-02-28', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084640, 134, '2020-06-14', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084641, 102, '2020-04-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084642, 102, '2020-04-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085511, 130, '2020-05-20', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085512, 130, '2020-05-21', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (997419, 112, '2020-02-05', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (997420, 112, '2020-02-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (997421, 112, '2020-02-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (997422, 112, '2020-02-08', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080434, 118, '2020-02-29', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080435, 118, '2020-03-01', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080436, 118, '2020-03-02', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080437, 118, '2020-03-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080438, 118, '2020-03-04', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080439, 118, '2020-03-05', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080440, 118, '2020-03-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080441, 118, '2020-03-07', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080442, 118, '2020-03-08', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080443, 118, '2020-03-09', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080444, 118, '2020-03-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080459, 118, '2020-03-25', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084643, 102, '2020-04-22', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084648, 102, '2020-04-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (997423, 112, '2020-02-09', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (997424, 112, '2020-02-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (997425, 112, '2020-02-11', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (997426, 112, '2020-02-12', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080460, 118, '2020-03-26', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080461, 118, '2020-03-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080462, 118, '2020-03-28', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080463, 118, '2020-03-29', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080464, 118, '2020-03-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080465, 118, '2020-03-31', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080466, 118, '2020-04-01', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080467, 118, '2020-04-02', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080468, 118, '2020-04-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080469, 118, '2020-04-04', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080470, 118, '2020-04-05', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084663, 102, '2020-05-12', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084664, 102, '2020-05-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084665, 102, '2020-05-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085513, 130, '2020-05-22', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (997427, 112, '2020-02-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (997428, 112, '2020-02-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (997429, 112, '2020-02-15', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (997430, 112, '2020-02-16', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080471, 118, '2020-04-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080472, 118, '2020-04-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080473, 118, '2020-04-08', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080488, 133, '2020-02-27', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080489, 133, '2020-02-28', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080490, 133, '2020-02-29', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080491, 133, '2020-03-01', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080492, 133, '2020-03-02', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080493, 133, '2020-03-03', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080494, 133, '2020-03-04', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084669, 102, '2020-05-18', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084670, 102, '2020-05-19', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084671, 102, '2020-05-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085515, 130, '2020-05-24', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085516, 130, '2020-05-25', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (993080, 115, '2020-01-01', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (993081, 115, '2020-01-02', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080495, 133, '2020-03-05', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080496, 133, '2020-03-06', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080497, 133, '2020-03-07', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080498, 133, '2020-03-08', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080499, 133, '2020-03-09', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080500, 133, '2020-03-10', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080501, 133, '2020-03-11', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080502, 133, '2020-03-12', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080517, 133, '2020-03-27', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080518, 133, '2020-03-28', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080519, 133, '2020-03-29', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080520, 133, '2020-03-30', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080521, 133, '2020-03-31', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084672, 102, '2020-05-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084677, 102, '2020-05-26', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084692, 102, '2020-06-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (993108, 115, '2020-01-29', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080522, 133, '2020-04-01', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080523, 133, '2020-04-02', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080524, 133, '2020-04-03', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080525, 133, '2020-04-04', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080526, 133, '2020-04-05', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080527, 133, '2020-04-06', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080528, 133, '2020-04-07', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080529, 133, '2020-04-08', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080530, 133, '2020-04-09', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080531, 133, '2020-04-10', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080546, 111, '2020-02-29', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080547, 111, '2020-03-01', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080548, 111, '2020-03-02', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084693, 102, '2020-06-11', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084694, 102, '2020-06-12', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084699, 109, '2020-04-22', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085535, 130, '2020-06-13', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085536, 130, '2020-06-14', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085537, 129, '2020-04-20', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085543, 129, '2020-04-26', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (997431, 112, '2020-02-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (997432, 112, '2020-02-18', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (997433, 112, '2020-02-19', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080549, 111, '2020-03-03', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080550, 111, '2020-03-04', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080551, 111, '2020-03-05', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080552, 111, '2020-03-06', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080553, 111, '2020-03-07', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080554, 111, '2020-03-08', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080555, 111, '2020-03-09', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080556, 111, '2020-03-10', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080557, 111, '2020-03-11', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080558, 111, '2020-03-12', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080559, 111, '2020-03-13', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084700, 109, '2020-04-23', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084701, 109, '2020-04-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084702, 109, '2020-04-25', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084703, 109, '2020-04-26', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (997434, 112, '2020-02-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (997435, 112, '2020-02-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080560, 111, '2020-03-14', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080561, 111, '2020-03-15', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080576, 111, '2020-03-30', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080577, 111, '2020-03-31', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080578, 111, '2020-04-01', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080579, 111, '2020-04-02', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080580, 111, '2020-04-03', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080581, 111, '2020-04-04', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080582, 111, '2020-04-05', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080583, 111, '2020-04-06', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080584, 111, '2020-04-07', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080585, 111, '2020-04-08', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084722, 109, '2020-05-15', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084723, 109, '2020-05-16', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084724, 109, '2020-05-17', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084725, 109, '2020-05-18', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085544, 129, '2020-04-27', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (997436, 112, '2020-02-22', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (997437, 112, '2020-02-23', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080586, 111, '2020-04-09', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080587, 111, '2020-04-10', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080588, 111, '2020-04-11', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080589, 111, '2020-04-12', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080590, 111, '2020-04-13', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080605, 128, '2020-03-03', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080606, 128, '2020-03-04', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080607, 128, '2020-03-05', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080608, 128, '2020-03-06', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080609, 128, '2020-03-07', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080610, 128, '2020-03-08', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080611, 128, '2020-03-09', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080612, 128, '2020-03-10', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084729, 109, '2020-05-22', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084730, 109, '2020-05-23', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084731, 109, '2020-05-24', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (999560, 108, '2020-01-25', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (999561, 108, '2020-01-26', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (999562, 108, '2020-01-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080613, 128, '2020-03-11', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080614, 128, '2020-03-12', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080615, 128, '2020-03-13', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080616, 128, '2020-03-14', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080617, 128, '2020-03-15', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080618, 128, '2020-03-16', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080619, 128, '2020-03-17', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080634, 128, '2020-04-01', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080635, 128, '2020-04-02', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080636, 128, '2020-04-03', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080637, 128, '2020-04-04', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080638, 128, '2020-04-05', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084752, 109, '2020-06-14', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084753, 118, '2020-04-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084754, 118, '2020-04-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084755, 118, '2020-04-22', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (999563, 108, '2020-01-28', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (999564, 108, '2020-01-29', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080639, 128, '2020-04-06', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080640, 128, '2020-04-07', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080641, 128, '2020-04-08', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080642, 128, '2020-04-09', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080643, 128, '2020-04-10', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080644, 128, '2020-04-11', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080645, 128, '2020-04-12', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080646, 128, '2020-04-13', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080647, 128, '2020-04-14', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080648, 128, '2020-04-15', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080663, 142, '2020-03-05', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080664, 142, '2020-03-06', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084760, 118, '2020-04-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084761, 118, '2020-04-28', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084762, 118, '2020-04-29', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085545, 129, '2020-04-28', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (999565, 108, '2020-01-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (999566, 108, '2020-01-31', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (999567, 108, '2020-02-01', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080665, 142, '2020-03-07', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080666, 142, '2020-03-08', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080667, 142, '2020-03-09', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080668, 142, '2020-03-10', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080669, 142, '2020-03-11', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080670, 142, '2020-03-12', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080671, 142, '2020-03-13', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080672, 142, '2020-03-14', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080673, 142, '2020-03-15', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080674, 142, '2020-03-16', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080675, 142, '2020-03-17', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080676, 142, '2020-03-18', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084763, 118, '2020-04-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084782, 118, '2020-05-19', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084783, 118, '2020-05-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085546, 129, '2020-04-29', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (999568, 108, '2020-02-02', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (999569, 108, '2020-02-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080677, 142, '2020-03-19', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080692, 142, '2020-04-03', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080693, 142, '2020-04-04', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080694, 142, '2020-04-05', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080695, 142, '2020-04-06', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080696, 142, '2020-04-07', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080697, 142, '2020-04-08', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080698, 142, '2020-04-09', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080699, 142, '2020-04-10', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080700, 142, '2020-04-11', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080701, 142, '2020-04-12', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080702, 142, '2020-04-13', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084784, 118, '2020-05-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084785, 118, '2020-05-22', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084786, 118, '2020-05-23', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084787, 118, '2020-05-24', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085566, 129, '2020-05-19', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085567, 129, '2020-05-20', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (999570, 108, '2020-02-04', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (999571, 108, '2020-02-05', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080703, 142, '2020-04-14', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080704, 142, '2020-04-15', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080705, 142, '2020-04-16', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080706, 142, '2020-04-17', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080721, 136, '2020-03-07', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080722, 136, '2020-03-08', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080723, 136, '2020-03-09', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080724, 136, '2020-03-10', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080725, 136, '2020-03-11', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080726, 136, '2020-03-12', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080727, 136, '2020-03-13', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080728, 136, '2020-03-14', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080729, 136, '2020-03-15', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084792, 118, '2020-05-29', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084793, 118, '2020-05-30', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084794, 118, '2020-05-31', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085568, 129, '2020-05-21', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085569, 129, '2020-05-22', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (999572, 108, '2020-02-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (999573, 108, '2020-02-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (999575, 108, '2020-02-09', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080730, 136, '2020-03-16', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080731, 136, '2020-03-17', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080732, 136, '2020-03-18', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080733, 136, '2020-03-19', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080734, 136, '2020-03-20', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080735, 136, '2020-03-21', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080736, 136, '2020-03-22', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080751, 136, '2020-04-06', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080752, 136, '2020-04-07', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080753, 136, '2020-04-08', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080754, 136, '2020-04-09', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084809, 133, '2020-04-20', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084813, 133, '2020-04-24', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084814, 133, '2020-04-25', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084815, 133, '2020-04-26', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (999581, 108, '2020-02-15', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1001724, 135, '2020-02-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1001725, 135, '2020-02-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080755, 136, '2020-04-10', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080756, 136, '2020-04-11', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080757, 136, '2020-04-12', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080758, 136, '2020-04-13', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080759, 136, '2020-04-14', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080760, 136, '2020-04-15', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080761, 136, '2020-04-16', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080762, 136, '2020-04-17', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080763, 136, '2020-04-18', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080764, 136, '2020-04-19', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080765, 139, '2020-02-24', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080780, 139, '2020-03-10', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084816, 133, '2020-04-27', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084817, 133, '2020-04-28', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084822, 133, '2020-05-03', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085574, 129, '2020-05-27', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1001726, 135, '2020-02-08', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1001727, 135, '2020-02-09', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080781, 139, '2020-03-11', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080782, 139, '2020-03-12', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080783, 139, '2020-03-13', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080784, 139, '2020-03-14', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080785, 139, '2020-03-15', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080786, 139, '2020-03-16', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080787, 139, '2020-03-17', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080788, 139, '2020-03-18', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080789, 139, '2020-03-19', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080790, 139, '2020-03-20', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080791, 139, '2020-03-21', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080792, 139, '2020-03-22', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080793, 139, '2020-03-23', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084823, 133, '2020-05-04', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084838, 133, '2020-05-19', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084839, 133, '2020-05-20', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085576, 129, '2020-05-29', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085577, 129, '2020-05-30', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1001728, 135, '2020-02-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1001729, 135, '2020-02-11', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080794, 139, '2020-03-24', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080809, 139, '2020-04-08', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080810, 139, '2020-04-09', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080811, 139, '2020-04-10', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080812, 139, '2020-04-11', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080813, 139, '2020-04-12', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080814, 139, '2020-04-13', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080815, 139, '2020-04-14', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080816, 139, '2020-04-15', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080817, 139, '2020-04-16', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080818, 139, '2020-04-17', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080819, 139, '2020-04-18', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084844, 133, '2020-05-25', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084845, 133, '2020-05-26', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084846, 133, '2020-05-27', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085596, 143, '2020-04-23', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1001730, 135, '2020-02-12', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1001731, 135, '2020-02-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080820, 139, '2020-04-19', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080821, 141, '2020-02-24', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080822, 141, '2020-02-25', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080823, 141, '2020-02-26', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080838, 141, '2020-03-12', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080839, 141, '2020-03-13', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080840, 141, '2020-03-14', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080841, 141, '2020-03-15', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080842, 141, '2020-03-16', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080843, 141, '2020-03-17', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080844, 141, '2020-03-18', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080845, 141, '2020-03-19', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084847, 133, '2020-05-28', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084852, 133, '2020-06-02', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084867, 111, '2020-04-22', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1001732, 135, '2020-02-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1001733, 135, '2020-02-15', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1001734, 135, '2020-02-16', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080846, 141, '2020-03-20', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080847, 141, '2020-03-21', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080848, 141, '2020-03-22', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080849, 141, '2020-03-23', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080850, 141, '2020-03-24', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080851, 141, '2020-03-25', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080852, 141, '2020-03-26', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080867, 141, '2020-04-10', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080868, 141, '2020-04-11', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080869, 141, '2020-04-12', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080870, 141, '2020-04-13', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084869, 111, '2020-04-24', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084874, 111, '2020-04-29', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084875, 111, '2020-04-30', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084876, 111, '2020-05-01', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085597, 143, '2020-04-24', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1001735, 135, '2020-02-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1001736, 135, '2020-02-18', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080871, 141, '2020-04-14', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080872, 141, '2020-04-15', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080873, 141, '2020-04-16', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080874, 141, '2020-04-17', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080875, 141, '2020-04-18', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080876, 141, '2020-04-19', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080877, 122, '2020-02-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080878, 122, '2020-02-25', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080879, 122, '2020-02-26', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080880, 122, '2020-02-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080881, 122, '2020-02-28', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080882, 122, '2020-02-29', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080890, 122, '2020-03-08', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084877, 111, '2020-05-02', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084878, 111, '2020-05-03', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084897, 111, '2020-05-22', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085600, 143, '2020-04-27', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085605, 143, '2020-05-02', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1001737, 135, '2020-02-19', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1001738, 135, '2020-02-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080891, 122, '2020-03-09', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080892, 122, '2020-03-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080893, 122, '2020-03-11', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080894, 122, '2020-03-12', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080895, 122, '2020-03-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080896, 122, '2020-03-14', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080899, 122, '2020-03-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080900, 122, '2020-03-18', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080915, 122, '2020-04-02', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080916, 122, '2020-04-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080917, 122, '2020-04-04', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084898, 111, '2020-05-23', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084899, 111, '2020-05-24', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084900, 111, '2020-05-25', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084905, 111, '2020-05-30', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084906, 111, '2020-05-31', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085606, 143, '2020-05-03', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1001739, 135, '2020-02-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1001740, 135, '2020-02-22', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080918, 122, '2020-04-05', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080919, 122, '2020-04-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080920, 122, '2020-04-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080921, 122, '2020-04-08', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080922, 122, '2020-04-09', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080923, 122, '2020-04-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080924, 122, '2020-04-11', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080925, 122, '2020-04-12', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080926, 122, '2020-04-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080927, 122, '2020-04-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080928, 122, '2020-04-15', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080929, 122, '2020-04-16', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084907, 111, '2020-06-01', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084908, 111, '2020-06-02', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084927, 128, '2020-04-26', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084928, 128, '2020-04-27', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085607, 143, '2020-05-04', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1001741, 135, '2020-02-23', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1003859, 127, '2020-01-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1003860, 127, '2020-01-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080944, 106, '2020-03-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '04:10:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080945, 106, '2020-03-07', NULL, NULL, NULL, NULL, NULL, '00:00:00', '04:10:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080946, 106, '2020-03-08', NULL, NULL, NULL, NULL, NULL, '00:00:00', '04:10:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080947, 106, '2020-03-09', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '04:10:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '04:10:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080948, 106, '2020-03-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '04:10:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '04:10:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080949, 106, '2020-03-11', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '04:10:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '04:10:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080950, 106, '2020-03-12', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '04:10:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '04:10:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080951, 106, '2020-03-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '04:10:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080952, 106, '2020-03-14', NULL, NULL, NULL, NULL, NULL, '00:00:00', '04:10:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080953, 106, '2020-03-15', NULL, NULL, NULL, NULL, NULL, '00:00:00', '04:10:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080954, 106, '2020-03-16', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '04:10:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '04:10:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080955, 106, '2020-03-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '04:10:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '04:10:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084929, 128, '2020-04-28', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084930, 128, '2020-04-29', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084935, 128, '2020-05-04', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085628, 143, '2020-05-25', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1003861, 127, '2020-01-22', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1003862, 127, '2020-01-23', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080956, 106, '2020-03-18', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '04:10:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '04:10:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080957, 106, '2020-03-19', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '04:10:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '04:10:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080958, 106, '2020-03-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '04:10:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080959, 106, '2020-03-21', NULL, NULL, NULL, NULL, NULL, '00:00:00', '04:10:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080974, 106, '2020-04-05', NULL, NULL, NULL, NULL, NULL, '00:00:00', '04:10:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080975, 106, '2020-04-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '04:10:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '04:10:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080976, 106, '2020-04-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '04:10:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '04:10:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080977, 106, '2020-04-08', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '04:10:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '04:10:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080978, 106, '2020-04-09', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '04:10:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '04:10:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080979, 106, '2020-04-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '04:10:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080980, 106, '2020-04-11', NULL, NULL, NULL, NULL, NULL, '00:00:00', '04:10:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080981, 106, '2020-04-12', NULL, NULL, NULL, NULL, NULL, '00:00:00', '04:10:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080982, 106, '2020-04-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '04:10:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '04:10:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084936, 128, '2020-05-05', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084937, 128, '2020-05-06', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084938, 128, '2020-05-07', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (995286, 114, '2019-12-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (995287, 114, '2019-12-31', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080983, 106, '2020-04-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '04:10:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '04:10:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080984, 106, '2020-04-15', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '04:10:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '04:10:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080985, 106, '2020-04-16', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '04:10:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '04:10:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080986, 106, '2020-04-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '04:10:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080987, 106, '2020-04-18', NULL, NULL, NULL, NULL, NULL, '00:00:00', '04:10:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080988, 106, '2020-04-19', NULL, NULL, NULL, NULL, NULL, '00:00:00', '04:10:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080989, 110, '2020-02-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081004, 110, '2020-03-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081005, 110, '2020-03-11', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081006, 110, '2020-03-12', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081007, 110, '2020-03-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084958, 128, '2020-05-27', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084959, 128, '2020-05-28', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084960, 128, '2020-05-29', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084961, 128, '2020-05-30', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085629, 143, '2020-05-26', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1003863, 127, '2020-01-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1003864, 127, '2020-01-25', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081008, 110, '2020-03-14', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081009, 110, '2020-03-15', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081010, 110, '2020-03-16', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081011, 110, '2020-03-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081012, 110, '2020-03-18', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081013, 110, '2020-03-19', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081014, 110, '2020-03-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081015, 110, '2020-03-21', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081016, 110, '2020-03-22', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081017, 110, '2020-03-23', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081018, 110, '2020-03-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081033, 110, '2020-04-08', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081034, 110, '2020-04-09', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084966, 128, '2020-06-04', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084967, 128, '2020-06-05', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084968, 128, '2020-06-06', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085630, 143, '2020-05-27', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1003865, 127, '2020-01-26', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1003866, 127, '2020-01-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1003867, 127, '2020-01-28', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081035, 110, '2020-04-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081036, 110, '2020-04-11', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081037, 110, '2020-04-12', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081038, 110, '2020-04-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081039, 110, '2020-04-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081040, 110, '2020-04-15', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081041, 110, '2020-04-16', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081042, 110, '2020-04-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081043, 110, '2020-04-18', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081044, 110, '2020-04-19', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081045, 145, '2020-02-24', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084969, 128, '2020-06-07', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084987, 142, '2020-04-30', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084988, 142, '2020-05-01', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084989, 142, '2020-05-02', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084990, 142, '2020-05-03', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1003868, 127, '2020-01-29', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1003869, 127, '2020-01-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081046, 145, '2020-02-25', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081047, 145, '2020-02-26', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081062, 145, '2020-03-12', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081063, 145, '2020-03-13', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081064, 145, '2020-03-14', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081065, 145, '2020-03-15', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081066, 145, '2020-03-16', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081067, 145, '2020-03-17', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081068, 145, '2020-03-18', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081069, 145, '2020-03-19', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081070, 145, '2020-03-20', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081071, 145, '2020-03-21', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081072, 145, '2020-03-22', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084991, 142, '2020-05-04', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084992, 142, '2020-05-05', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084997, 142, '2020-05-10', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1003870, 127, '2020-01-31', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1003871, 127, '2020-02-01', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081073, 145, '2020-03-23', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081074, 145, '2020-03-24', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081075, 145, '2020-03-25', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081076, 145, '2020-03-26', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081091, 145, '2020-04-10', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081092, 145, '2020-04-11', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081093, 145, '2020-04-12', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081094, 145, '2020-04-13', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081095, 145, '2020-04-14', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081096, 145, '2020-04-15', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081097, 145, '2020-04-16', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084998, 142, '2020-05-11', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085013, 142, '2020-05-26', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085014, 142, '2020-05-27', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085019, 142, '2020-06-01', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085636, 143, '2020-06-02', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085651, 146, '2020-06-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (995232, 114, '2020-01-01', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081098, 145, '2020-04-17', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081099, 145, '2020-04-18', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081100, 145, '2020-04-19', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081101, 148, '2020-02-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081102, 148, '2020-02-25', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081103, 148, '2020-02-26', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081104, 148, '2020-02-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081105, 148, '2020-02-28', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081120, 148, '2020-03-14', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081121, 148, '2020-03-15', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081122, 148, '2020-03-16', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081123, 148, '2020-03-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081124, 148, '2020-03-18', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081125, 148, '2020-03-19', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085020, 142, '2020-06-02', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085021, 142, '2020-06-03', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085022, 142, '2020-06-04', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (995277, 114, '2020-02-15', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (995278, 114, '2020-02-16', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081126, 148, '2020-03-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081127, 148, '2020-03-21', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081128, 148, '2020-03-22', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081129, 148, '2020-03-23', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081130, 148, '2020-03-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081131, 148, '2020-03-25', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081132, 148, '2020-03-26', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081133, 148, '2020-03-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081134, 148, '2020-03-28', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081135, 148, '2020-03-29', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081150, 148, '2020-04-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081151, 148, '2020-04-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085027, 142, '2020-06-09', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085042, 136, '2020-04-29', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085043, 136, '2020-04-30', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085044, 136, '2020-05-01', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085657, 146, '2020-06-23', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1003872, 127, '2020-02-02', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1003873, 127, '2020-02-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1003893, 127, '2020-02-23', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081152, 148, '2020-04-15', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081153, 148, '2020-04-16', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081154, 148, '2020-04-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081155, 148, '2020-04-18', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081156, 148, '2020-04-19', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081157, 130, '2020-02-24', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081158, 130, '2020-02-25', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081159, 130, '2020-02-26', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081160, 130, '2020-02-27', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081161, 130, '2020-02-28', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081162, 130, '2020-02-29', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081163, 130, '2020-03-01', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085049, 136, '2020-05-06', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085050, 136, '2020-05-07', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085051, 136, '2020-05-08', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085658, 146, '2020-06-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1006019, 149, '2020-01-28', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1006020, 149, '2020-01-29', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1006027, 149, '2020-02-05', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1006028, 149, '2020-02-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1006029, 149, '2020-02-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081164, 130, '2020-03-02', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081179, 130, '2020-03-17', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081180, 130, '2020-03-18', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081181, 130, '2020-03-19', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081182, 130, '2020-03-20', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081183, 130, '2020-03-21', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081184, 130, '2020-03-22', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081185, 130, '2020-03-23', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081186, 130, '2020-03-24', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085052, 136, '2020-05-09', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085070, 136, '2020-05-27', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085071, 136, '2020-05-28', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1006030, 149, '2020-02-08', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1006031, 149, '2020-02-09', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1006032, 149, '2020-02-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1006033, 149, '2020-02-11', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1006034, 149, '2020-02-12', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1006035, 149, '2020-02-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081187, 130, '2020-03-25', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081188, 130, '2020-03-26', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081189, 130, '2020-03-27', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081190, 130, '2020-03-28', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081191, 130, '2020-03-29', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081192, 130, '2020-03-30', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081193, 130, '2020-03-31', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081208, 130, '2020-04-15', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081209, 130, '2020-04-16', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085073, 136, '2020-05-30', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085074, 136, '2020-05-31', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085659, 146, '2020-06-25', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085660, 146, '2020-06-26', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085665, 146, '2020-07-01', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1006036, 149, '2020-02-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1006037, 149, '2020-02-15', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1006038, 149, '2020-02-16', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1006039, 149, '2020-02-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1006040, 149, '2020-02-18', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1006041, 149, '2020-02-19', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081210, 130, '2020-04-17', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081211, 130, '2020-04-18', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081212, 130, '2020-04-19', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081213, 129, '2020-02-24', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081214, 129, '2020-02-25', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081215, 129, '2020-02-26', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081216, 129, '2020-02-27', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081217, 129, '2020-02-28', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081218, 129, '2020-02-29', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081219, 129, '2020-03-01', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085079, 136, '2020-06-05', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085080, 136, '2020-06-06', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085081, 136, '2020-06-07', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1006042, 149, '2020-02-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1006043, 149, '2020-02-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1006044, 149, '2020-02-22', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1006045, 149, '2020-02-23', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1008163, 103, '2020-01-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1008164, 103, '2020-01-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081220, 129, '2020-03-02', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081221, 129, '2020-03-03', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081222, 129, '2020-03-04', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081237, 129, '2020-03-19', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081238, 129, '2020-03-20', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081239, 129, '2020-03-21', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081240, 129, '2020-03-22', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081241, 129, '2020-03-23', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081242, 129, '2020-03-24', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085082, 136, '2020-06-08', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085101, 139, '2020-05-02', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085102, 139, '2020-05-03', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085680, 146, '2020-07-16', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085681, 146, '2020-07-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1008165, 103, '2020-01-22', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1008166, 103, '2020-01-23', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1008167, 103, '2020-01-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1008168, 103, '2020-01-25', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1008169, 103, '2020-01-26', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1008171, 103, '2020-01-28', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1008172, 103, '2020-01-29', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081243, 129, '2020-03-25', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081244, 129, '2020-03-26', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081245, 129, '2020-03-27', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081246, 129, '2020-03-28', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081247, 129, '2020-03-29', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081248, 129, '2020-03-30', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081249, 129, '2020-03-31', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081250, 129, '2020-04-01', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085103, 139, '2020-05-04', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085104, 139, '2020-05-05', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085109, 139, '2020-05-10', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1008174, 103, '2020-01-31', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1008193, 103, '2020-02-19', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1008194, 103, '2020-02-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1008195, 103, '2020-02-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1008196, 103, '2020-02-22', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1010312, 121, '2020-01-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1010314, 121, '2020-01-19', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081251, 129, '2020-04-02', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081252, 129, '2020-04-03', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081268, 129, '2020-04-19', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081269, 143, '2020-02-24', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081270, 143, '2020-02-25', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081271, 143, '2020-02-26', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081272, 143, '2020-02-27', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081273, 143, '2020-02-28', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081274, 143, '2020-02-29', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085111, 139, '2020-05-12', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085687, 146, '2020-07-23', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1010315, 121, '2020-01-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1010316, 121, '2020-01-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1010317, 121, '2020-01-22', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1010318, 121, '2020-01-23', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1010319, 121, '2020-01-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1010320, 121, '2020-01-25', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081275, 143, '2020-03-01', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081276, 143, '2020-03-02', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081277, 143, '2020-03-03', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081278, 143, '2020-03-04', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081279, 143, '2020-03-05', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081280, 143, '2020-03-06', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081281, 143, '2020-03-07', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081296, 143, '2020-03-22', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081297, 143, '2020-03-23', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085126, 139, '2020-05-27', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085131, 139, '2020-06-01', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085132, 139, '2020-06-02', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1010321, 121, '2020-01-26', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1010322, 121, '2020-01-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1010323, 121, '2020-01-28', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1010324, 121, '2020-01-29', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1010325, 121, '2020-01-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1010326, 121, '2020-01-31', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081298, 143, '2020-03-24', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081299, 143, '2020-03-25', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081300, 143, '2020-03-26', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081301, 143, '2020-03-27', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081302, 143, '2020-03-28', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081303, 143, '2020-03-29', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081304, 143, '2020-03-30', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081305, 143, '2020-03-31', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081306, 143, '2020-04-01', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085133, 139, '2020-06-03', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085134, 139, '2020-06-04', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085688, 146, '2020-07-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1010327, 121, '2020-02-01', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1010328, 121, '2020-02-02', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1010329, 121, '2020-02-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1010330, 121, '2020-02-04', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1010331, 121, '2020-02-05', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081307, 143, '2020-04-02', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081308, 143, '2020-04-03', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081309, 143, '2020-04-04', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081310, 143, '2020-04-05', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081311, 143, '2020-04-06', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083491, 146, '2020-04-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083492, 146, '2020-04-22', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083493, 146, '2020-04-23', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083494, 146, '2020-04-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083495, 146, '2020-04-25', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083496, 146, '2020-04-26', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085135, 139, '2020-06-05', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085136, 139, '2020-06-06', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085137, 139, '2020-06-07', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1010332, 121, '2020-02-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1010333, 121, '2020-02-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1010334, 121, '2020-02-08', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1010335, 121, '2020-02-09', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1010336, 121, '2020-02-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1010337, 121, '2020-02-11', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083497, 146, '2020-04-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083498, 146, '2020-04-28', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083499, 146, '2020-04-29', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083500, 146, '2020-04-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083501, 146, '2020-05-01', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083502, 146, '2020-05-02', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083503, 146, '2020-05-03', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083504, 146, '2020-05-04', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083505, 146, '2020-05-05', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083520, 146, '2020-05-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085138, 139, '2020-06-08', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1010338, 121, '2020-02-12', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1010339, 121, '2020-02-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1010340, 121, '2020-02-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1010341, 121, '2020-02-15', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1010342, 121, '2020-02-16', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1010343, 121, '2020-02-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083521, 146, '2020-05-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083522, 146, '2020-05-22', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083523, 146, '2020-05-23', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083524, 146, '2020-05-24', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083525, 146, '2020-05-25', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083526, 146, '2020-05-26', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083527, 146, '2020-05-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083528, 146, '2020-05-28', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083529, 146, '2020-05-29', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085159, 141, '2020-05-04', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085160, 141, '2020-05-05', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085709, 115, '2020-06-19', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085710, 115, '2020-06-20', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085712, 115, '2020-06-22', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1010344, 121, '2020-02-18', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1010345, 121, '2020-02-19', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1010346, 121, '2020-02-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1010347, 121, '2020-02-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1010348, 121, '2020-02-22', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1010349, 121, '2020-02-23', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083530, 146, '2020-05-30', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083531, 146, '2020-05-31', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083532, 146, '2020-06-01', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083533, 146, '2020-06-02', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083534, 146, '2020-06-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083549, 115, '2020-04-23', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083550, 115, '2020-04-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083551, 115, '2020-04-25', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083552, 115, '2020-04-26', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083553, 115, '2020-04-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085161, 141, '2020-05-06', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085166, 141, '2020-05-11', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1012467, 125, '2020-01-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '03:20:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1012468, 125, '2020-01-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '03:20:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1012469, 125, '2020-01-22', '08:00:00', '12:00:00', NULL, NULL, NULL, '00:00:00', '03:20:00', NULL, NULL, NULL, '04:00:00', '00:00:00', NULL, 27, '04:00:00', NULL, '00:00:00', '03:20:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1012470, 125, '2020-01-23', NULL, NULL, NULL, NULL, NULL, '00:00:00', '03:20:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '03:20:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1012471, 125, '2020-01-24', NULL, NULL, NULL, NULL, NULL, '00:00:00', '03:20:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '03:20:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083554, 115, '2020-04-28', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083555, 115, '2020-04-29', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083556, 115, '2020-04-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083557, 115, '2020-05-01', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083558, 115, '2020-05-02', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083559, 115, '2020-05-03', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083560, 115, '2020-05-04', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083561, 115, '2020-05-05', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083562, 115, '2020-05-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083563, 115, '2020-05-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083578, 115, '2020-05-22', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085168, 141, '2020-05-13', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085169, 141, '2020-05-14', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1012472, 125, '2020-01-25', NULL, NULL, NULL, NULL, NULL, '00:00:00', '03:20:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '03:20:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1012473, 125, '2020-01-26', NULL, NULL, NULL, NULL, NULL, '00:00:00', '03:20:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1012474, 125, '2020-01-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '03:20:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1012475, 125, '2020-01-28', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '03:20:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1012476, 125, '2020-01-29', '08:00:00', '12:00:00', NULL, NULL, NULL, '00:00:00', '03:20:00', NULL, NULL, NULL, '04:00:00', '00:00:00', NULL, 27, '04:00:00', NULL, '00:00:00', '03:20:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1012477, 125, '2020-01-30', NULL, NULL, NULL, NULL, NULL, '00:00:00', '03:20:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '03:20:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083579, 115, '2020-05-23', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083580, 115, '2020-05-24', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083581, 115, '2020-05-25', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083582, 115, '2020-05-26', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083583, 115, '2020-05-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083584, 115, '2020-05-28', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083585, 115, '2020-05-29', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083586, 115, '2020-05-30', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083587, 115, '2020-05-31', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083588, 115, '2020-06-01', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083589, 115, '2020-06-02', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085188, 141, '2020-06-02', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085189, 141, '2020-06-03', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1012478, 125, '2020-01-31', NULL, NULL, NULL, NULL, NULL, '00:00:00', '03:20:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '03:20:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1012497, 125, '2020-02-19', '08:00:00', '12:00:00', NULL, NULL, NULL, '00:00:00', '03:20:00', NULL, NULL, NULL, '04:00:00', '00:00:00', NULL, 27, '04:00:00', NULL, '00:00:00', '03:20:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1012498, 125, '2020-02-20', NULL, NULL, NULL, NULL, NULL, '00:00:00', '03:20:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '03:20:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1012499, 125, '2020-02-21', NULL, NULL, NULL, NULL, NULL, '00:00:00', '03:20:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '03:20:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1012500, 125, '2020-02-22', NULL, NULL, NULL, NULL, NULL, '00:00:00', '03:20:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '03:20:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1012501, 125, '2020-02-23', NULL, NULL, NULL, NULL, NULL, '00:00:00', '03:20:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1014612, 119, '2020-01-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083590, 115, '2020-06-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083591, 115, '2020-06-04', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083592, 115, '2020-06-05', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083607, 114, '2020-04-25', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083608, 114, '2020-04-26', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083609, 114, '2020-04-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083610, 114, '2020-04-28', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083611, 114, '2020-04-29', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083612, 114, '2020-04-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083613, 114, '2020-05-01', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085190, 141, '2020-06-04', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085716, 115, '2020-06-26', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085717, 115, '2020-06-27', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1014613, 119, '2020-01-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1014614, 119, '2020-01-15', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1014615, 119, '2020-01-16', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1014616, 119, '2020-01-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1014617, 119, '2020-01-18', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083614, 114, '2020-05-02', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083615, 114, '2020-05-03', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083616, 114, '2020-05-04', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083617, 114, '2020-05-05', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083618, 114, '2020-05-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083619, 114, '2020-05-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083620, 114, '2020-05-08', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083621, 114, '2020-05-09', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083622, 114, '2020-05-10', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083636, 114, '2020-05-24', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085191, 141, '2020-06-05', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085196, 141, '2020-06-10', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085197, 141, '2020-06-11', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1014618, 119, '2020-01-19', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1014619, 119, '2020-01-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1014620, 119, '2020-01-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1014621, 119, '2020-01-22', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1014622, 119, '2020-01-23', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1014623, 119, '2020-01-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083637, 114, '2020-05-25', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083638, 114, '2020-05-26', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083639, 114, '2020-05-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083640, 114, '2020-05-28', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083641, 114, '2020-05-29', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083642, 114, '2020-05-30', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083643, 114, '2020-05-31', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083644, 114, '2020-06-01', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083645, 114, '2020-06-02', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085199, 141, '2020-06-13', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085219, 122, '2020-05-08', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085220, 122, '2020-05-09', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1014624, 119, '2020-01-25', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1014625, 119, '2020-01-26', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1014626, 119, '2020-01-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1014627, 119, '2020-01-28', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1014628, 119, '2020-01-29', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1014629, 119, '2020-01-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083646, 114, '2020-06-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083647, 114, '2020-06-04', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083662, 112, '2020-04-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083663, 112, '2020-04-25', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083664, 112, '2020-04-26', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083665, 112, '2020-04-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083666, 112, '2020-04-28', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083667, 112, '2020-04-29', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083668, 112, '2020-04-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083669, 112, '2020-05-01', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085221, 122, '2020-05-10', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085222, 122, '2020-05-11', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085718, 115, '2020-06-28', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1014630, 119, '2020-01-31', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1014631, 119, '2020-02-01', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1014632, 119, '2020-02-02', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1014633, 119, '2020-02-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1014634, 119, '2020-02-04', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1014636, 119, '2020-02-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083670, 112, '2020-05-02', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083671, 112, '2020-05-03', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083672, 112, '2020-05-04', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083673, 112, '2020-05-05', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083674, 112, '2020-05-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083675, 112, '2020-05-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083676, 112, '2020-05-08', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083677, 112, '2020-05-09', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083693, 112, '2020-05-25', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083694, 112, '2020-05-26', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085227, 122, '2020-05-16', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085228, 122, '2020-05-17', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085724, 115, '2020-07-04', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085747, 115, '2020-07-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1014637, 119, '2020-02-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1014638, 119, '2020-02-08', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1014639, 119, '2020-02-09', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1014640, 119, '2020-02-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1014641, 119, '2020-02-11', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1014642, 119, '2020-02-12', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083695, 112, '2020-05-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083696, 112, '2020-05-28', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083697, 112, '2020-05-29', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083698, 112, '2020-05-30', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083699, 112, '2020-05-31', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083700, 108, '2020-04-20', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083701, 108, '2020-04-21', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083702, 108, '2020-04-22', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083703, 108, '2020-04-23', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085243, 122, '2020-06-01', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085244, 122, '2020-06-02', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085249, 122, '2020-06-07', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085770, 114, '2020-06-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1014643, 119, '2020-02-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1014644, 119, '2020-02-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1014645, 119, '2020-02-15', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1014646, 119, '2020-02-16', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1014647, 119, '2020-02-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1014648, 119, '2020-02-18', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083704, 108, '2020-04-24', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083705, 108, '2020-04-25', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083706, 108, '2020-04-26', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083721, 108, '2020-05-11', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083722, 108, '2020-05-12', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083723, 108, '2020-05-13', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083724, 108, '2020-05-14', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083725, 108, '2020-05-15', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083726, 108, '2020-05-16', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083727, 108, '2020-05-17', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085250, 122, '2020-06-08', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085251, 122, '2020-06-09', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1014649, 119, '2020-02-19', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1014650, 119, '2020-02-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1014651, 119, '2020-02-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1014652, 119, '2020-02-22', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1014653, 119, '2020-02-23', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1016770, 113, '2020-01-19', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083728, 108, '2020-05-18', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083729, 108, '2020-05-19', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083730, 108, '2020-05-20', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083731, 108, '2020-05-21', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083732, 108, '2020-05-22', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083733, 108, '2020-05-23', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083734, 108, '2020-05-24', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083735, 108, '2020-05-25', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083750, 108, '2020-06-09', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085257, 106, '2020-04-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '04:10:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '04:10:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085272, 106, '2020-05-05', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '04:10:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '04:10:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085273, 106, '2020-05-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '04:10:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '04:10:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085775, 114, '2020-06-29', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (997384, 112, '2020-01-01', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (997385, 112, '2020-01-02', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (997386, 112, '2020-01-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (997387, 112, '2020-01-04', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (997388, 112, '2020-01-05', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (997389, 112, '2020-01-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083751, 108, '2020-06-10', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083752, 108, '2020-06-11', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083753, 108, '2020-06-12', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083754, 108, '2020-06-13', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083755, 108, '2020-06-14', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083756, 135, '2020-04-20', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083757, 135, '2020-04-21', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083758, 135, '2020-04-22', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083759, 135, '2020-04-23', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083760, 135, '2020-04-24', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085274, 106, '2020-05-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '04:10:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '04:10:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085780, 114, '2020-07-04', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085803, 114, '2020-07-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (997406, 112, '2020-01-23', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (997407, 112, '2020-01-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (997408, 112, '2020-01-25', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (997409, 112, '2020-01-26', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (997410, 112, '2020-01-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (997411, 112, '2020-01-28', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (997412, 112, '2020-01-29', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083761, 135, '2020-04-25', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083762, 135, '2020-04-26', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083763, 135, '2020-04-27', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083764, 135, '2020-04-28', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083765, 135, '2020-04-29', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083767, 135, '2020-05-01', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083768, 135, '2020-05-02', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083783, 135, '2020-05-17', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083784, 135, '2020-05-18', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085279, 106, '2020-05-12', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '04:10:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '04:10:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085280, 106, '2020-05-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '04:10:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '04:10:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085808, 114, '2020-08-01', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1016771, 113, '2020-01-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1016772, 113, '2020-01-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1016773, 113, '2020-01-22', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1016774, 113, '2020-01-23', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1016775, 113, '2020-01-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1016776, 113, '2020-01-25', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1016777, 113, '2020-01-26', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1016778, 113, '2020-01-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1016779, 113, '2020-01-28', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1016780, 113, '2020-01-29', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1016781, 113, '2020-01-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1016782, 113, '2020-01-31', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083785, 135, '2020-05-19', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083786, 135, '2020-05-20', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083787, 135, '2020-05-21', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083788, 135, '2020-05-22', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083789, 135, '2020-05-23', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083790, 135, '2020-05-24', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1016801, 113, '2020-02-19', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1016802, 113, '2020-02-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1016803, 113, '2020-02-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1016804, 113, '2020-02-22', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1016805, 113, '2020-02-23', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1018917, 147, '2020-01-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1018918, 147, '2020-01-15', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1018919, 147, '2020-01-16', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1018920, 147, '2020-01-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1018921, 147, '2020-01-18', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1018922, 147, '2020-01-19', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1018923, 147, '2020-01-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083791, 135, '2020-05-25', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083792, 135, '2020-05-26', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083793, 135, '2020-05-27', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083794, 135, '2020-05-28', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083795, 135, '2020-05-29', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085281, 106, '2020-05-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '04:10:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '04:10:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1018924, 147, '2020-01-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1018925, 147, '2020-01-22', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1018926, 147, '2020-01-23', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1018927, 147, '2020-01-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1018928, 147, '2020-01-25', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1018929, 147, '2020-01-26', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1018930, 147, '2020-01-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1018931, 147, '2020-01-28', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1018932, 147, '2020-01-29', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1018933, 147, '2020-01-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1018934, 147, '2020-01-31', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1018935, 147, '2020-02-01', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083796, 135, '2020-05-30', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083797, 135, '2020-05-31', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083798, 135, '2020-06-01', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083813, 127, '2020-04-21', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083814, 127, '2020-04-22', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085282, 106, '2020-05-15', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '04:10:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085826, 108, '2020-06-24', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1018936, 147, '2020-02-02', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1018937, 147, '2020-02-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1018938, 147, '2020-02-04', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1018939, 147, '2020-02-05', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1018940, 147, '2020-02-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1018941, 147, '2020-02-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1018942, 147, '2020-02-08', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1018943, 147, '2020-02-09', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1018944, 147, '2020-02-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1018945, 147, '2020-02-11', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1018946, 147, '2020-02-12', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1018947, 147, '2020-02-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083815, 127, '2020-04-23', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083816, 127, '2020-04-24', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083817, 127, '2020-04-25', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083818, 127, '2020-04-26', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083819, 127, '2020-04-27', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085283, 106, '2020-05-16', NULL, NULL, NULL, NULL, NULL, '00:00:00', '04:10:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1018948, 147, '2020-02-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1018949, 147, '2020-02-15', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1018950, 147, '2020-02-16', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1018951, 147, '2020-02-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1018952, 147, '2020-02-18', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1018953, 147, '2020-02-19', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1018954, 147, '2020-02-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1021074, 131, '2020-01-19', NULL, NULL, NULL, NULL, NULL, '00:00:00', '04:00:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1021075, 131, '2020-01-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '04:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '04:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1021076, 131, '2020-01-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '04:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '04:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1021077, 131, '2020-01-22', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '04:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '04:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083820, 127, '2020-04-28', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083821, 127, '2020-04-29', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083822, 127, '2020-04-30', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083823, 127, '2020-05-01', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083824, 127, '2020-05-02', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083825, 127, '2020-05-03', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085303, 106, '2020-06-05', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '04:10:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1021078, 131, '2020-01-23', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '04:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '04:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1021079, 131, '2020-01-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '04:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '04:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1021080, 131, '2020-01-25', NULL, NULL, NULL, NULL, NULL, '00:00:00', '04:00:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1021081, 131, '2020-01-26', NULL, NULL, NULL, NULL, NULL, '00:00:00', '04:00:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1021083, 131, '2020-01-28', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '04:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '04:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1021101, 131, '2020-02-15', NULL, NULL, NULL, NULL, NULL, '00:00:00', '04:00:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1021102, 131, '2020-02-16', NULL, NULL, NULL, NULL, NULL, '00:00:00', '04:00:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1021103, 131, '2020-02-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '04:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '04:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1021104, 131, '2020-02-18', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '04:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '04:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1021105, 131, '2020-02-19', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '04:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '04:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1021106, 131, '2020-02-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '04:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '04:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1021107, 131, '2020-02-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '04:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '04:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1021108, 131, '2020-02-22', NULL, NULL, NULL, NULL, NULL, '00:00:00', '04:00:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1021109, 131, '2020-02-23', NULL, NULL, NULL, NULL, NULL, '00:00:00', '04:00:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083826, 127, '2020-05-04', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083827, 127, '2020-05-05', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083842, 127, '2020-05-20', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083843, 127, '2020-05-21', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085305, 106, '2020-06-07', NULL, NULL, NULL, NULL, NULL, '00:00:00', '04:10:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1023223, 104, '2020-01-16', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1023224, 104, '2020-01-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1023225, 104, '2020-01-18', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:00:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1023226, 104, '2020-01-19', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:00:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1023227, 104, '2020-01-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1023228, 104, '2020-01-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1023229, 104, '2020-01-22', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1023230, 104, '2020-01-23', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1023231, 104, '2020-01-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1023232, 104, '2020-01-25', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:00:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1023233, 104, '2020-01-26', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:00:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1023234, 104, '2020-01-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083844, 127, '2020-05-22', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083845, 127, '2020-05-23', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083846, 127, '2020-05-24', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083847, 127, '2020-05-25', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083848, 127, '2020-05-26', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083849, 127, '2020-05-27', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085831, 108, '2020-06-29', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085836, 108, '2020-07-04', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1023235, 104, '2020-01-28', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1023236, 104, '2020-01-29', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1023237, 104, '2020-01-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1023238, 104, '2020-01-31', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1023239, 104, '2020-02-01', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:00:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1023240, 104, '2020-02-02', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:00:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1023241, 104, '2020-02-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1023242, 104, '2020-02-04', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1023243, 104, '2020-02-05', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1023244, 104, '2020-02-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1023245, 104, '2020-02-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1023246, 104, '2020-02-08', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:00:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083850, 127, '2020-05-28', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083851, 127, '2020-05-29', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083852, 127, '2020-05-30', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083853, 127, '2020-05-31', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083854, 127, '2020-06-01', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085310, 106, '2020-06-12', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '04:10:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1023247, 104, '2020-02-09', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:00:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1023248, 104, '2020-02-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1023249, 104, '2020-02-11', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1023250, 104, '2020-02-12', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1023251, 104, '2020-02-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1023252, 104, '2020-02-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1025409, 151, '2020-02-19', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1025410, 151, '2020-02-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1025411, 151, '2020-02-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1025412, 151, '2020-02-22', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1025413, 151, '2020-02-23', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1027530, 138, '2020-01-19', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083855, 127, '2020-06-02', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083856, 127, '2020-06-03', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083871, 149, '2020-04-23', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083872, 149, '2020-04-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083873, 149, '2020-04-25', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085855, 108, '2020-07-23', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085860, 108, '2020-07-28', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085864, 108, '2020-08-01', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1027532, 138, '2020-01-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1027533, 138, '2020-01-22', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1027534, 138, '2020-01-23', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1027535, 138, '2020-01-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1027536, 138, '2020-01-25', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1027537, 138, '2020-01-26', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1027538, 138, '2020-01-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1027539, 138, '2020-01-28', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1027540, 138, '2020-01-29', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1027541, 138, '2020-01-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1027542, 138, '2020-01-31', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1027543, 138, '2020-02-01', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083874, 149, '2020-04-26', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083875, 149, '2020-04-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083876, 149, '2020-04-28', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083877, 149, '2020-04-29', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083878, 149, '2020-04-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085313, 110, '2020-04-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085878, 135, '2020-06-20', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1027544, 138, '2020-02-02', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1027545, 138, '2020-02-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1027546, 138, '2020-02-04', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1027547, 138, '2020-02-05', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1027548, 138, '2020-02-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1027549, 138, '2020-02-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1027550, 138, '2020-02-08', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1027551, 138, '2020-02-09', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1027557, 138, '2020-02-15', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1029700, 105, '2020-02-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1029701, 105, '2020-02-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1029702, 105, '2020-02-08', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083879, 149, '2020-05-01', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083880, 149, '2020-05-02', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083881, 149, '2020-05-03', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083882, 149, '2020-05-04', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083883, 149, '2020-05-05', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085331, 110, '2020-05-08', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085332, 110, '2020-05-09', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1029703, 105, '2020-02-09', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1029704, 105, '2020-02-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1029705, 105, '2020-02-11', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1029706, 105, '2020-02-12', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1029707, 105, '2020-02-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1029708, 105, '2020-02-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1029709, 105, '2020-02-15', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1029710, 105, '2020-02-16', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1029711, 105, '2020-02-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1029712, 105, '2020-02-18', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1029713, 105, '2020-02-19', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1029715, 105, '2020-02-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1029716, 105, '2020-02-22', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083884, 149, '2020-05-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083885, 149, '2020-05-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083900, 149, '2020-05-22', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083901, 149, '2020-05-23', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083902, 149, '2020-05-24', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1029717, 105, '2020-02-23', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1031835, 134, '2020-01-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1031836, 134, '2020-01-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1031837, 134, '2020-01-22', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1031838, 134, '2020-01-23', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1031839, 134, '2020-01-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1031840, 134, '2020-01-25', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1031841, 134, '2020-01-26', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1031842, 134, '2020-01-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1031843, 134, '2020-01-28', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1031844, 134, '2020-01-29', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1031845, 134, '2020-01-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083903, 149, '2020-05-25', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083904, 149, '2020-05-26', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083905, 149, '2020-05-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083906, 149, '2020-05-28', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083907, 149, '2020-05-29', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1031846, 134, '2020-01-31', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1031847, 134, '2020-02-01', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1031848, 134, '2020-02-02', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1031849, 134, '2020-02-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1031869, 134, '2020-02-23', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1033995, 144, '2020-01-28', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1033996, 144, '2020-01-29', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1033997, 144, '2020-01-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1033998, 144, '2020-01-31', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1033999, 144, '2020-02-01', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1034000, 144, '2020-02-02', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1034001, 144, '2020-02-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1034002, 144, '2020-02-04', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083908, 149, '2020-05-30', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083909, 149, '2020-05-31', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083910, 149, '2020-06-01', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083911, 149, '2020-06-02', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083912, 149, '2020-06-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085339, 110, '2020-05-16', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1034003, 144, '2020-02-05', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1034004, 144, '2020-02-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1034005, 144, '2020-02-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1034006, 144, '2020-02-08', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1034007, 144, '2020-02-09', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1034008, 144, '2020-02-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1034009, 144, '2020-02-11', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1034010, 144, '2020-02-12', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1034011, 144, '2020-02-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1034013, 144, '2020-02-15', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1034014, 144, '2020-02-16', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1034015, 144, '2020-02-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083913, 149, '2020-06-04', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083914, 149, '2020-06-05', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083929, 103, '2020-04-25', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083930, 103, '2020-04-26', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083931, 103, '2020-04-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083932, 103, '2020-04-28', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085340, 110, '2020-05-17', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1034016, 144, '2020-02-18', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1034017, 144, '2020-02-19', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1034018, 144, '2020-02-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1034019, 144, '2020-02-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1034020, 144, '2020-02-22', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1034021, 144, '2020-02-23', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1036139, 102, '2020-01-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1036140, 102, '2020-01-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1036141, 102, '2020-01-22', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1036142, 102, '2020-01-23', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1036143, 102, '2020-01-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1036144, 102, '2020-01-25', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1036145, 102, '2020-01-26', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083933, 103, '2020-04-29', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083934, 103, '2020-04-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083935, 103, '2020-05-01', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083936, 103, '2020-05-02', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085341, 110, '2020-05-18', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085897, 135, '2020-07-09', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1036146, 102, '2020-01-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1036147, 102, '2020-01-28', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1036148, 102, '2020-01-29', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1036149, 102, '2020-01-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1036150, 102, '2020-01-31', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1036169, 102, '2020-02-19', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1036170, 102, '2020-02-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1036171, 102, '2020-02-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1036172, 102, '2020-02-22', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1036173, 102, '2020-02-23', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1038288, 109, '2020-01-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1038289, 109, '2020-01-18', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083937, 103, '2020-05-03', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083938, 103, '2020-05-04', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083939, 103, '2020-05-05', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083940, 103, '2020-05-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083941, 103, '2020-05-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085342, 110, '2020-05-19', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1038290, 109, '2020-01-19', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1038291, 109, '2020-01-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1038292, 109, '2020-01-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1038293, 109, '2020-01-22', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1038294, 109, '2020-01-23', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1038295, 109, '2020-01-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1038296, 109, '2020-01-25', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1038297, 109, '2020-01-26', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1038298, 109, '2020-01-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1038299, 109, '2020-01-28', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1038300, 109, '2020-01-29', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1038301, 109, '2020-01-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083942, 103, '2020-05-08', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083943, 103, '2020-05-09', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083944, 103, '2020-05-10', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083959, 103, '2020-05-25', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083960, 103, '2020-05-26', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085362, 110, '2020-06-08', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085906, 135, '2020-07-18', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1038302, 109, '2020-01-31', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1038303, 109, '2020-02-01', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1038304, 109, '2020-02-02', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1038305, 109, '2020-02-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1038306, 109, '2020-02-04', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1038307, 109, '2020-02-05', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1038308, 109, '2020-02-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1038309, 109, '2020-02-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1038310, 109, '2020-02-08', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1038311, 109, '2020-02-09', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1038312, 109, '2020-02-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1038313, 109, '2020-02-11', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083961, 103, '2020-05-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083962, 103, '2020-05-28', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083963, 103, '2020-05-29', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083964, 103, '2020-05-30', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083965, 103, '2020-05-31', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083966, 103, '2020-06-01', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085910, 135, '2020-07-22', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085937, 127, '2020-06-23', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1038314, 109, '2020-02-12', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1038315, 109, '2020-02-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1038316, 109, '2020-02-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1038317, 109, '2020-02-15', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1038318, 109, '2020-02-16', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1038319, 109, '2020-02-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1038320, 109, '2020-02-18', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1038321, 109, '2020-02-19', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1038322, 109, '2020-02-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1038323, 109, '2020-02-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1038324, 109, '2020-02-22', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1038325, 109, '2020-02-23', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083967, 103, '2020-06-02', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083968, 103, '2020-06-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083969, 103, '2020-06-04', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083970, 103, '2020-06-05', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083971, 103, '2020-06-06', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085363, 110, '2020-06-09', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1040443, 118, '2020-01-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1040444, 118, '2020-01-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1040445, 118, '2020-01-22', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1040446, 118, '2020-01-23', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1040447, 118, '2020-01-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1040448, 118, '2020-01-25', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1040449, 118, '2020-01-26', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1040450, 118, '2020-01-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1040451, 118, '2020-01-28', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1040452, 118, '2020-01-29', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1040453, 118, '2020-01-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083972, 103, '2020-06-07', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083973, 103, '2020-06-08', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083988, 121, '2020-04-28', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083989, 121, '2020-04-29', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083990, 121, '2020-04-30', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083991, 121, '2020-05-01', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085956, 127, '2020-07-12', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085960, 127, '2020-07-16', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1040454, 118, '2020-01-31', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1040473, 118, '2020-02-19', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1040474, 118, '2020-02-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1040475, 118, '2020-02-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1040476, 118, '2020-02-22', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1040477, 118, '2020-02-23', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1042588, 133, '2020-01-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1042589, 133, '2020-01-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1042590, 133, '2020-01-15', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1042591, 133, '2020-01-16', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1042592, 133, '2020-01-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1042593, 133, '2020-01-18', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1042594, 133, '2020-01-19', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083992, 121, '2020-05-02', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083993, 121, '2020-05-03', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083994, 121, '2020-05-04', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083995, 121, '2020-05-05', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083996, 121, '2020-05-06', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1042595, 133, '2020-01-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1042596, 133, '2020-01-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1042597, 133, '2020-01-22', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1042598, 133, '2020-01-23', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1042599, 133, '2020-01-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1042600, 133, '2020-01-25', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1042601, 133, '2020-01-26', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1042602, 133, '2020-01-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1042603, 133, '2020-01-28', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1042604, 133, '2020-01-29', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1042605, 133, '2020-01-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1042606, 133, '2020-01-31', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1042607, 133, '2020-02-01', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1042608, 133, '2020-02-02', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083997, 121, '2020-05-07', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083998, 121, '2020-05-08', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083999, 121, '2020-05-09', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084000, 121, '2020-05-10', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085961, 127, '2020-07-17', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085984, 127, '2020-08-09', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1042609, 133, '2020-02-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1042610, 133, '2020-02-04', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1042611, 133, '2020-02-05', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1042612, 133, '2020-02-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1042613, 133, '2020-02-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1042614, 133, '2020-02-08', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1042615, 133, '2020-02-09', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1042616, 133, '2020-02-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1042617, 133, '2020-02-11', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1042618, 133, '2020-02-12', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1042619, 133, '2020-02-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1042620, 133, '2020-02-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1042621, 133, '2020-02-15', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1042622, 133, '2020-02-16', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084001, 121, '2020-05-11', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084002, 121, '2020-05-12', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084017, 121, '2020-05-27', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084018, 121, '2020-05-28', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (999541, 108, '2020-01-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (999542, 108, '2020-01-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (999543, 108, '2020-01-08', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (999544, 108, '2020-01-09', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (999545, 108, '2020-01-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (999546, 108, '2020-01-11', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (999547, 108, '2020-01-12', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (999548, 108, '2020-01-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (999549, 108, '2020-01-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (999550, 108, '2020-01-15', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (999551, 108, '2020-01-16', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (999552, 108, '2020-01-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (999553, 108, '2020-01-18', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (999554, 108, '2020-01-19', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (999555, 108, '2020-01-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (999556, 108, '2020-01-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (999557, 108, '2020-01-22', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (999558, 108, '2020-01-23', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (999576, 108, '2020-02-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (999577, 108, '2020-02-11', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (999578, 108, '2020-02-12', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (999579, 108, '2020-02-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (999580, 108, '2020-02-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (999582, 108, '2020-02-16', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (999583, 108, '2020-02-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (999584, 108, '2020-02-18', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (999585, 108, '2020-02-19', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (999586, 108, '2020-02-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (999587, 108, '2020-02-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (999588, 108, '2020-02-22', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (999589, 108, '2020-02-23', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1044755, 111, '2020-01-28', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1044756, 111, '2020-01-29', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1044757, 111, '2020-01-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1044758, 111, '2020-01-31', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1046894, 128, '2020-01-15', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1046895, 128, '2020-01-16', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1046896, 128, '2020-01-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1046897, 128, '2020-01-18', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1046898, 128, '2020-01-19', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1046899, 128, '2020-01-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1046900, 128, '2020-01-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1046901, 128, '2020-01-22', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1046902, 128, '2020-01-23', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1046903, 128, '2020-01-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1046904, 128, '2020-01-25', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1046905, 128, '2020-01-26', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1046906, 128, '2020-01-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1046907, 128, '2020-01-28', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084026, 121, '2020-06-05', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084027, 121, '2020-06-06', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084028, 121, '2020-06-07', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084029, 121, '2020-06-08', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1046923, 128, '2020-02-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1046924, 128, '2020-02-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1046925, 128, '2020-02-15', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1046926, 128, '2020-02-16', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1046927, 128, '2020-02-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1046928, 128, '2020-02-18', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1046929, 128, '2020-02-19', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1046930, 128, '2020-02-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1049050, 142, '2020-01-19', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1049051, 142, '2020-01-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1049052, 142, '2020-01-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1049053, 142, '2020-01-22', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1049054, 142, '2020-01-23', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1049055, 142, '2020-01-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084049, 117, '2020-05-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084050, 117, '2020-05-15', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084051, 117, '2020-05-16', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084052, 117, '2020-05-17', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085988, 149, '2020-06-18', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1051203, 136, '2020-01-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1051204, 136, '2020-01-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1051205, 136, '2020-01-22', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1051206, 136, '2020-01-23', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1051207, 136, '2020-01-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1051208, 136, '2020-01-25', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1051209, 136, '2020-01-26', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1051210, 136, '2020-01-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1051211, 136, '2020-01-28', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1051212, 136, '2020-01-29', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1051213, 136, '2020-01-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1051214, 136, '2020-01-31', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1051215, 136, '2020-02-01', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1051216, 136, '2020-02-02', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084056, 117, '2020-05-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084057, 117, '2020-05-22', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084058, 117, '2020-05-23', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084059, 117, '2020-05-24', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1053357, 140, '2020-01-22', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1055506, 139, '2020-01-19', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1055507, 139, '2020-01-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1055508, 139, '2020-01-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1055509, 139, '2020-01-22', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1055510, 139, '2020-01-23', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1055511, 139, '2020-01-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1055512, 139, '2020-01-25', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1055513, 139, '2020-01-26', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1055514, 139, '2020-01-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1055515, 139, '2020-01-28', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1055516, 139, '2020-01-29', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1055517, 139, '2020-01-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1055518, 139, '2020-01-31', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1055519, 139, '2020-02-01', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084079, 117, '2020-06-13', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084080, 117, '2020-06-14', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084081, 125, '2020-04-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '03:20:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1057681, 141, '2020-02-11', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1057682, 141, '2020-02-12', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1057683, 141, '2020-02-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1057684, 141, '2020-02-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1057685, 141, '2020-02-15', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1057686, 141, '2020-02-16', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1057687, 141, '2020-02-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1057688, 141, '2020-02-18', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1057689, 141, '2020-02-19', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1057690, 141, '2020-02-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1057691, 141, '2020-02-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1057692, 141, '2020-02-22', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1057693, 141, '2020-02-23', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1059811, 122, '2020-01-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084085, 125, '2020-04-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '03:20:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084086, 125, '2020-04-25', NULL, NULL, NULL, NULL, NULL, '00:00:00', '03:20:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '03:20:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084087, 125, '2020-04-26', NULL, NULL, NULL, NULL, NULL, '00:00:00', '03:20:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084088, 125, '2020-04-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '03:20:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1061973, 106, '2020-01-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '04:10:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '04:10:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1061974, 106, '2020-01-31', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '04:10:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1061975, 106, '2020-02-01', NULL, NULL, NULL, NULL, NULL, '00:00:00', '04:10:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1061976, 106, '2020-02-02', NULL, NULL, NULL, NULL, NULL, '00:00:00', '04:10:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1061977, 106, '2020-02-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '04:10:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '04:10:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1061978, 106, '2020-02-04', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '04:10:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '04:10:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1061979, 106, '2020-02-05', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '04:10:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '04:10:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1061980, 106, '2020-02-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '04:10:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '04:10:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1061981, 106, '2020-02-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '04:10:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1061982, 106, '2020-02-08', NULL, NULL, NULL, NULL, NULL, '00:00:00', '04:10:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1061983, 106, '2020-02-09', NULL, NULL, NULL, NULL, NULL, '00:00:00', '04:10:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1061984, 106, '2020-02-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '04:10:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '04:10:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1061985, 106, '2020-02-11', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '04:10:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '04:10:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1061986, 106, '2020-02-12', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '04:10:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '04:10:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084108, 125, '2020-05-17', NULL, NULL, NULL, NULL, NULL, '00:00:00', '03:20:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084109, 125, '2020-05-18', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '03:20:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084110, 125, '2020-05-19', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '03:20:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084111, 125, '2020-05-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '03:20:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1064119, 110, '2020-01-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1064120, 110, '2020-01-25', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1064121, 110, '2020-01-26', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1064122, 110, '2020-01-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1064123, 110, '2020-01-28', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1064124, 110, '2020-01-29', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1064125, 110, '2020-01-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1064126, 110, '2020-01-31', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1064145, 110, '2020-02-19', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1064146, 110, '2020-02-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1064147, 110, '2020-02-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1064148, 110, '2020-02-22', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1064149, 110, '2020-02-23', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1066264, 145, '2020-01-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084116, 125, '2020-05-25', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '03:20:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084117, 125, '2020-05-26', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '03:20:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084118, 125, '2020-05-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '03:20:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084133, 125, '2020-06-11', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '03:20:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1066281, 145, '2020-02-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1066282, 145, '2020-02-04', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1066283, 145, '2020-02-05', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1066284, 145, '2020-02-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1066285, 145, '2020-02-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1066286, 145, '2020-02-08', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1066287, 145, '2020-02-09', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1066288, 145, '2020-02-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1066289, 145, '2020-02-11', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1066290, 145, '2020-02-12', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1066291, 145, '2020-02-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1066292, 145, '2020-02-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1066293, 145, '2020-02-15', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1066294, 145, '2020-02-16', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084138, 119, '2020-04-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084139, 119, '2020-04-22', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084140, 119, '2020-04-23', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084141, 119, '2020-04-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1068427, 148, '2020-01-28', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1068428, 148, '2020-01-29', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1068429, 148, '2020-01-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1068430, 148, '2020-01-31', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1068449, 148, '2020-02-19', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1068450, 148, '2020-02-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1068451, 148, '2020-02-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1068452, 148, '2020-02-22', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1068453, 148, '2020-02-23', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1070564, 130, '2020-01-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1070565, 130, '2020-01-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1070566, 130, '2020-01-15', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1070567, 130, '2020-01-16', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084146, 119, '2020-04-29', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084147, 119, '2020-04-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084162, 119, '2020-05-15', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084163, 119, '2020-05-16', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1070585, 130, '2020-02-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1070586, 130, '2020-02-04', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1070587, 130, '2020-02-05', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1070588, 130, '2020-02-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1070589, 130, '2020-02-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1070590, 130, '2020-02-08', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1070591, 130, '2020-02-09', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1070592, 130, '2020-02-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1070593, 130, '2020-02-11', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1070594, 130, '2020-02-12', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1070595, 130, '2020-02-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1070596, 130, '2020-02-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1070597, 130, '2020-02-15', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1070598, 130, '2020-02-16', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084169, 119, '2020-05-22', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084170, 119, '2020-05-23', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084171, 119, '2020-05-24', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084172, 119, '2020-05-25', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (914498, 129, '2020-02-04', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (914499, 129, '2020-02-05', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (914500, 129, '2020-02-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (914501, 129, '2020-02-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (914502, 129, '2020-02-08', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (914503, 129, '2020-02-09', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (914504, 129, '2020-02-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (914505, 129, '2020-02-11', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (914506, 129, '2020-02-12', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (914507, 129, '2020-02-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (914508, 129, '2020-02-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (914509, 129, '2020-02-15', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (914510, 129, '2020-02-16', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (914511, 129, '2020-02-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084193, 113, '2020-04-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084194, 113, '2020-04-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084195, 113, '2020-04-22', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084196, 113, '2020-04-23', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1074884, 143, '2020-01-29', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1074885, 143, '2020-01-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1074886, 143, '2020-01-31', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1074905, 143, '2020-02-19', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1074906, 143, '2020-02-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1074907, 143, '2020-02-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1074908, 143, '2020-02-22', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1074909, 143, '2020-02-23', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079160, 146, '2020-02-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079161, 146, '2020-02-25', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079162, 146, '2020-02-26', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079163, 146, '2020-02-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079164, 146, '2020-02-28', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079165, 146, '2020-02-29', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084201, 113, '2020-04-28', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084202, 113, '2020-04-29', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084203, 113, '2020-04-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085402, 145, '2020-05-23', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079182, 146, '2020-03-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079183, 146, '2020-03-18', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079184, 146, '2020-03-19', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079185, 146, '2020-03-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079186, 146, '2020-03-21', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079187, 146, '2020-03-22', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079188, 146, '2020-03-23', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079189, 146, '2020-03-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079190, 146, '2020-03-25', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079191, 146, '2020-03-26', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079192, 146, '2020-03-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079193, 146, '2020-03-28', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079194, 146, '2020-03-29', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079195, 146, '2020-03-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084222, 113, '2020-05-19', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084223, 113, '2020-05-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084224, 113, '2020-05-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079211, 146, '2020-04-15', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079212, 146, '2020-04-16', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079213, 146, '2020-04-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079214, 146, '2020-04-18', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079215, 146, '2020-04-19', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079216, 115, '2020-02-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079217, 115, '2020-02-25', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079218, 115, '2020-02-26', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079219, 115, '2020-02-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079220, 115, '2020-02-28', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079221, 115, '2020-02-29', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079222, 115, '2020-03-01', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079223, 115, '2020-03-02', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079224, 115, '2020-03-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084230, 113, '2020-05-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084231, 113, '2020-05-28', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084232, 113, '2020-05-29', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084233, 113, '2020-05-30', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079240, 115, '2020-03-19', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079241, 115, '2020-03-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079242, 115, '2020-03-21', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079243, 115, '2020-03-22', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079244, 115, '2020-03-23', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079245, 115, '2020-03-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079246, 115, '2020-03-25', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079247, 115, '2020-03-26', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079248, 115, '2020-03-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079249, 115, '2020-03-28', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079250, 115, '2020-03-29', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079251, 115, '2020-03-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079252, 115, '2020-03-31', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079253, 115, '2020-04-01', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084252, 147, '2020-04-23', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084253, 147, '2020-04-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084254, 147, '2020-04-25', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084255, 147, '2020-04-26', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079269, 115, '2020-04-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079270, 115, '2020-04-18', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079271, 115, '2020-04-19', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079272, 114, '2020-02-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079273, 114, '2020-02-25', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079274, 114, '2020-02-26', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079275, 114, '2020-02-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079276, 114, '2020-02-28', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079277, 114, '2020-02-29', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079278, 114, '2020-03-01', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079279, 114, '2020-03-02', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079280, 114, '2020-03-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079281, 114, '2020-03-04', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079282, 114, '2020-03-05', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084260, 147, '2020-05-01', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084261, 147, '2020-05-02', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084262, 147, '2020-05-03', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084263, 147, '2020-05-04', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079298, 114, '2020-03-21', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079299, 114, '2020-03-22', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079300, 114, '2020-03-23', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079301, 114, '2020-03-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079302, 114, '2020-03-25', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079303, 114, '2020-03-26', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079304, 114, '2020-03-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079305, 114, '2020-03-28', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079306, 114, '2020-03-29', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079307, 114, '2020-03-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079308, 114, '2020-03-31', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079309, 114, '2020-04-01', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079310, 114, '2020-04-02', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079311, 114, '2020-04-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084283, 147, '2020-05-24', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084284, 147, '2020-05-25', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084285, 147, '2020-05-26', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084286, 147, '2020-05-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085989, 149, '2020-06-19', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079328, 112, '2020-02-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079329, 112, '2020-02-25', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079330, 112, '2020-02-26', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079331, 112, '2020-02-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079332, 112, '2020-02-28', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079333, 112, '2020-02-29', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079334, 112, '2020-03-01', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079335, 112, '2020-03-02', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079336, 112, '2020-03-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079337, 112, '2020-03-04', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079338, 112, '2020-03-05', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079339, 112, '2020-03-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079340, 112, '2020-03-07', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079341, 112, '2020-03-08', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084291, 147, '2020-06-01', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084292, 147, '2020-06-02', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084293, 147, '2020-06-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084308, 131, '2020-04-23', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '04:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '04:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079357, 112, '2020-03-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079358, 112, '2020-03-25', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079359, 112, '2020-03-26', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079360, 112, '2020-03-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079361, 112, '2020-03-28', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079362, 112, '2020-03-29', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079363, 112, '2020-03-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079364, 112, '2020-03-31', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079365, 112, '2020-04-01', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079366, 112, '2020-04-02', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079367, 112, '2020-04-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079368, 112, '2020-04-04', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079369, 112, '2020-04-05', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079370, 112, '2020-04-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084313, 131, '2020-04-28', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '04:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '04:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084314, 131, '2020-04-29', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '04:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '04:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084315, 131, '2020-04-30', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '04:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '04:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084316, 131, '2020-05-01', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '04:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '04:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1001742, 135, '2019-12-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1001743, 135, '2019-12-31', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079386, 108, '2020-02-26', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079387, 108, '2020-02-27', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079388, 108, '2020-02-28', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079389, 108, '2020-02-29', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079390, 108, '2020-03-01', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079391, 108, '2020-03-02', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079392, 108, '2020-03-03', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079393, 108, '2020-03-04', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079394, 108, '2020-03-05', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079395, 108, '2020-03-06', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079396, 108, '2020-03-07', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079397, 108, '2020-03-08', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084321, 131, '2020-05-06', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '04:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '04:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084322, 131, '2020-05-07', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '04:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '04:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084337, 131, '2020-05-22', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '04:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '04:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084338, 131, '2020-05-23', NULL, NULL, NULL, NULL, NULL, '00:00:00', '04:00:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079413, 108, '2020-03-24', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079414, 108, '2020-03-25', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079415, 108, '2020-03-26', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079416, 108, '2020-03-27', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079417, 108, '2020-03-28', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079418, 108, '2020-03-29', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079419, 108, '2020-03-30', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079420, 108, '2020-03-31', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079421, 108, '2020-04-01', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079422, 108, '2020-04-02', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079423, 108, '2020-04-03', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079424, 108, '2020-04-04', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079425, 108, '2020-04-05', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079426, 108, '2020-04-06', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084343, 131, '2020-05-28', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '04:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '04:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084344, 131, '2020-05-29', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '04:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '04:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084345, 131, '2020-05-30', NULL, NULL, NULL, NULL, NULL, '00:00:00', '04:00:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084346, 131, '2020-05-31', NULL, NULL, NULL, NULL, NULL, '00:00:00', '04:00:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079443, 135, '2020-02-27', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079444, 135, '2020-02-28', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079445, 135, '2020-02-29', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079446, 135, '2020-03-01', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079447, 135, '2020-03-02', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079448, 135, '2020-03-03', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079449, 135, '2020-03-04', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079450, 135, '2020-03-05', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079451, 135, '2020-03-06', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079452, 135, '2020-03-07', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079453, 135, '2020-03-08', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079454, 135, '2020-03-09', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079455, 135, '2020-03-10', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079456, 135, '2020-03-11', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084351, 131, '2020-06-05', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '04:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '04:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084352, 131, '2020-06-06', NULL, NULL, NULL, NULL, NULL, '00:00:00', '04:00:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084368, 104, '2020-04-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085448, 148, '2020-05-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079472, 135, '2020-03-27', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079473, 135, '2020-03-28', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079474, 135, '2020-03-29', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079475, 135, '2020-03-30', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079476, 135, '2020-03-31', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079477, 135, '2020-04-01', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079478, 135, '2020-04-02', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079479, 135, '2020-04-03', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079480, 135, '2020-04-04', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079481, 135, '2020-04-05', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079482, 135, '2020-04-06', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079483, 135, '2020-04-07', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079484, 135, '2020-04-08', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079485, 135, '2020-04-09', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084375, 104, '2020-05-04', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084376, 104, '2020-05-05', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084377, 104, '2020-05-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085453, 148, '2020-05-18', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1001688, 135, '2020-01-01', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1001689, 135, '2020-01-02', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1001690, 135, '2020-01-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1001691, 135, '2020-01-04', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1001692, 135, '2020-01-05', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1001693, 135, '2020-01-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1001694, 135, '2020-01-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1001695, 135, '2020-01-08', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1001696, 135, '2020-01-09', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1001697, 135, '2020-01-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1001698, 135, '2020-01-11', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1001699, 135, '2020-01-12', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1001700, 135, '2020-01-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1001701, 135, '2020-01-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1001702, 135, '2020-01-15', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1001703, 135, '2020-01-16', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1001704, 135, '2020-01-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079501, 127, '2020-02-29', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1001705, 135, '2020-01-18', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1001706, 135, '2020-01-19', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1001707, 135, '2020-01-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1001708, 135, '2020-01-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1001709, 135, '2020-01-22', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1001710, 135, '2020-01-23', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1001711, 135, '2020-01-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1001712, 135, '2020-01-25', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1001713, 135, '2020-01-26', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1001714, 135, '2020-01-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1001715, 135, '2020-01-28', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1001716, 135, '2020-01-29', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1001717, 135, '2020-01-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1001718, 135, '2020-01-31', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1001719, 135, '2020-02-01', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1001720, 135, '2020-02-02', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1001721, 135, '2020-02-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1001722, 135, '2020-02-04', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085994, 149, '2020-06-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085998, 149, '2020-06-28', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079505, 127, '2020-03-04', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079506, 127, '2020-03-05', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079507, 127, '2020-03-06', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079508, 127, '2020-03-07', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079509, 127, '2020-03-08', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079510, 127, '2020-03-09', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079511, 127, '2020-03-10', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079512, 127, '2020-03-11', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079513, 127, '2020-03-12', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079514, 127, '2020-03-13', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079515, 127, '2020-03-14', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079516, 127, '2020-03-15', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079517, 127, '2020-03-16', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079518, 127, '2020-03-17', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084398, 104, '2020-05-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084399, 104, '2020-05-28', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084400, 104, '2020-05-29', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084401, 104, '2020-05-30', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:00:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079535, 127, '2020-04-03', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079536, 127, '2020-04-04', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079537, 127, '2020-04-05', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079538, 127, '2020-04-06', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079539, 127, '2020-04-07', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079540, 127, '2020-04-08', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079541, 127, '2020-04-09', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079542, 127, '2020-04-10', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079543, 127, '2020-04-11', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079544, 127, '2020-04-12', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079545, 127, '2020-04-13', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079546, 127, '2020-04-14', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079547, 127, '2020-04-15', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079548, 127, '2020-04-16', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084406, 104, '2020-06-04', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084407, 104, '2020-06-05', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084408, 104, '2020-06-06', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:00:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084409, 104, '2020-06-07', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:00:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079564, 149, '2020-03-07', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079565, 149, '2020-03-08', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079566, 149, '2020-03-09', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079567, 149, '2020-03-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079568, 149, '2020-03-11', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079569, 149, '2020-03-12', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079570, 149, '2020-03-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079571, 149, '2020-03-14', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079572, 149, '2020-03-15', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079573, 149, '2020-03-16', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079574, 149, '2020-03-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079575, 149, '2020-03-18', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079576, 149, '2020-03-19', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079577, 149, '2020-03-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084428, 151, '2020-05-01', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084429, 151, '2020-05-02', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084430, 151, '2020-05-03', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084431, 151, '2020-05-04', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079595, 149, '2020-04-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079596, 149, '2020-04-08', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079597, 149, '2020-04-09', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079598, 149, '2020-04-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079599, 149, '2020-04-11', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079600, 149, '2020-04-12', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079601, 149, '2020-04-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079602, 149, '2020-04-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079603, 149, '2020-04-15', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079604, 149, '2020-04-16', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079605, 149, '2020-04-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079606, 149, '2020-04-18', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079607, 149, '2020-04-19', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079608, 103, '2020-02-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084437, 151, '2020-05-10', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084438, 151, '2020-05-11', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084439, 151, '2020-05-12', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084452, 151, '2020-05-25', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079625, 103, '2020-03-12', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079626, 103, '2020-03-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079627, 103, '2020-03-14', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079628, 103, '2020-03-15', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079629, 103, '2020-03-16', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079630, 103, '2020-03-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079631, 103, '2020-03-18', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079632, 103, '2020-03-19', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079633, 103, '2020-03-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079634, 103, '2020-03-21', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079635, 103, '2020-03-22', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079636, 103, '2020-03-23', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079637, 103, '2020-03-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079638, 103, '2020-03-25', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084457, 151, '2020-05-30', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084458, 151, '2020-05-31', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084459, 151, '2020-06-01', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084460, 151, '2020-06-02', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079654, 103, '2020-04-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079655, 103, '2020-04-11', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079656, 103, '2020-04-12', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079657, 103, '2020-04-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079658, 103, '2020-04-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079659, 103, '2020-04-15', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079660, 103, '2020-04-16', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079661, 103, '2020-04-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079662, 103, '2020-04-18', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079663, 103, '2020-04-19', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079664, 121, '2020-02-24', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079665, 121, '2020-02-25', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079666, 121, '2020-02-26', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079667, 121, '2020-02-27', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084470, 151, '2020-06-12', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084471, 151, '2020-06-13', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084472, 151, '2020-06-14', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084473, 138, '2020-04-20', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079684, 121, '2020-03-15', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079685, 121, '2020-03-16', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079686, 121, '2020-03-17', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079687, 121, '2020-03-18', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079688, 121, '2020-03-19', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079689, 121, '2020-03-20', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079690, 121, '2020-03-21', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079691, 121, '2020-03-22', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079692, 121, '2020-03-23', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079693, 121, '2020-03-24', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079694, 121, '2020-03-25', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079695, 121, '2020-03-26', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079696, 121, '2020-03-27', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079697, 121, '2020-03-28', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079698, 121, '2020-03-29', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084493, 138, '2020-05-10', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084494, 138, '2020-05-11', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084495, 138, '2020-05-12', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079713, 121, '2020-04-13', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079714, 121, '2020-04-14', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079715, 121, '2020-04-15', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079716, 121, '2020-04-16', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079717, 121, '2020-04-17', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079718, 121, '2020-04-18', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079719, 121, '2020-04-19', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079720, 125, '2020-02-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '03:20:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079721, 125, '2020-02-25', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '03:20:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079722, 125, '2020-02-26', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '03:20:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079723, 125, '2020-02-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '03:20:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079724, 125, '2020-02-28', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '03:20:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079725, 125, '2020-02-29', NULL, NULL, NULL, NULL, NULL, '00:00:00', '03:20:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '03:20:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079726, 125, '2020-03-01', NULL, NULL, NULL, NULL, NULL, '00:00:00', '03:20:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084500, 138, '2020-05-17', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084501, 138, '2020-05-18', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084502, 138, '2020-05-19', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084517, 138, '2020-06-03', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086021, 149, '2020-07-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086026, 149, '2020-07-26', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079743, 125, '2020-03-18', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '03:20:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079744, 125, '2020-03-19', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '03:20:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079745, 125, '2020-03-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '03:20:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079746, 125, '2020-03-21', NULL, NULL, NULL, NULL, NULL, '00:00:00', '03:20:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '03:20:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079747, 125, '2020-03-22', NULL, NULL, NULL, NULL, NULL, '00:00:00', '03:20:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079748, 125, '2020-03-23', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '03:20:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079749, 125, '2020-03-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '03:20:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079750, 125, '2020-03-25', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '03:20:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079751, 125, '2020-03-26', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '03:20:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079752, 125, '2020-03-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '03:20:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079753, 125, '2020-03-28', NULL, NULL, NULL, NULL, NULL, '00:00:00', '03:20:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '03:20:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079754, 125, '2020-03-29', NULL, NULL, NULL, NULL, NULL, '00:00:00', '03:20:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079755, 125, '2020-03-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '03:20:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079756, 125, '2020-03-31', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '03:20:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084522, 138, '2020-06-08', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084523, 138, '2020-06-09', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084524, 138, '2020-06-10', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079772, 125, '2020-04-16', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '03:20:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079773, 125, '2020-04-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '03:20:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079774, 125, '2020-04-18', NULL, NULL, NULL, NULL, NULL, '00:00:00', '03:20:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '03:20:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079775, 125, '2020-04-19', NULL, NULL, NULL, NULL, NULL, '00:00:00', '03:20:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079776, 119, '2020-02-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079777, 119, '2020-02-25', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079778, 119, '2020-02-26', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079779, 119, '2020-02-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079780, 119, '2020-02-28', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079781, 119, '2020-02-29', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079782, 119, '2020-03-01', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079783, 119, '2020-03-02', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079784, 119, '2020-03-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079785, 119, '2020-03-04', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084530, 105, '2020-04-21', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084531, 105, '2020-04-22', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084546, 105, '2020-05-07', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084547, 105, '2020-05-08', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079801, 119, '2020-03-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079802, 119, '2020-03-21', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079803, 119, '2020-03-22', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079804, 119, '2020-03-23', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079805, 119, '2020-03-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079806, 119, '2020-03-25', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079807, 119, '2020-03-26', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079808, 119, '2020-03-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079809, 119, '2020-03-28', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079810, 119, '2020-03-29', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079811, 119, '2020-03-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079812, 119, '2020-03-31', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079813, 119, '2020-04-01', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079814, 119, '2020-04-02', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084552, 105, '2020-05-13', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084553, 105, '2020-05-14', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084554, 105, '2020-05-15', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084555, 105, '2020-05-16', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086042, 103, '2020-06-16', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079830, 119, '2020-04-18', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079831, 119, '2020-04-19', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079832, 113, '2020-02-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079833, 113, '2020-02-25', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079834, 113, '2020-02-26', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079835, 113, '2020-02-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079836, 113, '2020-02-28', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079837, 113, '2020-02-29', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079838, 113, '2020-03-01', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079839, 113, '2020-03-02', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079840, 113, '2020-03-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079841, 113, '2020-03-04', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079842, 113, '2020-03-05', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079843, 113, '2020-03-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084560, 105, '2020-05-21', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084575, 105, '2020-06-05', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084576, 105, '2020-06-06', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084577, 105, '2020-06-07', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079860, 113, '2020-03-23', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079861, 113, '2020-03-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079862, 113, '2020-03-25', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079863, 113, '2020-03-26', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079864, 113, '2020-03-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079865, 113, '2020-03-28', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079866, 113, '2020-03-29', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079867, 113, '2020-03-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079868, 113, '2020-03-31', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079869, 113, '2020-04-01', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079870, 113, '2020-04-02', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079871, 113, '2020-04-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079872, 113, '2020-04-04', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079873, 113, '2020-04-05', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084582, 105, '2020-06-12', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084583, 105, '2020-06-13', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084584, 105, '2020-06-14', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084585, 134, '2020-04-20', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079889, 147, '2020-02-25', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079890, 147, '2020-02-26', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079891, 147, '2020-02-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079892, 147, '2020-02-28', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079893, 147, '2020-02-29', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079894, 147, '2020-03-01', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079895, 147, '2020-03-02', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079896, 147, '2020-03-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079897, 147, '2020-03-04', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079898, 147, '2020-03-05', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079899, 147, '2020-03-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079900, 147, '2020-03-07', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079901, 147, '2020-03-08', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079902, 147, '2020-03-09', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084606, 134, '2020-05-11', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084607, 134, '2020-05-12', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084608, 134, '2020-05-13', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084609, 134, '2020-05-14', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079918, 147, '2020-03-25', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079919, 147, '2020-03-26', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079920, 147, '2020-03-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079921, 147, '2020-03-28', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079922, 147, '2020-03-29', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079923, 147, '2020-03-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079924, 147, '2020-03-31', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079925, 147, '2020-04-01', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079926, 147, '2020-04-02', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079927, 147, '2020-04-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079928, 147, '2020-04-04', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079929, 147, '2020-04-05', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079930, 147, '2020-04-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079931, 147, '2020-04-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084614, 134, '2020-05-19', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084615, 134, '2020-05-20', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084616, 134, '2020-05-21', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084617, 134, '2020-05-22', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079947, 131, '2020-02-27', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '04:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '04:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079948, 131, '2020-02-28', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '04:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '04:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079949, 131, '2020-02-29', NULL, NULL, NULL, NULL, NULL, '00:00:00', '04:00:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079950, 131, '2020-03-01', NULL, NULL, NULL, NULL, NULL, '00:00:00', '04:00:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079951, 131, '2020-03-02', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '04:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '04:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079952, 131, '2020-03-03', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '04:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '04:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079953, 131, '2020-03-04', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '04:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '04:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079954, 131, '2020-03-05', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '04:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '04:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079955, 131, '2020-03-06', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '04:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '04:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079956, 131, '2020-03-07', NULL, NULL, NULL, NULL, NULL, '00:00:00', '04:00:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079957, 131, '2020-03-08', NULL, NULL, NULL, NULL, NULL, '00:00:00', '04:00:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079958, 131, '2020-03-09', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '04:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '04:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079959, 131, '2020-03-10', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '04:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '04:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079960, 131, '2020-03-11', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '04:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '04:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084636, 134, '2020-06-10', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084637, 134, '2020-06-11', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084638, 134, '2020-06-12', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084639, 134, '2020-06-13', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079976, 131, '2020-03-27', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '04:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '04:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079977, 131, '2020-03-28', NULL, NULL, NULL, NULL, NULL, '00:00:00', '04:00:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079978, 131, '2020-03-29', NULL, NULL, NULL, NULL, NULL, '00:00:00', '04:00:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079979, 131, '2020-03-30', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '04:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '04:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079980, 131, '2020-03-31', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '04:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '04:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079981, 131, '2020-04-01', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '04:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '04:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079982, 131, '2020-04-02', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '04:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '04:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079983, 131, '2020-04-03', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '04:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '04:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079984, 131, '2020-04-04', NULL, NULL, NULL, NULL, NULL, '00:00:00', '04:00:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079985, 131, '2020-04-05', NULL, NULL, NULL, NULL, NULL, '00:00:00', '04:00:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079986, 131, '2020-04-06', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '04:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '04:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079987, 131, '2020-04-07', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '04:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '04:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079988, 131, '2020-04-08', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '04:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '04:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1079989, 131, '2020-04-09', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '04:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '04:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084644, 102, '2020-04-23', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084645, 102, '2020-04-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084646, 102, '2020-04-25', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084647, 102, '2020-04-26', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080006, 104, '2020-03-01', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:00:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080007, 104, '2020-03-02', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080008, 104, '2020-03-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080009, 104, '2020-03-04', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080010, 104, '2020-03-05', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080011, 104, '2020-03-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080012, 104, '2020-03-07', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:00:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080013, 104, '2020-03-08', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:00:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080014, 104, '2020-03-09', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080015, 104, '2020-03-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080016, 104, '2020-03-11', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080017, 104, '2020-03-12', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080018, 104, '2020-03-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080019, 104, '2020-03-14', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:00:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080020, 104, '2020-03-15', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:00:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084666, 102, '2020-05-15', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084667, 102, '2020-05-16', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084668, 102, '2020-05-17', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080035, 104, '2020-03-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080036, 104, '2020-03-31', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080037, 104, '2020-04-01', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080038, 104, '2020-04-02', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080039, 104, '2020-04-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080040, 104, '2020-04-04', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:00:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080041, 104, '2020-04-05', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:00:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080042, 104, '2020-04-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080043, 104, '2020-04-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080044, 104, '2020-04-08', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080045, 104, '2020-04-09', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080046, 104, '2020-04-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080047, 104, '2020-04-11', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:00:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080048, 104, '2020-04-12', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:00:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084673, 102, '2020-05-22', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084674, 102, '2020-05-23', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084675, 102, '2020-05-24', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084676, 102, '2020-05-25', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085514, 130, '2020-05-23', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080064, 151, '2020-03-03', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080065, 151, '2020-03-04', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080066, 151, '2020-03-05', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080067, 151, '2020-03-06', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080068, 151, '2020-03-07', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080069, 151, '2020-03-08', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080070, 151, '2020-03-09', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080071, 151, '2020-03-10', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080072, 151, '2020-03-11', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080073, 151, '2020-03-12', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080074, 151, '2020-03-13', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080075, 151, '2020-03-14', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080076, 151, '2020-03-15', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080077, 151, '2020-03-16', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084695, 102, '2020-06-13', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084696, 102, '2020-06-14', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084697, 109, '2020-04-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084698, 109, '2020-04-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080093, 151, '2020-04-01', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080094, 151, '2020-04-02', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080095, 151, '2020-04-03', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080096, 151, '2020-04-04', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080097, 151, '2020-04-05', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080098, 151, '2020-04-06', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080099, 151, '2020-04-07', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080100, 151, '2020-04-08', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080101, 151, '2020-04-09', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080102, 151, '2020-04-10', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080103, 151, '2020-04-11', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080104, 151, '2020-04-12', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080105, 151, '2020-04-13', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080106, 151, '2020-04-14', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084704, 109, '2020-04-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084705, 109, '2020-04-28', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084706, 109, '2020-04-29', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084721, 109, '2020-05-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080122, 138, '2020-03-05', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080123, 138, '2020-03-06', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080124, 138, '2020-03-07', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080125, 138, '2020-03-08', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080126, 138, '2020-03-09', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080127, 138, '2020-03-10', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080128, 138, '2020-03-11', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080129, 138, '2020-03-12', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080130, 138, '2020-03-13', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080131, 138, '2020-03-14', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080132, 138, '2020-03-15', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080133, 138, '2020-03-16', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080134, 138, '2020-03-17', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080135, 138, '2020-03-18', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084726, 109, '2020-05-19', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084727, 109, '2020-05-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084728, 109, '2020-05-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085534, 130, '2020-06-12', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080151, 138, '2020-04-03', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080152, 138, '2020-04-04', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080153, 138, '2020-04-05', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080154, 138, '2020-04-06', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080155, 138, '2020-04-07', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080156, 138, '2020-04-08', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080157, 138, '2020-04-09', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080158, 138, '2020-04-10', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080159, 138, '2020-04-11', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080160, 138, '2020-04-12', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080161, 138, '2020-04-13', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080162, 138, '2020-04-14', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080163, 138, '2020-04-15', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080164, 138, '2020-04-16', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084734, 109, '2020-05-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084735, 109, '2020-05-28', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084750, 109, '2020-06-12', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084751, 109, '2020-06-13', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080181, 105, '2020-03-08', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080182, 105, '2020-03-09', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080183, 105, '2020-03-10', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080184, 105, '2020-03-11', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080185, 105, '2020-03-12', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080186, 105, '2020-03-13', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080187, 105, '2020-03-14', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080188, 105, '2020-03-15', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080189, 105, '2020-03-16', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080190, 105, '2020-03-17', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080191, 105, '2020-03-18', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080192, 105, '2020-03-19', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080193, 105, '2020-03-20', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080194, 105, '2020-03-21', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084756, 118, '2020-04-23', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084757, 118, '2020-04-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084758, 118, '2020-04-25', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084759, 118, '2020-04-26', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1003840, 127, '2020-01-01', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1003841, 127, '2020-01-02', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1003842, 127, '2020-01-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1003843, 127, '2020-01-04', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1003844, 127, '2020-01-05', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1003845, 127, '2020-01-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1003846, 127, '2020-01-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1003847, 127, '2020-01-08', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1003848, 127, '2020-01-09', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1003849, 127, '2020-01-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1003850, 127, '2020-01-11', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1003851, 127, '2020-01-12', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1003852, 127, '2020-01-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1003853, 127, '2020-01-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1003854, 127, '2020-01-15', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1003855, 127, '2020-01-16', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1003856, 127, '2020-01-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1003857, 127, '2020-01-18', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086049, 103, '2020-06-23', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086053, 103, '2020-06-27', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1003874, 127, '2020-02-04', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1003875, 127, '2020-02-05', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1003876, 127, '2020-02-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1003877, 127, '2020-02-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1003878, 127, '2020-02-08', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1003879, 127, '2020-02-09', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1003880, 127, '2020-02-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1003881, 127, '2020-02-11', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1003882, 127, '2020-02-12', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1003883, 127, '2020-02-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1003884, 127, '2020-02-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1003885, 127, '2020-02-15', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1003886, 127, '2020-02-16', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1003887, 127, '2020-02-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1003888, 127, '2020-02-18', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1003889, 127, '2020-02-19', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1003890, 127, '2020-02-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1003891, 127, '2020-02-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080211, 105, '2020-04-07', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080212, 105, '2020-04-08', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080213, 105, '2020-04-09', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080214, 105, '2020-04-10', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080215, 105, '2020-04-11', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080216, 105, '2020-04-12', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080217, 105, '2020-04-13', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080218, 105, '2020-04-14', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080219, 105, '2020-04-15', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080220, 105, '2020-04-16', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080221, 105, '2020-04-17', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080222, 105, '2020-04-18', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080223, 105, '2020-04-19', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080224, 134, '2020-02-24', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084764, 118, '2020-05-01', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084765, 118, '2020-05-02', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084781, 118, '2020-05-18', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085538, 129, '2020-04-21', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080240, 134, '2020-03-11', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080241, 134, '2020-03-12', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080242, 134, '2020-03-13', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080243, 134, '2020-03-14', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080244, 134, '2020-03-15', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080245, 134, '2020-03-16', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080246, 134, '2020-03-17', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080247, 134, '2020-03-18', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080248, 134, '2020-03-19', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080249, 134, '2020-03-20', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080250, 134, '2020-03-21', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080251, 134, '2020-03-22', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080252, 134, '2020-03-23', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080253, 134, '2020-03-24', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084788, 118, '2020-05-25', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084789, 118, '2020-05-26', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084790, 118, '2020-05-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084791, 118, '2020-05-28', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080269, 134, '2020-04-09', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080270, 134, '2020-04-10', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080271, 134, '2020-04-11', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080272, 134, '2020-04-12', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080273, 134, '2020-04-13', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080274, 134, '2020-04-14', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080275, 134, '2020-04-15', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080276, 134, '2020-04-16', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080277, 134, '2020-04-17', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080278, 134, '2020-04-18', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080279, 134, '2020-04-19', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080280, 144, '2020-02-24', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080281, 144, '2020-02-25', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080282, 144, '2020-02-26', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084810, 133, '2020-04-21', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084811, 133, '2020-04-22', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084812, 133, '2020-04-23', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080298, 144, '2020-03-13', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080299, 144, '2020-03-14', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080300, 144, '2020-03-15', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080301, 144, '2020-03-16', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080302, 144, '2020-03-17', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080303, 144, '2020-03-18', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080304, 144, '2020-03-19', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080305, 144, '2020-03-20', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080306, 144, '2020-03-21', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080307, 144, '2020-03-22', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080308, 144, '2020-03-23', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080309, 144, '2020-03-24', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080310, 144, '2020-03-25', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080311, 144, '2020-03-26', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084818, 133, '2020-04-29', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084819, 133, '2020-04-30', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084820, 133, '2020-05-01', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084821, 133, '2020-05-02', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080328, 102, '2020-03-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080329, 102, '2020-03-07', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080330, 102, '2020-03-08', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080331, 102, '2020-03-09', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080332, 102, '2020-03-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080333, 102, '2020-03-11', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080334, 102, '2020-03-12', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080335, 102, '2020-03-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080336, 102, '2020-03-14', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080337, 102, '2020-03-15', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080338, 102, '2020-03-16', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080339, 102, '2020-03-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080340, 102, '2020-03-18', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080341, 102, '2020-03-19', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084840, 133, '2020-05-21', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084841, 133, '2020-05-22', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084842, 133, '2020-05-23', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084843, 133, '2020-05-24', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080357, 102, '2020-04-04', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080358, 102, '2020-04-05', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080359, 102, '2020-04-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080360, 102, '2020-04-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080361, 102, '2020-04-08', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080362, 102, '2020-04-09', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080363, 102, '2020-04-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080364, 102, '2020-04-11', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080365, 102, '2020-04-12', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080366, 102, '2020-04-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080367, 102, '2020-04-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080368, 102, '2020-04-15', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080369, 102, '2020-04-16', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080370, 102, '2020-04-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084848, 133, '2020-05-29', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084849, 133, '2020-05-30', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084850, 133, '2020-05-31', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084851, 133, '2020-06-01', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080387, 109, '2020-03-09', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080388, 109, '2020-03-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080389, 109, '2020-03-11', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080390, 109, '2020-03-12', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080391, 109, '2020-03-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080392, 109, '2020-03-14', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080393, 109, '2020-03-15', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080394, 109, '2020-03-16', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080395, 109, '2020-03-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080396, 109, '2020-03-18', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080397, 109, '2020-03-19', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080398, 109, '2020-03-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080399, 109, '2020-03-21', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080400, 109, '2020-03-22', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084870, 111, '2020-04-25', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084871, 111, '2020-04-26', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084872, 111, '2020-04-27', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084873, 111, '2020-04-28', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080416, 109, '2020-04-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080417, 109, '2020-04-08', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080418, 109, '2020-04-09', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080419, 109, '2020-04-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080420, 109, '2020-04-11', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080421, 109, '2020-04-12', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080422, 109, '2020-04-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080423, 109, '2020-04-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080424, 109, '2020-04-15', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080425, 109, '2020-04-16', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080426, 109, '2020-04-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080427, 109, '2020-04-18', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080428, 109, '2020-04-19', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080429, 118, '2020-02-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084879, 111, '2020-05-04', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084880, 111, '2020-05-05', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084881, 111, '2020-05-06', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084896, 111, '2020-05-21', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080445, 118, '2020-03-11', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080446, 118, '2020-03-12', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080447, 118, '2020-03-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080448, 118, '2020-03-14', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080449, 118, '2020-03-15', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080450, 118, '2020-03-16', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080451, 118, '2020-03-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080452, 118, '2020-03-18', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080453, 118, '2020-03-19', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080454, 118, '2020-03-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080455, 118, '2020-03-21', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080456, 118, '2020-03-22', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080457, 118, '2020-03-23', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080458, 118, '2020-03-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084901, 111, '2020-05-26', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084902, 111, '2020-05-27', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084903, 111, '2020-05-28', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084904, 111, '2020-05-29', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080474, 118, '2020-04-09', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080475, 118, '2020-04-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080476, 118, '2020-04-11', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080477, 118, '2020-04-12', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080478, 118, '2020-04-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080479, 118, '2020-04-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080480, 118, '2020-04-15', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080481, 118, '2020-04-16', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080482, 118, '2020-04-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080483, 118, '2020-04-18', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080484, 118, '2020-04-19', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080485, 133, '2020-02-24', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080486, 133, '2020-02-25', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080487, 133, '2020-02-26', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084909, 111, '2020-06-03', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084910, 111, '2020-06-04', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084925, 128, '2020-04-24', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084926, 128, '2020-04-25', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080503, 133, '2020-03-13', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080504, 133, '2020-03-14', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080505, 133, '2020-03-15', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080506, 133, '2020-03-16', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080507, 133, '2020-03-17', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080508, 133, '2020-03-18', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080509, 133, '2020-03-19', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080510, 133, '2020-03-20', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080511, 133, '2020-03-21', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080512, 133, '2020-03-22', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080513, 133, '2020-03-23', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080514, 133, '2020-03-24', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080515, 133, '2020-03-25', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080516, 133, '2020-03-26', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084931, 128, '2020-04-30', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084932, 128, '2020-05-01', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084933, 128, '2020-05-02', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084934, 128, '2020-05-03', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080532, 133, '2020-04-11', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080533, 133, '2020-04-12', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080534, 133, '2020-04-13', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080535, 133, '2020-04-14', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080536, 133, '2020-04-15', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080537, 133, '2020-04-16', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080538, 133, '2020-04-17', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080539, 133, '2020-04-18', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080540, 133, '2020-04-19', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080541, 111, '2020-02-24', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080542, 111, '2020-02-25', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080543, 111, '2020-02-26', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080544, 111, '2020-02-27', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080545, 111, '2020-02-28', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084939, 128, '2020-05-08', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084940, 128, '2020-05-09', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084956, 128, '2020-05-25', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084957, 128, '2020-05-26', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086072, 103, '2020-07-16', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080562, 111, '2020-03-16', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080563, 111, '2020-03-17', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080564, 111, '2020-03-18', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080565, 111, '2020-03-19', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080566, 111, '2020-03-20', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080567, 111, '2020-03-21', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080568, 111, '2020-03-22', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080569, 111, '2020-03-23', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080570, 111, '2020-03-24', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080571, 111, '2020-03-25', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080572, 111, '2020-03-26', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080573, 111, '2020-03-27', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080574, 111, '2020-03-28', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080575, 111, '2020-03-29', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084962, 128, '2020-05-31', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084963, 128, '2020-06-01', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084964, 128, '2020-06-02', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084965, 128, '2020-06-03', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080591, 111, '2020-04-14', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080592, 111, '2020-04-15', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080593, 111, '2020-04-16', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080594, 111, '2020-04-17', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080595, 111, '2020-04-18', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080596, 111, '2020-04-19', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080597, 128, '2020-02-24', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080598, 128, '2020-02-25', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080599, 128, '2020-02-26', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080600, 128, '2020-02-27', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080601, 128, '2020-02-28', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080602, 128, '2020-02-29', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080603, 128, '2020-03-01', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080604, 128, '2020-03-02', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084984, 142, '2020-04-27', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084985, 142, '2020-04-28', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084986, 142, '2020-04-29', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085575, 129, '2020-05-28', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086081, 103, '2020-07-25', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080620, 128, '2020-03-18', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080621, 128, '2020-03-19', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080622, 128, '2020-03-20', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080623, 128, '2020-03-21', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080624, 128, '2020-03-22', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080625, 128, '2020-03-23', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080626, 128, '2020-03-24', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080627, 128, '2020-03-25', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080628, 128, '2020-03-26', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080629, 128, '2020-03-27', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080630, 128, '2020-03-28', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080631, 128, '2020-03-29', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080632, 128, '2020-03-30', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080633, 128, '2020-03-31', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084993, 142, '2020-05-06', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084994, 142, '2020-05-07', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084995, 142, '2020-05-08', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084996, 142, '2020-05-09', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086082, 103, '2020-07-26', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080649, 128, '2020-04-16', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080650, 128, '2020-04-17', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080651, 128, '2020-04-18', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080652, 128, '2020-04-19', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080653, 142, '2020-02-24', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080654, 142, '2020-02-25', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080655, 142, '2020-02-26', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080656, 142, '2020-02-27', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080657, 142, '2020-02-28', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080658, 142, '2020-02-29', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080659, 142, '2020-03-01', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080660, 142, '2020-03-02', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080661, 142, '2020-03-03', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080662, 142, '2020-03-04', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085015, 142, '2020-05-28', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085016, 142, '2020-05-29', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085017, 142, '2020-05-30', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085018, 142, '2020-05-31', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080678, 142, '2020-03-20', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080679, 142, '2020-03-21', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080680, 142, '2020-03-22', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080681, 142, '2020-03-23', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080682, 142, '2020-03-24', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080683, 142, '2020-03-25', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080684, 142, '2020-03-26', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080685, 142, '2020-03-27', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080686, 142, '2020-03-28', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080687, 142, '2020-03-29', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080688, 142, '2020-03-30', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080689, 142, '2020-03-31', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080690, 142, '2020-04-01', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080691, 142, '2020-04-02', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085023, 142, '2020-06-05', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085024, 142, '2020-06-06', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085025, 142, '2020-06-07', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085026, 142, '2020-06-08', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085578, 129, '2020-05-31', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080707, 142, '2020-04-18', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080708, 142, '2020-04-19', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080709, 136, '2020-02-24', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080710, 136, '2020-02-25', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080711, 136, '2020-02-26', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080712, 136, '2020-02-27', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080713, 136, '2020-02-28', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080714, 136, '2020-02-29', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080715, 136, '2020-03-01', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080716, 136, '2020-03-02', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080717, 136, '2020-03-03', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080718, 136, '2020-03-04', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080719, 136, '2020-03-05', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080720, 136, '2020-03-06', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085045, 136, '2020-05-02', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085046, 136, '2020-05-03', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085047, 136, '2020-05-04', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085048, 136, '2020-05-05', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080737, 136, '2020-03-23', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080738, 136, '2020-03-24', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080739, 136, '2020-03-25', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080740, 136, '2020-03-26', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080741, 136, '2020-03-27', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080742, 136, '2020-03-28', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080743, 136, '2020-03-29', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080744, 136, '2020-03-30', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080745, 136, '2020-03-31', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080746, 136, '2020-04-01', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080747, 136, '2020-04-02', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080748, 136, '2020-04-03', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080749, 136, '2020-04-04', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080750, 136, '2020-04-05', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085053, 136, '2020-05-10', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085054, 136, '2020-05-11', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085055, 136, '2020-05-12', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085056, 136, '2020-05-13', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086105, 121, '2020-06-23', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086109, 121, '2020-06-27', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080766, 139, '2020-02-25', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080767, 139, '2020-02-26', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080768, 139, '2020-02-27', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080769, 139, '2020-02-28', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080770, 139, '2020-02-29', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080771, 139, '2020-03-01', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080772, 139, '2020-03-02', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080773, 139, '2020-03-03', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080774, 139, '2020-03-04', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080775, 139, '2020-03-05', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080776, 139, '2020-03-06', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080777, 139, '2020-03-07', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080778, 139, '2020-03-08', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080779, 139, '2020-03-09', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085075, 136, '2020-06-01', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085076, 136, '2020-06-02', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085077, 136, '2020-06-03', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085078, 136, '2020-06-04', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080795, 139, '2020-03-25', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080796, 139, '2020-03-26', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080797, 139, '2020-03-27', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080798, 139, '2020-03-28', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080799, 139, '2020-03-29', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080800, 139, '2020-03-30', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080801, 139, '2020-03-31', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080802, 139, '2020-04-01', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080803, 139, '2020-04-02', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080804, 139, '2020-04-03', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080805, 139, '2020-04-04', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080806, 139, '2020-04-05', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080807, 139, '2020-04-06', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080808, 139, '2020-04-07', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085097, 139, '2020-04-28', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085098, 139, '2020-04-29', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085099, 139, '2020-04-30', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085100, 139, '2020-05-01', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080824, 141, '2020-02-27', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080825, 141, '2020-02-28', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080826, 141, '2020-02-29', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080827, 141, '2020-03-01', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080828, 141, '2020-03-02', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080829, 141, '2020-03-03', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080830, 141, '2020-03-04', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080831, 141, '2020-03-05', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080832, 141, '2020-03-06', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080833, 141, '2020-03-07', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080834, 141, '2020-03-08', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080835, 141, '2020-03-09', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080836, 141, '2020-03-10', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080837, 141, '2020-03-11', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085105, 139, '2020-05-06', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085106, 139, '2020-05-07', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085107, 139, '2020-05-08', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085108, 139, '2020-05-09', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080853, 141, '2020-03-27', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080854, 141, '2020-03-28', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080855, 141, '2020-03-29', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080856, 141, '2020-03-30', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080857, 141, '2020-03-31', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080858, 141, '2020-04-01', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080859, 141, '2020-04-02', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080860, 141, '2020-04-03', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080861, 141, '2020-04-04', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080862, 141, '2020-04-05', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080863, 141, '2020-04-06', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080864, 141, '2020-04-07', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080865, 141, '2020-04-08', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080866, 141, '2020-04-09', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085127, 139, '2020-05-28', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085128, 139, '2020-05-29', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085129, 139, '2020-05-30', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085130, 139, '2020-05-31', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085598, 143, '2020-04-25', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1005992, 149, '2020-01-01', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1005993, 149, '2020-01-02', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1005994, 149, '2020-01-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1005995, 149, '2020-01-04', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1005996, 149, '2020-01-05', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1005997, 149, '2020-01-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1005998, 149, '2020-01-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1005999, 149, '2020-01-08', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1006000, 149, '2020-01-09', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1006001, 149, '2020-01-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080883, 122, '2020-03-01', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080884, 122, '2020-03-02', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080885, 122, '2020-03-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080886, 122, '2020-03-04', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080887, 122, '2020-03-05', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080888, 122, '2020-03-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080889, 122, '2020-03-07', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085599, 143, '2020-04-26', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1006002, 149, '2020-01-11', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1006003, 149, '2020-01-12', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1006004, 149, '2020-01-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1006005, 149, '2020-01-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1006006, 149, '2020-01-15', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1006007, 149, '2020-01-16', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1006008, 149, '2020-01-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1006009, 149, '2020-01-18', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1006010, 149, '2020-01-19', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1006011, 149, '2020-01-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1006012, 149, '2020-01-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1006013, 149, '2020-01-22', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1006014, 149, '2020-01-23', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1006015, 149, '2020-01-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1006016, 149, '2020-01-25', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1006017, 149, '2020-01-26', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1006018, 149, '2020-01-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080897, 122, '2020-03-15', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080898, 122, '2020-03-16', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080901, 122, '2020-03-19', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080902, 122, '2020-03-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080903, 122, '2020-03-21', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080904, 122, '2020-03-22', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080905, 122, '2020-03-23', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080906, 122, '2020-03-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080907, 122, '2020-03-25', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080908, 122, '2020-03-26', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080909, 122, '2020-03-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080910, 122, '2020-03-28', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080911, 122, '2020-03-29', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080912, 122, '2020-03-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080913, 122, '2020-03-31', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080914, 122, '2020-04-01', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085140, 139, '2020-06-10', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085155, 141, '2020-04-30', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085156, 141, '2020-05-01', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085157, 141, '2020-05-02', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080930, 122, '2020-04-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080931, 122, '2020-04-18', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080932, 122, '2020-04-19', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080933, 106, '2020-02-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '04:10:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '04:10:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080934, 106, '2020-02-25', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '04:10:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '04:10:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080935, 106, '2020-02-26', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '04:10:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '04:10:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080936, 106, '2020-02-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '04:10:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '04:10:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080937, 106, '2020-02-28', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '04:10:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080938, 106, '2020-02-29', NULL, NULL, NULL, NULL, NULL, '00:00:00', '04:10:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080939, 106, '2020-03-01', NULL, NULL, NULL, NULL, NULL, '00:00:00', '04:10:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080940, 106, '2020-03-02', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '04:10:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '04:10:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080941, 106, '2020-03-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '04:10:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '04:10:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080942, 106, '2020-03-04', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '04:10:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '04:10:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080943, 106, '2020-03-05', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '04:10:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '04:10:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085162, 141, '2020-05-07', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085163, 141, '2020-05-08', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085164, 141, '2020-05-09', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085165, 141, '2020-05-10', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080960, 106, '2020-03-22', NULL, NULL, NULL, NULL, NULL, '00:00:00', '04:10:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080961, 106, '2020-03-23', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '04:10:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '04:10:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080962, 106, '2020-03-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '04:10:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '04:10:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080963, 106, '2020-03-25', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '04:10:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '04:10:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080964, 106, '2020-03-26', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '04:10:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '04:10:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080965, 106, '2020-03-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '04:10:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080966, 106, '2020-03-28', NULL, NULL, NULL, NULL, NULL, '00:00:00', '04:10:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080967, 106, '2020-03-29', NULL, NULL, NULL, NULL, NULL, '00:00:00', '04:10:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080968, 106, '2020-03-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '04:10:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '04:10:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080969, 106, '2020-03-31', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '04:10:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '04:10:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080970, 106, '2020-04-01', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '04:10:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '04:10:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080971, 106, '2020-04-02', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '04:10:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '04:10:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080972, 106, '2020-04-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '04:10:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080973, 106, '2020-04-04', NULL, NULL, NULL, NULL, NULL, '00:00:00', '04:10:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085184, 141, '2020-05-29', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085185, 141, '2020-05-30', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085186, 141, '2020-05-31', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085187, 141, '2020-06-01', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085622, 143, '2020-05-19', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080990, 110, '2020-02-25', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080991, 110, '2020-02-26', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080992, 110, '2020-02-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080993, 110, '2020-02-28', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080994, 110, '2020-02-29', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080995, 110, '2020-03-01', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080996, 110, '2020-03-02', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080997, 110, '2020-03-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080998, 110, '2020-03-04', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1080999, 110, '2020-03-05', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081000, 110, '2020-03-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081001, 110, '2020-03-07', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081002, 110, '2020-03-08', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081003, 110, '2020-03-09', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085192, 141, '2020-06-06', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085193, 141, '2020-06-07', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085194, 141, '2020-06-08', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085195, 141, '2020-06-09', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085627, 143, '2020-05-24', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081019, 110, '2020-03-25', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081020, 110, '2020-03-26', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081021, 110, '2020-03-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081022, 110, '2020-03-28', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081023, 110, '2020-03-29', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081024, 110, '2020-03-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081025, 110, '2020-03-31', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081026, 110, '2020-04-01', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081027, 110, '2020-04-02', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081028, 110, '2020-04-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081029, 110, '2020-04-04', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081030, 110, '2020-04-05', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081031, 110, '2020-04-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081032, 110, '2020-04-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085215, 122, '2020-05-04', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085216, 122, '2020-05-05', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085217, 122, '2020-05-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085218, 122, '2020-05-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081048, 145, '2020-02-27', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081049, 145, '2020-02-28', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081050, 145, '2020-02-29', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081051, 145, '2020-03-01', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081052, 145, '2020-03-02', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081053, 145, '2020-03-03', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081054, 145, '2020-03-04', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081055, 145, '2020-03-05', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081056, 145, '2020-03-06', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081057, 145, '2020-03-07', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081058, 145, '2020-03-08', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081059, 145, '2020-03-09', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081060, 145, '2020-03-10', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081061, 145, '2020-03-11', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085223, 122, '2020-05-12', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085224, 122, '2020-05-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085225, 122, '2020-05-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085226, 122, '2020-05-15', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081077, 145, '2020-03-27', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081078, 145, '2020-03-28', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081079, 145, '2020-03-29', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081080, 145, '2020-03-30', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081081, 145, '2020-03-31', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081082, 145, '2020-04-01', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081083, 145, '2020-04-02', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081084, 145, '2020-04-03', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081085, 145, '2020-04-04', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081086, 145, '2020-04-05', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081087, 145, '2020-04-06', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081088, 145, '2020-04-07', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081089, 145, '2020-04-08', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081090, 145, '2020-04-09', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085245, 122, '2020-06-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085246, 122, '2020-06-04', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085247, 122, '2020-06-05', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085248, 122, '2020-06-06', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081106, 148, '2020-02-29', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081107, 148, '2020-03-01', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081108, 148, '2020-03-02', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081109, 148, '2020-03-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081110, 148, '2020-03-04', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081111, 148, '2020-03-05', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081112, 148, '2020-03-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081113, 148, '2020-03-07', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081114, 148, '2020-03-08', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081115, 148, '2020-03-09', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081116, 148, '2020-03-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081117, 148, '2020-03-11', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081118, 148, '2020-03-12', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081119, 148, '2020-03-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085253, 122, '2020-06-11', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085254, 122, '2020-06-12', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085255, 122, '2020-06-13', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085256, 122, '2020-06-14', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081136, 148, '2020-03-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081137, 148, '2020-03-31', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081138, 148, '2020-04-01', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081139, 148, '2020-04-02', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081140, 148, '2020-04-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081141, 148, '2020-04-04', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081142, 148, '2020-04-05', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081143, 148, '2020-04-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081144, 148, '2020-04-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081145, 148, '2020-04-08', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081146, 148, '2020-04-09', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081147, 148, '2020-04-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081148, 148, '2020-04-11', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081149, 148, '2020-04-12', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085275, 106, '2020-05-08', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '04:10:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085276, 106, '2020-05-09', NULL, NULL, NULL, NULL, NULL, '00:00:00', '04:10:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085277, 106, '2020-05-10', NULL, NULL, NULL, NULL, NULL, '00:00:00', '04:10:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085278, 106, '2020-05-11', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '04:10:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '04:10:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081165, 130, '2020-03-03', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081166, 130, '2020-03-04', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081167, 130, '2020-03-05', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081168, 130, '2020-03-06', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081169, 130, '2020-03-07', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081170, 130, '2020-03-08', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081171, 130, '2020-03-09', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081172, 130, '2020-03-10', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081173, 130, '2020-03-11', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081174, 130, '2020-03-12', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081175, 130, '2020-03-13', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081176, 130, '2020-03-14', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081177, 130, '2020-03-15', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081178, 130, '2020-03-16', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085284, 106, '2020-05-17', NULL, NULL, NULL, NULL, NULL, '00:00:00', '04:10:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085285, 106, '2020-05-18', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '04:10:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '04:10:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085286, 106, '2020-05-19', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '04:10:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '04:10:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085301, 106, '2020-06-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '04:10:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '04:10:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081194, 130, '2020-04-01', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081195, 130, '2020-04-02', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081196, 130, '2020-04-03', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081197, 130, '2020-04-04', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081198, 130, '2020-04-05', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081199, 130, '2020-04-06', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081200, 130, '2020-04-07', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081201, 130, '2020-04-08', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081202, 130, '2020-04-09', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081203, 130, '2020-04-10', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081204, 130, '2020-04-11', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081205, 130, '2020-04-12', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081206, 130, '2020-04-13', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081207, 130, '2020-04-14', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085306, 106, '2020-06-08', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '04:10:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '04:10:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085307, 106, '2020-06-09', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '04:10:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '04:10:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085308, 106, '2020-06-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '04:10:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '04:10:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085309, 106, '2020-06-11', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '04:10:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '04:10:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081223, 129, '2020-03-05', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081224, 129, '2020-03-06', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081225, 129, '2020-03-07', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081226, 129, '2020-03-08', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081227, 129, '2020-03-09', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081228, 129, '2020-03-10', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081229, 129, '2020-03-11', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081230, 129, '2020-03-12', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081231, 129, '2020-03-13', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081232, 129, '2020-03-14', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081233, 129, '2020-03-15', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081234, 129, '2020-03-16', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081235, 129, '2020-03-17', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081236, 129, '2020-03-18', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085314, 110, '2020-04-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085315, 110, '2020-04-22', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085330, 110, '2020-05-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085635, 143, '2020-06-01', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081253, 129, '2020-04-04', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081254, 129, '2020-04-05', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081255, 129, '2020-04-06', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081256, 129, '2020-04-07', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081257, 129, '2020-04-08', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081258, 129, '2020-04-09', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081259, 129, '2020-04-10', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081260, 129, '2020-04-11', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081261, 129, '2020-04-12', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081262, 129, '2020-04-13', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081263, 129, '2020-04-14', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081264, 129, '2020-04-15', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081265, 129, '2020-04-16', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081266, 129, '2020-04-17', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081267, 129, '2020-04-18', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085336, 110, '2020-05-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085337, 110, '2020-05-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085338, 110, '2020-05-15', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081282, 143, '2020-03-08', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081283, 143, '2020-03-09', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081284, 143, '2020-03-10', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081285, 143, '2020-03-11', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081286, 143, '2020-03-12', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081287, 143, '2020-03-13', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081288, 143, '2020-03-14', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081289, 143, '2020-03-15', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081290, 143, '2020-03-16', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081291, 143, '2020-03-17', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081292, 143, '2020-03-18', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081293, 143, '2020-03-19', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081294, 143, '2020-03-20', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081295, 143, '2020-03-21', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085343, 110, '2020-05-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085344, 110, '2020-05-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085359, 110, '2020-06-05', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085360, 110, '2020-06-06', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086114, 121, '2020-07-02', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081312, 143, '2020-04-07', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081313, 143, '2020-04-08', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081314, 143, '2020-04-09', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081315, 143, '2020-04-10', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081316, 143, '2020-04-11', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081317, 143, '2020-04-12', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081318, 143, '2020-04-13', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081319, 143, '2020-04-14', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081320, 143, '2020-04-15', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081321, 143, '2020-04-16', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081322, 143, '2020-04-17', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081323, 143, '2020-04-18', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1081324, 143, '2020-04-19', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083490, 146, '2020-04-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085365, 110, '2020-06-11', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085366, 110, '2020-06-12', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085367, 110, '2020-06-13', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085368, 110, '2020-06-14', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083506, 146, '2020-05-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083507, 146, '2020-05-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083508, 146, '2020-05-08', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083509, 146, '2020-05-09', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083510, 146, '2020-05-10', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083511, 146, '2020-05-11', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083512, 146, '2020-05-12', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083513, 146, '2020-05-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083514, 146, '2020-05-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083515, 146, '2020-05-15', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083516, 146, '2020-05-16', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083517, 146, '2020-05-17', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083518, 146, '2020-05-18', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083519, 146, '2020-05-19', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085373, 145, '2020-04-24', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085374, 145, '2020-04-25', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085390, 145, '2020-05-11', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085652, 146, '2020-06-18', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086137, 121, '2020-07-25', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083535, 146, '2020-06-04', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083536, 146, '2020-06-05', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083537, 146, '2020-06-06', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083538, 146, '2020-06-07', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083539, 146, '2020-06-08', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083540, 146, '2020-06-09', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083541, 146, '2020-06-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083542, 146, '2020-06-11', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083543, 146, '2020-06-12', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083544, 146, '2020-06-13', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083545, 146, '2020-06-14', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083546, 115, '2020-04-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083547, 115, '2020-04-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083548, 115, '2020-04-22', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085397, 145, '2020-05-18', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085398, 145, '2020-05-19', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085399, 145, '2020-05-20', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083564, 115, '2020-05-08', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083565, 115, '2020-05-09', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083566, 115, '2020-05-10', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083567, 115, '2020-05-11', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083568, 115, '2020-05-12', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083569, 115, '2020-05-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083570, 115, '2020-05-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083571, 115, '2020-05-15', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083572, 115, '2020-05-16', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083573, 115, '2020-05-17', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083574, 115, '2020-05-18', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083575, 115, '2020-05-19', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083576, 115, '2020-05-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083577, 115, '2020-05-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085419, 145, '2020-06-09', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085420, 145, '2020-06-10', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085421, 145, '2020-06-11', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085422, 145, '2020-06-12', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083593, 115, '2020-06-06', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083594, 115, '2020-06-07', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083595, 115, '2020-06-08', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083596, 115, '2020-06-09', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083597, 115, '2020-06-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083598, 115, '2020-06-11', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083599, 115, '2020-06-12', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083600, 115, '2020-06-13', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083601, 115, '2020-06-14', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083602, 114, '2020-04-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083603, 114, '2020-04-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083604, 114, '2020-04-22', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083605, 114, '2020-04-23', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083606, 114, '2020-04-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085427, 148, '2020-04-22', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085428, 148, '2020-04-23', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085429, 148, '2020-04-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085430, 148, '2020-04-25', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1008198, 103, '2019-12-30', '08:00:00', '12:00:00', NULL, NULL, NULL, '04:00:00', '06:40:00', NULL, 5, NULL, '04:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1008199, 103, '2019-12-31', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083623, 114, '2020-05-11', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083624, 114, '2020-05-12', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083625, 114, '2020-05-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083626, 114, '2020-05-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083627, 114, '2020-05-15', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083628, 114, '2020-05-16', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083629, 114, '2020-05-17', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083630, 114, '2020-05-18', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083631, 114, '2020-05-19', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083632, 114, '2020-05-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083633, 114, '2020-05-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083634, 114, '2020-05-22', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083635, 114, '2020-05-23', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085449, 148, '2020-05-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085450, 148, '2020-05-15', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085451, 148, '2020-05-16', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083648, 114, '2020-06-05', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083649, 114, '2020-06-06', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083650, 114, '2020-06-07', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083651, 114, '2020-06-08', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083652, 114, '2020-06-09', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083653, 114, '2020-06-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083654, 114, '2020-06-11', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083655, 114, '2020-06-12', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083656, 114, '2020-06-13', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083657, 114, '2020-06-14', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083658, 112, '2020-04-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083659, 112, '2020-04-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083660, 112, '2020-04-22', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083661, 112, '2020-04-23', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085455, 148, '2020-05-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085456, 148, '2020-05-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085457, 148, '2020-05-22', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085458, 148, '2020-05-23', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086142, 121, '2020-07-30', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083678, 112, '2020-05-10', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083679, 112, '2020-05-11', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083680, 112, '2020-05-12', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083681, 112, '2020-05-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083682, 112, '2020-05-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083683, 112, '2020-05-15', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083684, 112, '2020-05-16', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083685, 112, '2020-05-17', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083686, 112, '2020-05-18', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083687, 112, '2020-05-19', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083688, 112, '2020-05-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083689, 112, '2020-05-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083690, 112, '2020-05-22', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083691, 112, '2020-05-23', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083692, 112, '2020-05-24', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085477, 148, '2020-06-11', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085478, 148, '2020-06-12', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085479, 148, '2020-06-13', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085480, 148, '2020-06-14', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083707, 108, '2020-04-27', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083708, 108, '2020-04-28', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083709, 108, '2020-04-29', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083710, 108, '2020-04-30', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083711, 108, '2020-05-01', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083712, 108, '2020-05-02', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083713, 108, '2020-05-03', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083714, 108, '2020-05-04', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083715, 108, '2020-05-05', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083716, 108, '2020-05-06', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083717, 108, '2020-05-07', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083718, 108, '2020-05-08', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083719, 108, '2020-05-09', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083720, 108, '2020-05-10', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085484, 130, '2020-04-23', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085485, 130, '2020-04-24', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085486, 130, '2020-04-25', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085487, 130, '2020-04-26', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083736, 108, '2020-05-26', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083737, 108, '2020-05-27', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083738, 108, '2020-05-28', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083739, 108, '2020-05-29', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083740, 108, '2020-05-30', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083741, 108, '2020-05-31', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083742, 108, '2020-06-01', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083743, 108, '2020-06-02', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083744, 108, '2020-06-03', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083745, 108, '2020-06-04', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083746, 108, '2020-06-05', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083747, 108, '2020-06-06', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083748, 108, '2020-06-07', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083749, 108, '2020-06-08', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085506, 130, '2020-05-15', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085507, 130, '2020-05-16', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085508, 130, '2020-05-17', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085509, 130, '2020-05-18', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1008144, 103, '2020-01-01', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1008145, 103, '2020-01-02', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1008146, 103, '2020-01-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1008147, 103, '2020-01-04', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1008148, 103, '2020-01-05', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1008149, 103, '2020-01-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1008150, 103, '2020-01-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1008151, 103, '2020-01-08', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1008152, 103, '2020-01-09', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1008153, 103, '2020-01-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1008154, 103, '2020-01-11', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1008155, 103, '2020-01-12', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1008156, 103, '2020-01-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1008157, 103, '2020-01-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1008158, 103, '2020-01-15', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1008159, 103, '2020-01-16', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1008160, 103, '2020-01-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1008161, 103, '2020-01-18', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086164, 117, '2020-07-05', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1008175, 103, '2020-02-01', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1008176, 103, '2020-02-02', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1008177, 103, '2020-02-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1008178, 103, '2020-02-04', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1008179, 103, '2020-02-05', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1008180, 103, '2020-02-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1008181, 103, '2020-02-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1008182, 103, '2020-02-08', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1008183, 103, '2020-02-09', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1008184, 103, '2020-02-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1008185, 103, '2020-02-11', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1008186, 103, '2020-02-12', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1008187, 103, '2020-02-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1008188, 103, '2020-02-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1008189, 103, '2020-02-15', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1008190, 103, '2020-02-16', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1008191, 103, '2020-02-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1008192, 103, '2020-02-18', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083769, 135, '2020-05-03', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083770, 135, '2020-05-04', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083771, 135, '2020-05-05', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083772, 135, '2020-05-06', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083773, 135, '2020-05-07', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083774, 135, '2020-05-08', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083775, 135, '2020-05-09', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083776, 135, '2020-05-10', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083777, 135, '2020-05-11', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083778, 135, '2020-05-12', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083779, 135, '2020-05-13', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083780, 135, '2020-05-14', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083781, 135, '2020-05-15', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083782, 135, '2020-05-16', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085517, 130, '2020-05-26', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085518, 130, '2020-05-27', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085519, 130, '2020-05-28', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085682, 146, '2020-07-18', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083799, 135, '2020-06-02', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083800, 135, '2020-06-03', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083801, 135, '2020-06-04', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083802, 135, '2020-06-05', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083803, 135, '2020-06-06', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083804, 135, '2020-06-07', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083805, 135, '2020-06-08', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083806, 135, '2020-06-09', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083807, 135, '2020-06-10', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083808, 135, '2020-06-11', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083809, 135, '2020-06-12', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083810, 135, '2020-06-13', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083811, 135, '2020-06-14', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083812, 127, '2020-04-20', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085539, 129, '2020-04-22', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085540, 129, '2020-04-23', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085541, 129, '2020-04-24', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085542, 129, '2020-04-25', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083828, 127, '2020-05-06', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083829, 127, '2020-05-07', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083830, 127, '2020-05-08', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083831, 127, '2020-05-09', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083832, 127, '2020-05-10', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083833, 127, '2020-05-11', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083834, 127, '2020-05-12', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083835, 127, '2020-05-13', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083836, 127, '2020-05-14', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083837, 127, '2020-05-15', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083838, 127, '2020-05-16', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083839, 127, '2020-05-17', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083840, 127, '2020-05-18', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083841, 127, '2020-05-19', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085547, 129, '2020-04-30', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085548, 129, '2020-05-01', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085549, 129, '2020-05-02', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085565, 129, '2020-05-18', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083857, 127, '2020-06-04', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083858, 127, '2020-06-05', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083859, 127, '2020-06-06', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083860, 127, '2020-06-07', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083861, 127, '2020-06-08', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083862, 127, '2020-06-09', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083863, 127, '2020-06-10', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083864, 127, '2020-06-11', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083865, 127, '2020-06-12', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083866, 127, '2020-06-13', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083867, 127, '2020-06-14', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083868, 149, '2020-04-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083869, 149, '2020-04-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083870, 149, '2020-04-22', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085570, 129, '2020-05-23', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085571, 129, '2020-05-24', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085572, 129, '2020-05-25', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085573, 129, '2020-05-26', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085689, 146, '2020-07-25', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083886, 149, '2020-05-08', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083887, 149, '2020-05-09', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083888, 149, '2020-05-10', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083889, 149, '2020-05-11', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083890, 149, '2020-05-12', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083891, 149, '2020-05-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083892, 149, '2020-05-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083893, 149, '2020-05-15', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083894, 149, '2020-05-16', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083895, 149, '2020-05-17', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083896, 149, '2020-05-18', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083897, 149, '2020-05-19', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083898, 149, '2020-05-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083899, 149, '2020-05-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085593, 143, '2020-04-20', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085594, 143, '2020-04-21', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085595, 143, '2020-04-22', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085690, 146, '2020-07-26', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083915, 149, '2020-06-06', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083916, 149, '2020-06-07', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083917, 149, '2020-06-08', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083918, 149, '2020-06-09', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083919, 149, '2020-06-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083920, 149, '2020-06-11', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083921, 149, '2020-06-12', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083922, 149, '2020-06-13', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083923, 149, '2020-06-14', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083924, 103, '2020-04-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083925, 103, '2020-04-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083926, 103, '2020-04-22', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083927, 103, '2020-04-23', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083928, 103, '2020-04-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085601, 143, '2020-04-28', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085602, 143, '2020-04-29', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085603, 143, '2020-04-30', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085604, 143, '2020-05-01', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083945, 103, '2020-05-11', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083946, 103, '2020-05-12', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083947, 103, '2020-05-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083948, 103, '2020-05-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083949, 103, '2020-05-15', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083950, 103, '2020-05-16', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083951, 103, '2020-05-17', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083952, 103, '2020-05-18', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083953, 103, '2020-05-19', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083954, 103, '2020-05-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083955, 103, '2020-05-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083956, 103, '2020-05-22', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083957, 103, '2020-05-23', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083958, 103, '2020-05-24', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085623, 143, '2020-05-20', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085624, 143, '2020-05-21', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085625, 143, '2020-05-22', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085626, 143, '2020-05-23', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083974, 103, '2020-06-09', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083975, 103, '2020-06-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083976, 103, '2020-06-11', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083977, 103, '2020-06-12', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083978, 103, '2020-06-13', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083979, 103, '2020-06-14', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083980, 121, '2020-04-20', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083981, 121, '2020-04-21', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083982, 121, '2020-04-22', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083983, 121, '2020-04-23', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083984, 121, '2020-04-24', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083985, 121, '2020-04-25', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083986, 121, '2020-04-26', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1083987, 121, '2020-04-27', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085631, 143, '2020-05-28', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085632, 143, '2020-05-29', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085633, 143, '2020-05-30', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085634, 143, '2020-05-31', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085711, 115, '2020-06-21', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084003, 121, '2020-05-13', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084004, 121, '2020-05-14', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084005, 121, '2020-05-15', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084006, 121, '2020-05-16', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084007, 121, '2020-05-17', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084008, 121, '2020-05-18', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084009, 121, '2020-05-19', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084010, 121, '2020-05-20', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084011, 121, '2020-05-21', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084012, 121, '2020-05-22', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084013, 121, '2020-05-23', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084014, 121, '2020-05-24', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084015, 121, '2020-05-25', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084016, 121, '2020-05-26', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085653, 146, '2020-06-19', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085654, 146, '2020-06-20', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085655, 146, '2020-06-21', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085656, 146, '2020-06-22', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084032, 121, '2020-06-11', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084033, 121, '2020-06-12', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084034, 121, '2020-06-13', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084035, 121, '2020-06-14', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084036, 117, '2020-05-01', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084037, 117, '2020-05-02', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084038, 117, '2020-05-03', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084039, 117, '2020-05-04', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084040, 117, '2020-05-05', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084041, 117, '2020-05-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084042, 117, '2020-05-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084043, 117, '2020-05-08', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084044, 117, '2020-05-09', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084045, 117, '2020-05-10', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084046, 117, '2020-05-11', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085661, 146, '2020-06-27', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085662, 146, '2020-06-28', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085663, 146, '2020-06-29', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085664, 146, '2020-06-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084061, 117, '2020-05-26', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084062, 117, '2020-05-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084063, 117, '2020-05-28', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084064, 117, '2020-05-29', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084065, 117, '2020-05-30', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084066, 117, '2020-05-31', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084067, 117, '2020-06-01', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084068, 117, '2020-06-02', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084069, 117, '2020-06-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084070, 117, '2020-06-04', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084071, 117, '2020-06-05', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084072, 117, '2020-06-06', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084073, 117, '2020-06-07', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084074, 117, '2020-06-08', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085683, 146, '2020-07-19', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085684, 146, '2020-07-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085685, 146, '2020-07-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085686, 146, '2020-07-22', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084090, 125, '2020-04-29', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '03:20:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084091, 125, '2020-04-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '03:20:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084092, 125, '2020-05-01', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '03:20:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084093, 125, '2020-05-02', NULL, NULL, NULL, NULL, NULL, '00:00:00', '03:20:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '03:20:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084094, 125, '2020-05-03', NULL, NULL, NULL, NULL, NULL, '00:00:00', '03:20:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084095, 125, '2020-05-04', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '03:20:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084096, 125, '2020-05-05', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '03:20:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084097, 125, '2020-05-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '03:20:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084098, 125, '2020-05-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '03:20:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084099, 125, '2020-05-08', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '03:20:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084100, 125, '2020-05-09', NULL, NULL, NULL, NULL, NULL, '00:00:00', '03:20:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '03:20:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084101, 125, '2020-05-10', NULL, NULL, NULL, NULL, NULL, '00:00:00', '03:20:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084102, 125, '2020-05-11', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '03:20:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084103, 125, '2020-05-12', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '03:20:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085691, 146, '2020-07-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085692, 146, '2020-07-28', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085693, 146, '2020-07-29', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085694, 146, '2020-07-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084119, 125, '2020-05-28', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '03:20:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084120, 125, '2020-05-29', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '03:20:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084121, 125, '2020-05-30', NULL, NULL, NULL, NULL, NULL, '00:00:00', '03:20:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '03:20:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084122, 125, '2020-05-31', NULL, NULL, NULL, NULL, NULL, '00:00:00', '03:20:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084123, 125, '2020-06-01', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '03:20:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084124, 125, '2020-06-02', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '03:20:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084125, 125, '2020-06-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '03:20:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084126, 125, '2020-06-04', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '03:20:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084127, 125, '2020-06-05', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '03:20:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084128, 125, '2020-06-06', NULL, NULL, NULL, NULL, NULL, '00:00:00', '03:20:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '03:20:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084129, 125, '2020-06-07', NULL, NULL, NULL, NULL, NULL, '00:00:00', '03:20:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084130, 125, '2020-06-08', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '03:20:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084131, 125, '2020-06-09', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '03:20:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084132, 125, '2020-06-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '03:20:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085713, 115, '2020-06-23', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085714, 115, '2020-06-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085715, 115, '2020-06-25', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085719, 115, '2020-06-29', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084148, 119, '2020-05-01', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084149, 119, '2020-05-02', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084150, 119, '2020-05-03', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084151, 119, '2020-05-04', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084152, 119, '2020-05-05', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084153, 119, '2020-05-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084154, 119, '2020-05-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084155, 119, '2020-05-08', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084156, 119, '2020-05-09', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084157, 119, '2020-05-10', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084158, 119, '2020-05-11', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084159, 119, '2020-05-12', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084160, 119, '2020-05-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084161, 119, '2020-05-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085720, 115, '2020-06-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085721, 115, '2020-07-01', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085722, 115, '2020-07-02', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085723, 115, '2020-07-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084178, 119, '2020-05-31', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084179, 119, '2020-06-01', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084180, 119, '2020-06-02', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084181, 119, '2020-06-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084182, 119, '2020-06-04', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084183, 119, '2020-06-05', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084184, 119, '2020-06-06', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084185, 119, '2020-06-07', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084186, 119, '2020-06-08', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084187, 119, '2020-06-09', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084188, 119, '2020-06-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084189, 119, '2020-06-11', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084190, 119, '2020-06-12', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084191, 119, '2020-06-13', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084192, 119, '2020-06-14', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085740, 115, '2020-07-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085741, 115, '2020-07-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085742, 115, '2020-07-22', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086165, 117, '2020-07-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084207, 113, '2020-05-04', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084208, 113, '2020-05-05', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084209, 113, '2020-05-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084210, 113, '2020-05-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084211, 113, '2020-05-08', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084212, 113, '2020-05-09', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084213, 113, '2020-05-10', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084214, 113, '2020-05-11', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084215, 113, '2020-05-12', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084216, 113, '2020-05-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084217, 113, '2020-05-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084218, 113, '2020-05-15', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084219, 113, '2020-05-16', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084220, 113, '2020-05-17', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085743, 115, '2020-07-23', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085744, 115, '2020-07-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085745, 115, '2020-07-25', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085746, 115, '2020-07-26', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084236, 113, '2020-06-02', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084237, 113, '2020-06-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084238, 113, '2020-06-04', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084239, 113, '2020-06-05', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084240, 113, '2020-06-06', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084241, 113, '2020-06-07', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084242, 113, '2020-06-08', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084243, 113, '2020-06-09', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084244, 113, '2020-06-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084245, 113, '2020-06-11', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084246, 113, '2020-06-12', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084247, 113, '2020-06-13', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084248, 113, '2020-06-14', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084249, 147, '2020-04-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085748, 115, '2020-07-28', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085749, 115, '2020-07-29', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085750, 115, '2020-07-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085751, 115, '2020-07-31', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084265, 147, '2020-05-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084266, 147, '2020-05-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084267, 147, '2020-05-08', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084268, 147, '2020-05-09', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084269, 147, '2020-05-10', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084270, 147, '2020-05-11', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084271, 147, '2020-05-12', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084272, 147, '2020-05-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084273, 147, '2020-05-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084274, 147, '2020-05-15', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084275, 147, '2020-05-16', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084276, 147, '2020-05-17', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084277, 147, '2020-05-18', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084278, 147, '2020-05-19', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085752, 115, '2020-08-01', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085753, 115, '2020-08-02', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085768, 114, '2020-06-22', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085769, 114, '2020-06-23', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084294, 147, '2020-06-04', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084295, 147, '2020-06-05', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084296, 147, '2020-06-06', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084297, 147, '2020-06-07', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084298, 147, '2020-06-08', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084299, 147, '2020-06-09', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084300, 147, '2020-06-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084301, 147, '2020-06-11', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084302, 147, '2020-06-12', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084303, 147, '2020-06-13', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084304, 147, '2020-06-14', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084305, 131, '2020-04-20', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '04:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '04:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084306, 131, '2020-04-21', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '04:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '04:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084307, 131, '2020-04-22', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '04:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '04:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085771, 114, '2020-06-25', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085772, 114, '2020-06-26', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085773, 114, '2020-06-27', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085774, 114, '2020-06-28', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084323, 131, '2020-05-08', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '04:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '04:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084324, 131, '2020-05-09', NULL, NULL, NULL, NULL, NULL, '00:00:00', '04:00:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084325, 131, '2020-05-10', NULL, NULL, NULL, NULL, NULL, '00:00:00', '04:00:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084326, 131, '2020-05-11', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '04:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '04:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084327, 131, '2020-05-12', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '04:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '04:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084328, 131, '2020-05-13', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '04:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '04:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084329, 131, '2020-05-14', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '04:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '04:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084330, 131, '2020-05-15', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '04:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '04:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084331, 131, '2020-05-16', NULL, NULL, NULL, NULL, NULL, '00:00:00', '04:00:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084332, 131, '2020-05-17', NULL, NULL, NULL, NULL, NULL, '00:00:00', '04:00:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084333, 131, '2020-05-18', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '04:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '04:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084334, 131, '2020-05-19', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '04:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '04:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084335, 131, '2020-05-20', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '04:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '04:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084336, 131, '2020-05-21', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '04:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '04:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085776, 114, '2020-06-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085777, 114, '2020-07-01', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085778, 114, '2020-07-02', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085779, 114, '2020-07-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084353, 131, '2020-06-07', NULL, NULL, NULL, NULL, NULL, '00:00:00', '04:00:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084354, 131, '2020-06-08', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '04:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '04:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084355, 131, '2020-06-09', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '04:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '04:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084356, 131, '2020-06-10', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '04:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '04:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084357, 131, '2020-06-11', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '04:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '04:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084358, 131, '2020-06-12', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '04:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '04:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084359, 131, '2020-06-13', NULL, NULL, NULL, NULL, NULL, '00:00:00', '04:00:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084360, 131, '2020-06-14', NULL, NULL, NULL, NULL, NULL, '00:00:00', '04:00:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084361, 104, '2020-04-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084362, 104, '2020-04-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084363, 104, '2020-04-22', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084364, 104, '2020-04-23', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084365, 104, '2020-04-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084366, 104, '2020-04-25', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:00:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084367, 104, '2020-04-26', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:00:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085781, 114, '2020-07-05', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085782, 114, '2020-07-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085797, 114, '2020-07-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085798, 114, '2020-07-22', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084382, 104, '2020-05-11', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084383, 104, '2020-05-12', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084384, 104, '2020-05-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084385, 104, '2020-05-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084386, 104, '2020-05-15', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084387, 104, '2020-05-16', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:00:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084388, 104, '2020-05-17', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:00:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084389, 104, '2020-05-18', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084390, 104, '2020-05-19', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084391, 104, '2020-05-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084392, 104, '2020-05-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084393, 104, '2020-05-22', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084394, 104, '2020-05-23', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:00:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084395, 104, '2020-05-24', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:00:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085799, 114, '2020-07-23', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085800, 114, '2020-07-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085801, 114, '2020-07-25', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085802, 114, '2020-07-26', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084411, 104, '2020-06-09', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084412, 104, '2020-06-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084413, 104, '2020-06-11', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084414, 104, '2020-06-12', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084415, 104, '2020-06-13', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:00:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084416, 104, '2020-06-14', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:00:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084417, 151, '2020-04-20', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084418, 151, '2020-04-21', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084419, 151, '2020-04-22', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084420, 151, '2020-04-23', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084421, 151, '2020-04-24', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084422, 151, '2020-04-25', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084423, 151, '2020-04-26', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084424, 151, '2020-04-27', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085804, 114, '2020-07-28', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085805, 114, '2020-07-29', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085806, 114, '2020-07-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085807, 114, '2020-07-31', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1010296, 121, '2020-01-01', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1010297, 121, '2020-01-02', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1010298, 121, '2020-01-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084440, 151, '2020-05-13', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084441, 151, '2020-05-14', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084442, 151, '2020-05-15', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084443, 151, '2020-05-16', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084444, 151, '2020-05-17', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084445, 151, '2020-05-18', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084446, 151, '2020-05-19', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084447, 151, '2020-05-20', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084448, 151, '2020-05-21', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084449, 151, '2020-05-22', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084450, 151, '2020-05-23', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084451, 151, '2020-05-24', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085809, 114, '2020-08-02', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085810, 114, '2020-08-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085811, 114, '2020-08-04', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1010299, 121, '2020-01-04', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1010300, 121, '2020-01-05', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1010301, 121, '2020-01-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1010302, 121, '2020-01-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1010303, 121, '2020-01-08', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1010304, 121, '2020-01-09', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1010305, 121, '2020-01-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1010306, 121, '2020-01-11', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1010307, 121, '2020-01-12', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1010308, 121, '2020-01-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1010309, 121, '2020-01-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1010310, 121, '2020-01-15', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1010311, 121, '2020-01-16', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084465, 151, '2020-06-07', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084466, 151, '2020-06-08', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084467, 151, '2020-06-09', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084468, 151, '2020-06-10', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084469, 151, '2020-06-11', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086188, 117, '2020-07-29', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084474, 138, '2020-04-21', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084475, 138, '2020-04-22', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084476, 138, '2020-04-23', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084477, 138, '2020-04-24', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084478, 138, '2020-04-25', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084479, 138, '2020-04-26', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084480, 138, '2020-04-27', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084481, 138, '2020-04-28', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084482, 138, '2020-04-29', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084483, 138, '2020-04-30', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084484, 138, '2020-05-01', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084485, 138, '2020-05-02', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084486, 138, '2020-05-03', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084487, 138, '2020-05-04', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085827, 108, '2020-06-25', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085828, 108, '2020-06-26', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085829, 108, '2020-06-27', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085830, 108, '2020-06-28', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084503, 138, '2020-05-20', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084504, 138, '2020-05-21', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084505, 138, '2020-05-22', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084506, 138, '2020-05-23', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084507, 138, '2020-05-24', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084508, 138, '2020-05-25', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084509, 138, '2020-05-26', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084510, 138, '2020-05-27', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084511, 138, '2020-05-28', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084512, 138, '2020-05-29', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084513, 138, '2020-05-30', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084514, 138, '2020-05-31', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084515, 138, '2020-06-01', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084516, 138, '2020-06-02', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085832, 108, '2020-06-30', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085833, 108, '2020-07-01', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085834, 108, '2020-07-02', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085835, 108, '2020-07-03', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084532, 105, '2020-04-23', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084533, 105, '2020-04-24', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084534, 105, '2020-04-25', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084535, 105, '2020-04-26', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084536, 105, '2020-04-27', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084537, 105, '2020-04-28', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084538, 105, '2020-04-29', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084539, 105, '2020-04-30', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084540, 105, '2020-05-01', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084541, 105, '2020-05-02', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084542, 105, '2020-05-03', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084543, 105, '2020-05-04', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084544, 105, '2020-05-05', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084545, 105, '2020-05-06', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085837, 108, '2020-07-05', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085838, 108, '2020-07-06', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085839, 108, '2020-07-07', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085840, 108, '2020-07-08', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084561, 105, '2020-05-22', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084562, 105, '2020-05-23', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084563, 105, '2020-05-24', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084564, 105, '2020-05-25', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084565, 105, '2020-05-26', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084566, 105, '2020-05-27', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084567, 105, '2020-05-28', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084568, 105, '2020-05-29', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084569, 105, '2020-05-30', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084570, 105, '2020-05-31', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084571, 105, '2020-06-01', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084572, 105, '2020-06-02', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084573, 105, '2020-06-03', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084574, 105, '2020-06-04', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085856, 108, '2020-07-24', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085857, 108, '2020-07-25', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085858, 108, '2020-07-26', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085859, 108, '2020-07-27', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084591, 134, '2020-04-26', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084592, 134, '2020-04-27', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084593, 134, '2020-04-28', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084594, 134, '2020-04-29', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084595, 134, '2020-04-30', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084596, 134, '2020-05-01', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084597, 134, '2020-05-02', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084598, 134, '2020-05-03', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084599, 134, '2020-05-04', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084600, 134, '2020-05-05', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084601, 134, '2020-05-06', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084602, 134, '2020-05-07', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084603, 134, '2020-05-08', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084604, 134, '2020-05-09', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084605, 134, '2020-05-10', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085861, 108, '2020-07-29', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085862, 108, '2020-07-30', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085863, 108, '2020-07-31', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084620, 134, '2020-05-25', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084621, 134, '2020-05-26', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084622, 134, '2020-05-27', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084623, 134, '2020-05-28', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084624, 134, '2020-05-29', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084625, 134, '2020-05-30', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084626, 134, '2020-05-31', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084627, 134, '2020-06-01', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084628, 134, '2020-06-02', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084629, 134, '2020-06-03', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084630, 134, '2020-06-04', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084631, 134, '2020-06-05', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084632, 134, '2020-06-06', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084633, 134, '2020-06-07', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085865, 108, '2020-08-02', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085866, 108, '2020-08-03', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085867, 108, '2020-08-04', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085868, 108, '2020-08-05', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086193, 117, '2020-08-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084649, 102, '2020-04-28', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084650, 102, '2020-04-29', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084651, 102, '2020-04-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084652, 102, '2020-05-01', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084653, 102, '2020-05-02', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084654, 102, '2020-05-03', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084655, 102, '2020-05-04', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084656, 102, '2020-05-05', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084657, 102, '2020-05-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084658, 102, '2020-05-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084659, 102, '2020-05-08', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084660, 102, '2020-05-09', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084661, 102, '2020-05-10', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084662, 102, '2020-05-11', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085869, 108, '2020-08-06', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085875, 135, '2020-06-17', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085876, 135, '2020-06-18', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085877, 135, '2020-06-19', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084678, 102, '2020-05-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084679, 102, '2020-05-28', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084680, 102, '2020-05-29', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084681, 102, '2020-05-30', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084682, 102, '2020-05-31', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084683, 102, '2020-06-01', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084684, 102, '2020-06-02', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084685, 102, '2020-06-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084686, 102, '2020-06-04', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084687, 102, '2020-06-05', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084688, 102, '2020-06-06', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084689, 102, '2020-06-07', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084690, 102, '2020-06-08', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084691, 102, '2020-06-09', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085879, 135, '2020-06-21', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085880, 135, '2020-06-22', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085881, 135, '2020-06-23', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085896, 135, '2020-07-08', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086198, 117, '2020-08-08', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084707, 109, '2020-04-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084708, 109, '2020-05-01', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084709, 109, '2020-05-02', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084710, 109, '2020-05-03', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084711, 109, '2020-05-04', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084712, 109, '2020-05-05', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084713, 109, '2020-05-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084714, 109, '2020-05-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084715, 109, '2020-05-08', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084716, 109, '2020-05-09', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084717, 109, '2020-05-10', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084718, 109, '2020-05-11', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084719, 109, '2020-05-12', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084720, 109, '2020-05-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085898, 135, '2020-07-10', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085899, 135, '2020-07-11', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085900, 135, '2020-07-12', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085901, 135, '2020-07-13', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086229, 125, '2020-07-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '03:20:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086248, 125, '2020-08-02', NULL, NULL, NULL, NULL, NULL, '00:00:00', '03:20:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084736, 109, '2020-05-29', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084737, 109, '2020-05-30', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084738, 109, '2020-05-31', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084739, 109, '2020-06-01', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084740, 109, '2020-06-02', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084741, 109, '2020-06-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084742, 109, '2020-06-04', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084743, 109, '2020-06-05', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084744, 109, '2020-06-06', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084745, 109, '2020-06-07', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084746, 109, '2020-06-08', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084747, 109, '2020-06-09', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084748, 109, '2020-06-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084749, 109, '2020-06-11', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085902, 135, '2020-07-14', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085903, 135, '2020-07-15', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085904, 135, '2020-07-16', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085905, 135, '2020-07-17', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084766, 118, '2020-05-03', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084767, 118, '2020-05-04', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084768, 118, '2020-05-05', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084769, 118, '2020-05-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084770, 118, '2020-05-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084771, 118, '2020-05-08', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084772, 118, '2020-05-09', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084773, 118, '2020-05-10', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084774, 118, '2020-05-11', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084775, 118, '2020-05-12', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084776, 118, '2020-05-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084777, 118, '2020-05-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084778, 118, '2020-05-15', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084779, 118, '2020-05-16', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084780, 118, '2020-05-17', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085907, 135, '2020-07-19', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085908, 135, '2020-07-20', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085909, 135, '2020-07-21', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084795, 118, '2020-06-01', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084796, 118, '2020-06-02', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084797, 118, '2020-06-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084798, 118, '2020-06-04', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084799, 118, '2020-06-05', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084800, 118, '2020-06-06', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084801, 118, '2020-06-07', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084802, 118, '2020-06-08', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084803, 118, '2020-06-09', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084804, 118, '2020-06-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084805, 118, '2020-06-11', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084806, 118, '2020-06-12', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084807, 118, '2020-06-13', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084808, 118, '2020-06-14', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085925, 135, '2020-08-06', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085926, 135, '2020-08-07', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085927, 135, '2020-08-08', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085928, 135, '2020-08-09', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086258, 119, '2020-06-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086277, 119, '2020-07-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084824, 133, '2020-05-05', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084825, 133, '2020-05-06', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084826, 133, '2020-05-07', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084827, 133, '2020-05-08', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084828, 133, '2020-05-09', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084829, 133, '2020-05-10', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084830, 133, '2020-05-11', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084831, 133, '2020-05-12', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084832, 133, '2020-05-13', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084833, 133, '2020-05-14', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084834, 133, '2020-05-15', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084835, 133, '2020-05-16', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084836, 133, '2020-05-17', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084837, 133, '2020-05-18', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085929, 127, '2020-06-15', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085930, 127, '2020-06-16', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085931, 127, '2020-06-17', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085932, 127, '2020-06-18', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084853, 133, '2020-06-03', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084854, 133, '2020-06-04', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084855, 133, '2020-06-05', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084856, 133, '2020-06-06', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084857, 133, '2020-06-07', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084858, 133, '2020-06-08', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084859, 133, '2020-06-09', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084860, 133, '2020-06-10', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084861, 133, '2020-06-11', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084862, 133, '2020-06-12', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084863, 133, '2020-06-13', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084864, 133, '2020-06-14', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084865, 111, '2020-04-20', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084866, 111, '2020-04-21', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085933, 127, '2020-06-19', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085934, 127, '2020-06-20', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085935, 127, '2020-06-21', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085936, 127, '2020-06-22', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084882, 111, '2020-05-07', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084883, 111, '2020-05-08', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084884, 111, '2020-05-09', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084885, 111, '2020-05-10', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084886, 111, '2020-05-11', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084887, 111, '2020-05-12', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084888, 111, '2020-05-13', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084889, 111, '2020-05-14', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084890, 111, '2020-05-15', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084891, 111, '2020-05-16', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084892, 111, '2020-05-17', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084893, 111, '2020-05-18', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084894, 111, '2020-05-19', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084895, 111, '2020-05-20', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085938, 127, '2020-06-24', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085939, 127, '2020-06-25', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085954, 127, '2020-07-10', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085955, 127, '2020-07-11', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084911, 111, '2020-06-05', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084912, 111, '2020-06-06', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084913, 111, '2020-06-07', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084914, 111, '2020-06-08', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084915, 111, '2020-06-09', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084916, 111, '2020-06-10', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084917, 111, '2020-06-11', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084918, 111, '2020-06-12', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084919, 111, '2020-06-13', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084920, 111, '2020-06-14', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084921, 128, '2020-04-20', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084922, 128, '2020-04-21', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084923, 128, '2020-04-22', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084924, 128, '2020-04-23', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085957, 127, '2020-07-13', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085958, 127, '2020-07-14', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085959, 127, '2020-07-15', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084941, 128, '2020-05-10', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084942, 128, '2020-05-11', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084943, 128, '2020-05-12', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084944, 128, '2020-05-13', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084945, 128, '2020-05-14', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084946, 128, '2020-05-15', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084947, 128, '2020-05-16', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084948, 128, '2020-05-17', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084949, 128, '2020-05-18', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084950, 128, '2020-05-19', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084951, 128, '2020-05-20', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084952, 128, '2020-05-21', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084953, 128, '2020-05-22', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084954, 128, '2020-05-23', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084955, 128, '2020-05-24', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085962, 127, '2020-07-18', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085963, 127, '2020-07-19', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085964, 127, '2020-07-20', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085965, 127, '2020-07-21', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084970, 128, '2020-06-08', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084971, 128, '2020-06-09', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084972, 128, '2020-06-10', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084973, 128, '2020-06-11', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084974, 128, '2020-06-12', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084975, 128, '2020-06-13', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084976, 128, '2020-06-14', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084977, 142, '2020-04-20', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084978, 142, '2020-04-21', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084979, 142, '2020-04-22', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084980, 142, '2020-04-23', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084981, 142, '2020-04-24', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084982, 142, '2020-04-25', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084983, 142, '2020-04-26', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085966, 127, '2020-07-22', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085967, 127, '2020-07-23', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085968, 127, '2020-07-24', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085983, 127, '2020-08-08', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1084999, 142, '2020-05-12', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085000, 142, '2020-05-13', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085001, 142, '2020-05-14', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085002, 142, '2020-05-15', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085003, 142, '2020-05-16', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085004, 142, '2020-05-17', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085005, 142, '2020-05-18', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085006, 142, '2020-05-19', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085007, 142, '2020-05-20', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085008, 142, '2020-05-21', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085009, 142, '2020-05-22', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085010, 142, '2020-05-23', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085011, 142, '2020-05-24', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085012, 142, '2020-05-25', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085985, 149, '2020-06-15', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085986, 149, '2020-06-16', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085987, 149, '2020-06-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085028, 142, '2020-06-10', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085029, 142, '2020-06-11', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085030, 142, '2020-06-12', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085031, 142, '2020-06-13', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085032, 142, '2020-06-14', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085033, 136, '2020-04-20', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085034, 136, '2020-04-21', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085035, 136, '2020-04-22', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085036, 136, '2020-04-23', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085037, 136, '2020-04-24', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085038, 136, '2020-04-25', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085039, 136, '2020-04-26', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085040, 136, '2020-04-27', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085041, 136, '2020-04-28', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085990, 149, '2020-06-20', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085991, 149, '2020-06-21', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085992, 149, '2020-06-22', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085993, 149, '2020-06-23', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1012502, 125, '2019-12-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '03:20:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1012503, 125, '2019-12-31', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '03:20:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085057, 136, '2020-05-14', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085058, 136, '2020-05-15', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085059, 136, '2020-05-16', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085060, 136, '2020-05-17', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085061, 136, '2020-05-18', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085062, 136, '2020-05-19', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085063, 136, '2020-05-20', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085064, 136, '2020-05-21', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085065, 136, '2020-05-22', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085066, 136, '2020-05-23', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085067, 136, '2020-05-24', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085068, 136, '2020-05-25', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085069, 136, '2020-05-26', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085995, 149, '2020-06-25', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085996, 149, '2020-06-26', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085997, 149, '2020-06-27', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085083, 136, '2020-06-09', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085084, 136, '2020-06-10', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085085, 136, '2020-06-11', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085086, 136, '2020-06-12', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085087, 136, '2020-06-13', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085088, 136, '2020-06-14', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085089, 139, '2020-04-20', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085090, 139, '2020-04-21', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085091, 139, '2020-04-22', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085092, 139, '2020-04-23', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085093, 139, '2020-04-24', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085094, 139, '2020-04-25', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085095, 139, '2020-04-26', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085096, 139, '2020-04-27', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086013, 149, '2020-07-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086014, 149, '2020-07-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086015, 149, '2020-07-15', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086016, 149, '2020-07-16', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085112, 139, '2020-05-13', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085113, 139, '2020-05-14', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085114, 139, '2020-05-15', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085115, 139, '2020-05-16', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085116, 139, '2020-05-17', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085117, 139, '2020-05-18', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085118, 139, '2020-05-19', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085119, 139, '2020-05-20', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085120, 139, '2020-05-21', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085121, 139, '2020-05-22', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085122, 139, '2020-05-23', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085123, 139, '2020-05-24', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085124, 139, '2020-05-25', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085125, 139, '2020-05-26', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086017, 149, '2020-07-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086018, 149, '2020-07-18', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086019, 149, '2020-07-19', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086020, 149, '2020-07-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085141, 139, '2020-06-11', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085142, 139, '2020-06-12', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085143, 139, '2020-06-13', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085144, 139, '2020-06-14', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085145, 141, '2020-04-20', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085146, 141, '2020-04-21', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085147, 141, '2020-04-22', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085148, 141, '2020-04-23', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085149, 141, '2020-04-24', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085150, 141, '2020-04-25', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085151, 141, '2020-04-26', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085152, 141, '2020-04-27', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085153, 141, '2020-04-28', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085154, 141, '2020-04-29', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086022, 149, '2020-07-22', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086023, 149, '2020-07-23', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086024, 149, '2020-07-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086025, 149, '2020-07-25', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1012448, 125, '2020-01-01', '08:00:00', '12:00:00', NULL, NULL, NULL, '00:00:00', '03:20:00', NULL, NULL, NULL, '04:00:00', '00:00:00', NULL, 27, '04:00:00', NULL, '00:00:00', '03:20:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1012449, 125, '2020-01-02', NULL, NULL, NULL, NULL, NULL, '00:00:00', '03:20:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '03:20:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1012450, 125, '2020-01-03', NULL, NULL, NULL, NULL, NULL, '00:00:00', '03:20:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '03:20:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1012451, 125, '2020-01-04', NULL, NULL, NULL, NULL, NULL, '00:00:00', '03:20:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '03:20:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1012452, 125, '2020-01-05', NULL, NULL, NULL, NULL, NULL, '00:00:00', '03:20:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1012453, 125, '2020-01-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '03:20:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1012454, 125, '2020-01-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '03:20:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1012455, 125, '2020-01-08', '08:00:00', '12:00:00', NULL, NULL, NULL, '00:00:00', '03:20:00', NULL, NULL, NULL, '04:00:00', '00:00:00', NULL, 27, '04:00:00', NULL, '00:00:00', '03:20:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1012456, 125, '2020-01-09', NULL, NULL, NULL, NULL, NULL, '00:00:00', '03:20:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '03:20:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1012457, 125, '2020-01-10', NULL, NULL, NULL, NULL, NULL, '00:00:00', '03:20:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '03:20:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1012458, 125, '2020-01-11', NULL, NULL, NULL, NULL, NULL, '00:00:00', '03:20:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '03:20:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1012459, 125, '2020-01-12', NULL, NULL, NULL, NULL, NULL, '00:00:00', '03:20:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1012460, 125, '2020-01-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '03:20:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1012461, 125, '2020-01-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '03:20:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1012462, 125, '2020-01-15', '08:00:00', '12:00:00', NULL, NULL, NULL, '00:00:00', '03:20:00', NULL, NULL, NULL, '04:00:00', '00:00:00', NULL, 27, '04:00:00', NULL, '00:00:00', '03:20:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1012463, 125, '2020-01-16', NULL, NULL, NULL, NULL, NULL, '00:00:00', '03:20:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '03:20:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1012464, 125, '2020-01-17', NULL, NULL, NULL, NULL, NULL, '00:00:00', '03:20:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '03:20:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1012465, 125, '2020-01-18', NULL, NULL, NULL, NULL, NULL, '00:00:00', '03:20:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '03:20:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1012466, 125, '2020-01-19', NULL, NULL, NULL, NULL, NULL, '00:00:00', '03:20:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086027, 149, '2020-07-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1012479, 125, '2020-02-01', NULL, NULL, NULL, NULL, NULL, '00:00:00', '03:20:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '03:20:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1012480, 125, '2020-02-02', NULL, NULL, NULL, NULL, NULL, '00:00:00', '03:20:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1012481, 125, '2020-02-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '03:20:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1012482, 125, '2020-02-04', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '03:20:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1012483, 125, '2020-02-05', '08:00:00', '12:00:00', NULL, NULL, NULL, '00:00:00', '03:20:00', NULL, NULL, NULL, '04:00:00', '00:00:00', NULL, 27, '04:00:00', NULL, '00:00:00', '03:20:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1012484, 125, '2020-02-06', NULL, NULL, NULL, NULL, NULL, '00:00:00', '03:20:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '03:20:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1012485, 125, '2020-02-07', NULL, NULL, NULL, NULL, NULL, '00:00:00', '03:20:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '03:20:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1012486, 125, '2020-02-08', NULL, NULL, NULL, NULL, NULL, '00:00:00', '03:20:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '03:20:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1012487, 125, '2020-02-09', NULL, NULL, NULL, NULL, NULL, '00:00:00', '03:20:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1012488, 125, '2020-02-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '03:20:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1012489, 125, '2020-02-11', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '03:20:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1012490, 125, '2020-02-12', '08:00:00', '12:00:00', NULL, NULL, NULL, '00:00:00', '03:20:00', NULL, NULL, NULL, '04:00:00', '00:00:00', NULL, 27, '04:00:00', NULL, '00:00:00', '03:20:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1012491, 125, '2020-02-13', NULL, NULL, NULL, NULL, NULL, '00:00:00', '03:20:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '03:20:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1012492, 125, '2020-02-14', NULL, NULL, NULL, NULL, NULL, '00:00:00', '03:20:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '03:20:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1012493, 125, '2020-02-15', NULL, NULL, NULL, NULL, NULL, '00:00:00', '03:20:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '03:20:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1012494, 125, '2020-02-16', NULL, NULL, NULL, NULL, NULL, '00:00:00', '03:20:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1012495, 125, '2020-02-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '03:20:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1012496, 125, '2020-02-18', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '03:20:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086043, 103, '2020-06-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086044, 103, '2020-06-18', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085170, 141, '2020-05-15', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085171, 141, '2020-05-16', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085172, 141, '2020-05-17', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085173, 141, '2020-05-18', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085174, 141, '2020-05-19', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085175, 141, '2020-05-20', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085176, 141, '2020-05-21', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085177, 141, '2020-05-22', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085178, 141, '2020-05-23', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085179, 141, '2020-05-24', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085180, 141, '2020-05-25', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085181, 141, '2020-05-26', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085182, 141, '2020-05-27', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085183, 141, '2020-05-28', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086045, 103, '2020-06-19', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086046, 103, '2020-06-20', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086047, 103, '2020-06-21', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086048, 103, '2020-06-22', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085200, 141, '2020-06-14', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085201, 122, '2020-04-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085202, 122, '2020-04-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085203, 122, '2020-04-22', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085204, 122, '2020-04-23', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085205, 122, '2020-04-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085206, 122, '2020-04-25', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085207, 122, '2020-04-26', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085208, 122, '2020-04-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085209, 122, '2020-04-28', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085210, 122, '2020-04-29', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085211, 122, '2020-04-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085212, 122, '2020-05-01', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085213, 122, '2020-05-02', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085214, 122, '2020-05-03', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086050, 103, '2020-06-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086051, 103, '2020-06-25', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086052, 103, '2020-06-26', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085229, 122, '2020-05-18', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085230, 122, '2020-05-19', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085231, 122, '2020-05-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085232, 122, '2020-05-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085233, 122, '2020-05-22', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085234, 122, '2020-05-23', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085235, 122, '2020-05-24', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085236, 122, '2020-05-25', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085237, 122, '2020-05-26', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085238, 122, '2020-05-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085239, 122, '2020-05-28', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085240, 122, '2020-05-29', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085241, 122, '2020-05-30', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085242, 122, '2020-05-31', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086054, 103, '2020-06-28', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086055, 103, '2020-06-29', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086056, 103, '2020-06-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086071, 103, '2020-07-15', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085258, 106, '2020-04-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '04:10:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '04:10:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085259, 106, '2020-04-22', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '04:10:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '04:10:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085260, 106, '2020-04-23', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '04:10:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '04:10:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085261, 106, '2020-04-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '04:10:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085262, 106, '2020-04-25', NULL, NULL, NULL, NULL, NULL, '00:00:00', '04:10:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085263, 106, '2020-04-26', NULL, NULL, NULL, NULL, NULL, '00:00:00', '04:10:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085264, 106, '2020-04-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '04:10:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '04:10:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085265, 106, '2020-04-28', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '04:10:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '04:10:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085266, 106, '2020-04-29', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '04:10:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '04:10:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085267, 106, '2020-04-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '04:10:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '04:10:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085268, 106, '2020-05-01', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '04:10:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085269, 106, '2020-05-02', NULL, NULL, NULL, NULL, NULL, '00:00:00', '04:10:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085270, 106, '2020-05-03', NULL, NULL, NULL, NULL, NULL, '00:00:00', '04:10:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085271, 106, '2020-05-04', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '04:10:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '04:10:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086073, 103, '2020-07-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086074, 103, '2020-07-18', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086075, 103, '2020-07-19', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086076, 103, '2020-07-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086286, 119, '2020-07-15', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086305, 119, '2020-08-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086314, 113, '2020-06-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085287, 106, '2020-05-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '04:10:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '04:10:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085288, 106, '2020-05-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '04:10:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '04:10:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085289, 106, '2020-05-22', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '04:10:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085290, 106, '2020-05-23', NULL, NULL, NULL, NULL, NULL, '00:00:00', '04:10:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085291, 106, '2020-05-24', NULL, NULL, NULL, NULL, NULL, '00:00:00', '04:10:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085292, 106, '2020-05-25', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '04:10:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '04:10:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085293, 106, '2020-05-26', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '04:10:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '04:10:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085294, 106, '2020-05-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '04:10:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '04:10:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085295, 106, '2020-05-28', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '04:10:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '04:10:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085296, 106, '2020-05-29', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '04:10:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085297, 106, '2020-05-30', NULL, NULL, NULL, NULL, NULL, '00:00:00', '04:10:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085298, 106, '2020-05-31', NULL, NULL, NULL, NULL, NULL, '00:00:00', '04:10:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085299, 106, '2020-06-01', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '04:10:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '04:10:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085300, 106, '2020-06-02', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '04:10:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '04:10:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086077, 103, '2020-07-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086078, 103, '2020-07-22', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086079, 103, '2020-07-23', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086080, 103, '2020-07-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085316, 110, '2020-04-23', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085317, 110, '2020-04-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085318, 110, '2020-04-25', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085319, 110, '2020-04-26', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085320, 110, '2020-04-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085321, 110, '2020-04-28', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085322, 110, '2020-04-29', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085323, 110, '2020-04-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085324, 110, '2020-05-01', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085325, 110, '2020-05-02', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085326, 110, '2020-05-03', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085327, 110, '2020-05-04', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085328, 110, '2020-05-05', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085329, 110, '2020-05-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086083, 103, '2020-07-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086084, 103, '2020-07-28', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086085, 103, '2020-07-29', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086100, 121, '2020-06-18', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085345, 110, '2020-05-22', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085346, 110, '2020-05-23', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085347, 110, '2020-05-24', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085348, 110, '2020-05-25', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085349, 110, '2020-05-26', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085350, 110, '2020-05-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085351, 110, '2020-05-28', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085352, 110, '2020-05-29', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085353, 110, '2020-05-30', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085354, 110, '2020-05-31', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085355, 110, '2020-06-01', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085356, 110, '2020-06-02', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085357, 110, '2020-06-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085358, 110, '2020-06-04', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086101, 121, '2020-06-19', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086102, 121, '2020-06-20', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086103, 121, '2020-06-21', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086104, 121, '2020-06-22', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085375, 145, '2020-04-26', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085376, 145, '2020-04-27', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085377, 145, '2020-04-28', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085378, 145, '2020-04-29', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085379, 145, '2020-04-30', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085380, 145, '2020-05-01', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085381, 145, '2020-05-02', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085382, 145, '2020-05-03', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085383, 145, '2020-05-04', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085384, 145, '2020-05-05', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085385, 145, '2020-05-06', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085386, 145, '2020-05-07', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085387, 145, '2020-05-08', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085388, 145, '2020-05-09', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085389, 145, '2020-05-10', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086106, 121, '2020-06-24', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086107, 121, '2020-06-25', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086108, 121, '2020-06-26', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085404, 145, '2020-05-25', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085405, 145, '2020-05-26', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085406, 145, '2020-05-27', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085407, 145, '2020-05-28', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085408, 145, '2020-05-29', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085409, 145, '2020-05-30', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085410, 145, '2020-05-31', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085411, 145, '2020-06-01', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085412, 145, '2020-06-02', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085413, 145, '2020-06-03', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085414, 145, '2020-06-04', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085415, 145, '2020-06-05', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085416, 145, '2020-06-06', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085417, 145, '2020-06-07', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086110, 121, '2020-06-28', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086111, 121, '2020-06-29', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086112, 121, '2020-06-30', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086113, 121, '2020-07-01', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085433, 148, '2020-04-28', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085434, 148, '2020-04-29', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085435, 148, '2020-04-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085436, 148, '2020-05-01', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085437, 148, '2020-05-02', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085438, 148, '2020-05-03', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085439, 148, '2020-05-04', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085440, 148, '2020-05-05', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085441, 148, '2020-05-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085442, 148, '2020-05-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085443, 148, '2020-05-08', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085444, 148, '2020-05-09', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085445, 148, '2020-05-10', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085446, 148, '2020-05-11', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086129, 121, '2020-07-17', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086130, 121, '2020-07-18', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086131, 121, '2020-07-19', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086132, 121, '2020-07-20', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086333, 113, '2020-07-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086342, 113, '2020-07-15', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085462, 148, '2020-05-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085463, 148, '2020-05-28', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085464, 148, '2020-05-29', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085465, 148, '2020-05-30', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085466, 148, '2020-05-31', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085467, 148, '2020-06-01', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085468, 148, '2020-06-02', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085469, 148, '2020-06-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085470, 148, '2020-06-04', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085471, 148, '2020-06-05', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085472, 148, '2020-06-06', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085473, 148, '2020-06-07', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085474, 148, '2020-06-08', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085475, 148, '2020-06-09', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086133, 121, '2020-07-21', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086134, 121, '2020-07-22', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086135, 121, '2020-07-23', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086136, 121, '2020-07-24', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085491, 130, '2020-04-30', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085492, 130, '2020-05-01', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085493, 130, '2020-05-02', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085494, 130, '2020-05-03', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085495, 130, '2020-05-04', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085496, 130, '2020-05-05', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085497, 130, '2020-05-06', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085498, 130, '2020-05-07', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085499, 130, '2020-05-08', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085500, 130, '2020-05-09', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085501, 130, '2020-05-10', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085502, 130, '2020-05-11', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085503, 130, '2020-05-12', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085504, 130, '2020-05-13', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086138, 121, '2020-07-26', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086139, 121, '2020-07-27', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086140, 121, '2020-07-28', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086141, 121, '2020-07-29', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085520, 130, '2020-05-29', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085521, 130, '2020-05-30', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085522, 130, '2020-05-31', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085523, 130, '2020-06-01', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085524, 130, '2020-06-02', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085525, 130, '2020-06-03', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085526, 130, '2020-06-04', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085527, 130, '2020-06-05', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085528, 130, '2020-06-06', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085529, 130, '2020-06-07', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085530, 130, '2020-06-08', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085531, 130, '2020-06-09', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085532, 130, '2020-06-10', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085533, 130, '2020-06-11', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086143, 121, '2020-07-31', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086158, 117, '2020-06-29', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086159, 117, '2020-06-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086160, 117, '2020-07-01', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085550, 129, '2020-05-03', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085551, 129, '2020-05-04', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085552, 129, '2020-05-05', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085553, 129, '2020-05-06', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085554, 129, '2020-05-07', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085555, 129, '2020-05-08', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085556, 129, '2020-05-09', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085557, 129, '2020-05-10', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085558, 129, '2020-05-11', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085559, 129, '2020-05-12', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085560, 129, '2020-05-13', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085561, 129, '2020-05-14', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085562, 129, '2020-05-15', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085563, 129, '2020-05-16', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085564, 129, '2020-05-17', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086161, 117, '2020-07-02', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086162, 117, '2020-07-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086163, 117, '2020-07-04', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085579, 129, '2020-06-01', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085580, 129, '2020-06-02', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085581, 129, '2020-06-03', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085582, 129, '2020-06-04', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085583, 129, '2020-06-05', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085584, 129, '2020-06-06', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085585, 129, '2020-06-07', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085586, 129, '2020-06-08', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085587, 129, '2020-06-09', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085588, 129, '2020-06-10', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085589, 129, '2020-06-11', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085590, 129, '2020-06-12', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085591, 129, '2020-06-13', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085592, 129, '2020-06-14', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086166, 117, '2020-07-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086167, 117, '2020-07-08', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086168, 117, '2020-07-09', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086169, 117, '2020-07-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085608, 143, '2020-05-05', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085609, 143, '2020-05-06', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085610, 143, '2020-05-07', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085611, 143, '2020-05-08', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085612, 143, '2020-05-09', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085613, 143, '2020-05-10', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085614, 143, '2020-05-11', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085615, 143, '2020-05-12', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085616, 143, '2020-05-13', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085617, 143, '2020-05-14', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085618, 143, '2020-05-15', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085619, 143, '2020-05-16', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085620, 143, '2020-05-17', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085621, 143, '2020-05-18', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086170, 117, '2020-07-11', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086171, 117, '2020-07-12', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086172, 117, '2020-07-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086187, 117, '2020-07-28', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085637, 143, '2020-06-03', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085638, 143, '2020-06-04', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085639, 143, '2020-06-05', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085640, 143, '2020-06-06', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085641, 143, '2020-06-07', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085642, 143, '2020-06-08', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085643, 143, '2020-06-09', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085644, 143, '2020-06-10', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085645, 143, '2020-06-11', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085646, 143, '2020-06-12', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 30, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085647, 143, '2020-06-13', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085648, 143, '2020-06-14', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 30, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085649, 146, '2020-06-15', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085650, 146, '2020-06-16', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086189, 117, '2020-07-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086190, 117, '2020-07-31', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086191, 117, '2020-08-01', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086192, 117, '2020-08-02', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085666, 146, '2020-07-02', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085667, 146, '2020-07-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085668, 146, '2020-07-04', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085669, 146, '2020-07-05', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085670, 146, '2020-07-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085671, 146, '2020-07-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085672, 146, '2020-07-08', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085673, 146, '2020-07-09', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085674, 146, '2020-07-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085675, 146, '2020-07-11', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085676, 146, '2020-07-12', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085677, 146, '2020-07-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085678, 146, '2020-07-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085679, 146, '2020-07-15', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086194, 117, '2020-08-04', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086195, 117, '2020-08-05', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086196, 117, '2020-08-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086197, 117, '2020-08-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085695, 146, '2020-07-31', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085696, 146, '2020-08-01', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085697, 146, '2020-08-02', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085698, 146, '2020-08-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085699, 146, '2020-08-04', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085700, 146, '2020-08-05', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085701, 146, '2020-08-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085702, 146, '2020-08-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085703, 146, '2020-08-08', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085704, 146, '2020-08-09', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085705, 115, '2020-06-15', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085706, 115, '2020-06-16', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085707, 115, '2020-06-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085708, 115, '2020-06-18', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086199, 117, '2020-08-09', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086200, 125, '2020-06-15', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '03:20:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086201, 125, '2020-06-16', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '03:20:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086216, 125, '2020-07-01', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '03:20:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086347, 113, '2020-07-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085725, 115, '2020-07-05', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085726, 115, '2020-07-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085727, 115, '2020-07-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085728, 115, '2020-07-08', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085729, 115, '2020-07-09', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085730, 115, '2020-07-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085731, 115, '2020-07-11', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085732, 115, '2020-07-12', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085733, 115, '2020-07-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085734, 115, '2020-07-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085735, 115, '2020-07-15', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085736, 115, '2020-07-16', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085737, 115, '2020-07-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085738, 115, '2020-07-18', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085739, 115, '2020-07-19', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086217, 125, '2020-07-02', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '03:20:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086218, 125, '2020-07-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '03:20:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086219, 125, '2020-07-04', NULL, NULL, NULL, NULL, NULL, '00:00:00', '03:20:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', '03:20:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086220, 125, '2020-07-05', NULL, NULL, NULL, NULL, NULL, '00:00:00', '03:20:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085754, 115, '2020-08-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085755, 115, '2020-08-04', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085756, 115, '2020-08-05', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085757, 115, '2020-08-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085758, 115, '2020-08-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085759, 115, '2020-08-08', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085760, 115, '2020-08-09', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085761, 114, '2020-06-15', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085762, 114, '2020-06-16', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085763, 114, '2020-06-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085764, 114, '2020-06-18', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085765, 114, '2020-06-19', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085766, 114, '2020-06-20', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085767, 114, '2020-06-21', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086221, 125, '2020-07-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '03:20:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086222, 125, '2020-07-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '03:20:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086223, 125, '2020-07-08', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '03:20:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086224, 125, '2020-07-09', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '03:20:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086366, 113, '2020-08-08', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085783, 114, '2020-07-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085784, 114, '2020-07-08', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085785, 114, '2020-07-09', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085786, 114, '2020-07-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085787, 114, '2020-07-11', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085788, 114, '2020-07-12', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085789, 114, '2020-07-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085790, 114, '2020-07-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085791, 114, '2020-07-15', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085792, 114, '2020-07-16', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085793, 114, '2020-07-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085794, 114, '2020-07-18', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085795, 114, '2020-07-19', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085796, 114, '2020-07-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086225, 125, '2020-07-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '03:20:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086226, 125, '2020-07-11', NULL, NULL, NULL, NULL, NULL, '00:00:00', '03:20:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', '03:20:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086227, 125, '2020-07-12', NULL, NULL, NULL, NULL, NULL, '00:00:00', '03:20:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086228, 125, '2020-07-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '03:20:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085812, 114, '2020-08-05', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085813, 114, '2020-08-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085814, 114, '2020-08-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085815, 114, '2020-08-08', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085816, 114, '2020-08-09', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085817, 108, '2020-06-15', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085818, 108, '2020-06-16', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085819, 108, '2020-06-17', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085820, 108, '2020-06-18', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085821, 108, '2020-06-19', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085822, 108, '2020-06-20', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085823, 108, '2020-06-21', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085824, 108, '2020-06-22', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085825, 108, '2020-06-23', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086230, 125, '2020-07-15', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '03:20:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086245, 125, '2020-07-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '03:20:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086246, 125, '2020-07-31', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '03:20:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086247, 125, '2020-08-01', NULL, NULL, NULL, NULL, NULL, '00:00:00', '03:20:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', '03:20:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085841, 108, '2020-07-09', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085842, 108, '2020-07-10', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085843, 108, '2020-07-11', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085844, 108, '2020-07-12', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085845, 108, '2020-07-13', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085846, 108, '2020-07-14', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085847, 108, '2020-07-15', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085848, 108, '2020-07-16', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085849, 108, '2020-07-17', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085850, 108, '2020-07-18', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085851, 108, '2020-07-19', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085852, 108, '2020-07-20', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085853, 108, '2020-07-21', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085854, 108, '2020-07-22', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086249, 125, '2020-08-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '03:20:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086250, 125, '2020-08-04', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '03:20:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086251, 125, '2020-08-05', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '03:20:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086252, 125, '2020-08-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '03:20:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1014600, 119, '2020-01-01', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1014601, 119, '2020-01-02', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1014602, 119, '2020-01-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1014603, 119, '2020-01-04', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1014604, 119, '2020-01-05', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1014605, 119, '2020-01-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1014606, 119, '2020-01-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1014607, 119, '2020-01-08', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1014608, 119, '2020-01-09', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1014609, 119, '2020-01-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1014610, 119, '2020-01-11', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1014611, 119, '2020-01-12', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085870, 108, '2020-08-07', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085871, 108, '2020-08-08', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085872, 108, '2020-08-09', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085873, 135, '2020-06-15', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085874, 135, '2020-06-16', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086253, 125, '2020-08-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '03:20:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086371, 147, '2020-06-18', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085882, 135, '2020-06-24', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085883, 135, '2020-06-25', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085884, 135, '2020-06-26', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085885, 135, '2020-06-27', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085886, 135, '2020-06-28', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085887, 135, '2020-06-29', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085888, 135, '2020-06-30', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085889, 135, '2020-07-01', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085890, 135, '2020-07-02', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085891, 135, '2020-07-03', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085892, 135, '2020-07-04', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085893, 135, '2020-07-05', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085894, 135, '2020-07-06', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085895, 135, '2020-07-07', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086254, 125, '2020-08-08', NULL, NULL, NULL, NULL, NULL, '00:00:00', '03:20:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', '03:20:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086255, 125, '2020-08-09', NULL, NULL, NULL, NULL, NULL, '00:00:00', '03:20:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086256, 119, '2020-06-15', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086257, 119, '2020-06-16', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085911, 135, '2020-07-23', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085912, 135, '2020-07-24', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085913, 135, '2020-07-25', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085914, 135, '2020-07-26', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085915, 135, '2020-07-27', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085916, 135, '2020-07-28', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085917, 135, '2020-07-29', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085918, 135, '2020-07-30', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085919, 135, '2020-07-31', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085920, 135, '2020-08-01', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085921, 135, '2020-08-02', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085922, 135, '2020-08-03', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085923, 135, '2020-08-04', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085924, 135, '2020-08-05', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086259, 119, '2020-06-18', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086274, 119, '2020-07-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086275, 119, '2020-07-04', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086276, 119, '2020-07-05', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085940, 127, '2020-06-26', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085941, 127, '2020-06-27', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085942, 127, '2020-06-28', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085943, 127, '2020-06-29', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085944, 127, '2020-06-30', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085945, 127, '2020-07-01', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085946, 127, '2020-07-02', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085947, 127, '2020-07-03', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085948, 127, '2020-07-04', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085949, 127, '2020-07-05', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085950, 127, '2020-07-06', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085951, 127, '2020-07-07', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085952, 127, '2020-07-08', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085953, 127, '2020-07-09', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086278, 119, '2020-07-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086279, 119, '2020-07-08', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086280, 119, '2020-07-09', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086281, 119, '2020-07-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085969, 127, '2020-07-25', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085970, 127, '2020-07-26', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085971, 127, '2020-07-27', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085972, 127, '2020-07-28', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085973, 127, '2020-07-29', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085974, 127, '2020-07-30', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085975, 127, '2020-07-31', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085976, 127, '2020-08-01', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085977, 127, '2020-08-02', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085978, 127, '2020-08-03', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085979, 127, '2020-08-04', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085980, 127, '2020-08-05', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085981, 127, '2020-08-06', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085982, 127, '2020-08-07', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086282, 119, '2020-07-11', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086283, 119, '2020-07-12', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086284, 119, '2020-07-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086285, 119, '2020-07-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1085999, 149, '2020-06-29', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086000, 149, '2020-06-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086001, 149, '2020-07-01', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086002, 149, '2020-07-02', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086003, 149, '2020-07-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086004, 149, '2020-07-04', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086005, 149, '2020-07-05', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086006, 149, '2020-07-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086007, 149, '2020-07-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086008, 149, '2020-07-08', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086009, 149, '2020-07-09', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086010, 149, '2020-07-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086011, 149, '2020-07-11', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086012, 149, '2020-07-12', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086287, 119, '2020-07-16', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086288, 119, '2020-07-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086303, 119, '2020-08-01', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086304, 119, '2020-08-02', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086028, 149, '2020-07-28', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086029, 149, '2020-07-29', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086030, 149, '2020-07-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086031, 149, '2020-07-31', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086032, 149, '2020-08-01', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086033, 149, '2020-08-02', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086034, 149, '2020-08-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086035, 149, '2020-08-04', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086036, 149, '2020-08-05', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086037, 149, '2020-08-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086038, 149, '2020-08-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086039, 149, '2020-08-08', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086040, 149, '2020-08-09', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086041, 103, '2020-06-15', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086306, 119, '2020-08-04', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086307, 119, '2020-08-05', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086308, 119, '2020-08-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086309, 119, '2020-08-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086394, 147, '2020-07-11', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086057, 103, '2020-07-01', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086058, 103, '2020-07-02', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086059, 103, '2020-07-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086060, 103, '2020-07-04', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086061, 103, '2020-07-05', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086062, 103, '2020-07-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086063, 103, '2020-07-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086064, 103, '2020-07-08', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086065, 103, '2020-07-09', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086066, 103, '2020-07-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086067, 103, '2020-07-11', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086068, 103, '2020-07-12', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086069, 103, '2020-07-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086070, 103, '2020-07-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086310, 119, '2020-08-08', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086311, 119, '2020-08-09', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086312, 113, '2020-06-15', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086313, 113, '2020-06-16', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086086, 103, '2020-07-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086087, 103, '2020-07-31', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086088, 103, '2020-08-01', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086089, 103, '2020-08-02', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086090, 103, '2020-08-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086091, 103, '2020-08-04', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086092, 103, '2020-08-05', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086093, 103, '2020-08-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086094, 103, '2020-08-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086095, 103, '2020-08-08', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086096, 103, '2020-08-09', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086097, 121, '2020-06-15', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086098, 121, '2020-06-16', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086099, 121, '2020-06-17', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086315, 113, '2020-06-18', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086316, 113, '2020-06-19', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086317, 113, '2020-06-20', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086318, 113, '2020-06-21', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086115, 121, '2020-07-03', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086116, 121, '2020-07-04', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086117, 121, '2020-07-05', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086118, 121, '2020-07-06', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086119, 121, '2020-07-07', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086120, 121, '2020-07-08', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086121, 121, '2020-07-09', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086122, 121, '2020-07-10', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086123, 121, '2020-07-11', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086124, 121, '2020-07-12', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086125, 121, '2020-07-13', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086126, 121, '2020-07-14', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086127, 121, '2020-07-15', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086128, 121, '2020-07-16', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086334, 113, '2020-07-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086335, 113, '2020-07-08', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086336, 113, '2020-07-09', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086337, 113, '2020-07-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086144, 117, '2020-06-15', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086145, 117, '2020-06-16', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086146, 117, '2020-06-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086147, 117, '2020-06-18', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086148, 117, '2020-06-19', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086149, 117, '2020-06-20', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086150, 117, '2020-06-21', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086151, 117, '2020-06-22', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086152, 117, '2020-06-23', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086153, 117, '2020-06-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086154, 117, '2020-06-25', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086155, 117, '2020-06-26', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086156, 117, '2020-06-27', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086157, 117, '2020-06-28', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086338, 113, '2020-07-11', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086339, 113, '2020-07-12', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086340, 113, '2020-07-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086341, 113, '2020-07-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086173, 117, '2020-07-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086174, 117, '2020-07-15', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086175, 117, '2020-07-16', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086176, 117, '2020-07-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086177, 117, '2020-07-18', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086178, 117, '2020-07-19', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086179, 117, '2020-07-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086180, 117, '2020-07-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086181, 117, '2020-07-22', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086182, 117, '2020-07-23', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086183, 117, '2020-07-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086184, 117, '2020-07-25', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086185, 117, '2020-07-26', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086186, 117, '2020-07-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086343, 113, '2020-07-16', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086344, 113, '2020-07-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086345, 113, '2020-07-18', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086346, 113, '2020-07-19', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086202, 125, '2020-06-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '03:20:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086203, 125, '2020-06-18', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '03:20:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086204, 125, '2020-06-19', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '03:20:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086205, 125, '2020-06-20', NULL, NULL, NULL, NULL, NULL, '00:00:00', '03:20:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', '03:20:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086206, 125, '2020-06-21', NULL, NULL, NULL, NULL, NULL, '00:00:00', '03:20:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086207, 125, '2020-06-22', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '03:20:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086208, 125, '2020-06-23', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '03:20:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086209, 125, '2020-06-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '03:20:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086210, 125, '2020-06-25', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '03:20:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086211, 125, '2020-06-26', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '03:20:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086212, 125, '2020-06-27', NULL, NULL, NULL, NULL, NULL, '00:00:00', '03:20:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', '03:20:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086213, 125, '2020-06-28', NULL, NULL, NULL, NULL, NULL, '00:00:00', '03:20:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086214, 125, '2020-06-29', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '03:20:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086215, 125, '2020-06-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '03:20:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086362, 113, '2020-08-04', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086363, 113, '2020-08-05', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086364, 113, '2020-08-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086365, 113, '2020-08-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086231, 125, '2020-07-16', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '03:20:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086232, 125, '2020-07-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '03:20:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086233, 125, '2020-07-18', NULL, NULL, NULL, NULL, NULL, '00:00:00', '03:20:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', '03:20:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086234, 125, '2020-07-19', NULL, NULL, NULL, NULL, NULL, '00:00:00', '03:20:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086235, 125, '2020-07-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '03:20:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086236, 125, '2020-07-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '03:20:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086237, 125, '2020-07-22', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '03:20:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086238, 125, '2020-07-23', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '03:20:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086239, 125, '2020-07-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '03:20:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086240, 125, '2020-07-25', NULL, NULL, NULL, NULL, NULL, '00:00:00', '03:20:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', '03:20:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086241, 125, '2020-07-26', NULL, NULL, NULL, NULL, NULL, '00:00:00', '03:20:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086242, 125, '2020-07-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '03:20:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086243, 125, '2020-07-28', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '03:20:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086244, 125, '2020-07-29', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '03:20:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086367, 113, '2020-08-09', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086368, 147, '2020-06-15', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086369, 147, '2020-06-16', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086370, 147, '2020-06-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086260, 119, '2020-06-19', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086261, 119, '2020-06-20', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086262, 119, '2020-06-21', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086263, 119, '2020-06-22', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086264, 119, '2020-06-23', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086265, 119, '2020-06-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086266, 119, '2020-06-25', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086267, 119, '2020-06-26', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086268, 119, '2020-06-27', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086269, 119, '2020-06-28', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086270, 119, '2020-06-29', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086271, 119, '2020-06-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086272, 119, '2020-07-01', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086273, 119, '2020-07-02', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086372, 147, '2020-06-19', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086373, 147, '2020-06-20', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086374, 147, '2020-06-21', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086375, 147, '2020-06-22', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086399, 147, '2020-07-16', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086289, 119, '2020-07-18', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086290, 119, '2020-07-19', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086291, 119, '2020-07-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086292, 119, '2020-07-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086293, 119, '2020-07-22', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086294, 119, '2020-07-23', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086295, 119, '2020-07-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086296, 119, '2020-07-25', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086297, 119, '2020-07-26', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086298, 119, '2020-07-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086299, 119, '2020-07-28', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086300, 119, '2020-07-29', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086301, 119, '2020-07-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086302, 119, '2020-07-31', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086376, 147, '2020-06-23', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086391, 147, '2020-07-08', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086392, 147, '2020-07-09', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086393, 147, '2020-07-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086319, 113, '2020-06-22', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086320, 113, '2020-06-23', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086321, 113, '2020-06-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086322, 113, '2020-06-25', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086323, 113, '2020-06-26', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086324, 113, '2020-06-27', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086325, 113, '2020-06-28', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086326, 113, '2020-06-29', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086327, 113, '2020-06-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086328, 113, '2020-07-01', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086329, 113, '2020-07-02', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086330, 113, '2020-07-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086331, 113, '2020-07-04', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086332, 113, '2020-07-05', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086395, 147, '2020-07-12', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086396, 147, '2020-07-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086397, 147, '2020-07-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086398, 147, '2020-07-15', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086348, 113, '2020-07-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086349, 113, '2020-07-22', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086350, 113, '2020-07-23', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086351, 113, '2020-07-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086352, 113, '2020-07-25', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086353, 113, '2020-07-26', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086354, 113, '2020-07-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086355, 113, '2020-07-28', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086356, 113, '2020-07-29', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086357, 113, '2020-07-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086358, 113, '2020-07-31', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086359, 113, '2020-08-01', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086360, 113, '2020-08-02', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086361, 113, '2020-08-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086400, 147, '2020-07-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086401, 147, '2020-07-18', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086402, 147, '2020-07-19', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086403, 147, '2020-07-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086377, 147, '2020-06-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086378, 147, '2020-06-25', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086379, 147, '2020-06-26', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086380, 147, '2020-06-27', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086381, 147, '2020-06-28', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086382, 147, '2020-06-29', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086383, 147, '2020-06-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086384, 147, '2020-07-01', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086385, 147, '2020-07-02', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086386, 147, '2020-07-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086387, 147, '2020-07-04', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086388, 147, '2020-07-05', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086389, 147, '2020-07-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086390, 147, '2020-07-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086404, 147, '2020-07-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086405, 147, '2020-07-22', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086420, 147, '2020-08-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086421, 147, '2020-08-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086406, 147, '2020-07-23', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086407, 147, '2020-07-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086408, 147, '2020-07-25', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086409, 147, '2020-07-26', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086410, 147, '2020-07-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086411, 147, '2020-07-28', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086412, 147, '2020-07-29', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086413, 147, '2020-07-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086414, 147, '2020-07-31', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086415, 147, '2020-08-01', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086416, 147, '2020-08-02', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086417, 147, '2020-08-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086418, 147, '2020-08-04', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086419, 147, '2020-08-05', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086422, 147, '2020-08-08', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086423, 147, '2020-08-09', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086424, 131, '2020-06-15', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '04:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '04:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086425, 131, '2020-06-16', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '04:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '04:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086426, 131, '2020-06-17', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '04:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '04:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086427, 131, '2020-06-18', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '04:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '04:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086428, 131, '2020-06-19', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '04:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '04:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086429, 131, '2020-06-20', NULL, NULL, NULL, NULL, NULL, '00:00:00', '04:00:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086430, 131, '2020-06-21', NULL, NULL, NULL, NULL, NULL, '00:00:00', '04:00:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086431, 131, '2020-06-22', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '04:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '04:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086432, 131, '2020-06-23', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '04:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '04:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086433, 131, '2020-06-24', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '04:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '04:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086434, 131, '2020-06-25', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '04:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '04:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086435, 131, '2020-06-26', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '04:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '04:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086436, 131, '2020-06-27', NULL, NULL, NULL, NULL, NULL, '00:00:00', '04:00:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086437, 131, '2020-06-28', NULL, NULL, NULL, NULL, NULL, '00:00:00', '04:00:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086438, 131, '2020-06-29', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '04:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '04:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086439, 131, '2020-06-30', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '04:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '04:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086440, 131, '2020-07-01', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '04:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '04:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086441, 131, '2020-07-02', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '04:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '04:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086442, 131, '2020-07-03', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '04:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '04:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086443, 131, '2020-07-04', NULL, NULL, NULL, NULL, NULL, '00:00:00', '04:00:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086444, 131, '2020-07-05', NULL, NULL, NULL, NULL, NULL, '00:00:00', '04:00:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086445, 131, '2020-07-06', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '04:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '04:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1016806, 113, '2019-12-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1016807, 113, '2019-12-31', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086446, 131, '2020-07-07', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '04:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '04:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086447, 131, '2020-07-08', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '04:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '04:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086448, 131, '2020-07-09', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '04:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '04:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086449, 131, '2020-07-10', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '04:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '04:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086450, 131, '2020-07-11', NULL, NULL, NULL, NULL, NULL, '00:00:00', '04:00:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086451, 131, '2020-07-12', NULL, NULL, NULL, NULL, NULL, '00:00:00', '04:00:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086452, 131, '2020-07-13', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '04:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '04:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086453, 131, '2020-07-14', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '04:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '04:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086454, 131, '2020-07-15', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '04:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '04:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086455, 131, '2020-07-16', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '04:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '04:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086456, 131, '2020-07-17', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '04:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '04:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086457, 131, '2020-07-18', NULL, NULL, NULL, NULL, NULL, '00:00:00', '04:00:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086458, 131, '2020-07-19', NULL, NULL, NULL, NULL, NULL, '00:00:00', '04:00:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086459, 131, '2020-07-20', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '04:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '04:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086460, 131, '2020-07-21', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '04:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '04:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086461, 131, '2020-07-22', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '04:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '04:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086462, 131, '2020-07-23', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '04:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '04:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086463, 131, '2020-07-24', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '04:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '04:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086464, 131, '2020-07-25', NULL, NULL, NULL, NULL, NULL, '00:00:00', '04:00:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086465, 131, '2020-07-26', NULL, NULL, NULL, NULL, NULL, '00:00:00', '04:00:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086466, 131, '2020-07-27', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '04:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '04:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086467, 131, '2020-07-28', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '04:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '04:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086468, 131, '2020-07-29', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '04:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '04:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086469, 131, '2020-07-30', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '04:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '04:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086470, 131, '2020-07-31', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '04:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '04:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086471, 131, '2020-08-01', NULL, NULL, NULL, NULL, NULL, '00:00:00', '04:00:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086472, 131, '2020-08-02', NULL, NULL, NULL, NULL, NULL, '00:00:00', '04:00:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086473, 131, '2020-08-03', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '04:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '04:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086474, 131, '2020-08-04', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '04:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '04:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086475, 131, '2020-08-05', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '04:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '04:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086476, 131, '2020-08-06', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '04:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '04:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086477, 131, '2020-08-07', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '04:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '04:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086478, 131, '2020-08-08', NULL, NULL, NULL, NULL, NULL, '00:00:00', '04:00:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086479, 131, '2020-08-09', NULL, NULL, NULL, NULL, NULL, '00:00:00', '04:00:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086480, 104, '2020-06-15', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086481, 104, '2020-06-16', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086482, 104, '2020-06-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086483, 104, '2020-06-18', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086484, 104, '2020-06-19', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086485, 104, '2020-06-20', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:00:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086486, 104, '2020-06-21', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:00:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086487, 104, '2020-06-22', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086488, 104, '2020-06-23', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086489, 104, '2020-06-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086490, 104, '2020-06-25', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086491, 104, '2020-06-26', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086492, 104, '2020-06-27', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:00:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086493, 104, '2020-06-28', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:00:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086494, 104, '2020-06-29', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086495, 104, '2020-06-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086496, 104, '2020-07-01', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086497, 104, '2020-07-02', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086498, 104, '2020-07-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086499, 104, '2020-07-04', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:00:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086500, 104, '2020-07-05', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:00:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086501, 104, '2020-07-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086502, 104, '2020-07-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086503, 104, '2020-07-08', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086504, 104, '2020-07-09', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086505, 104, '2020-07-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086506, 104, '2020-07-11', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:00:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086507, 104, '2020-07-12', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:00:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086508, 104, '2020-07-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086509, 104, '2020-07-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086510, 104, '2020-07-15', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086511, 104, '2020-07-16', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086512, 104, '2020-07-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086513, 104, '2020-07-18', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:00:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086514, 104, '2020-07-19', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:00:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086515, 104, '2020-07-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086516, 104, '2020-07-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086517, 104, '2020-07-22', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1016752, 113, '2020-01-01', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1016753, 113, '2020-01-02', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1016754, 113, '2020-01-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1016755, 113, '2020-01-04', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1016756, 113, '2020-01-05', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1016757, 113, '2020-01-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1016758, 113, '2020-01-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1016759, 113, '2020-01-08', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1016760, 113, '2020-01-09', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1016761, 113, '2020-01-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1016762, 113, '2020-01-11', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1016763, 113, '2020-01-12', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1016764, 113, '2020-01-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1016765, 113, '2020-01-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1016766, 113, '2020-01-15', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1016767, 113, '2020-01-16', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1016768, 113, '2020-01-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1016769, 113, '2020-01-18', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086518, 104, '2020-07-23', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1016783, 113, '2020-02-01', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1016784, 113, '2020-02-02', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1016785, 113, '2020-02-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1016786, 113, '2020-02-04', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1016787, 113, '2020-02-05', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1016788, 113, '2020-02-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1016789, 113, '2020-02-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1016790, 113, '2020-02-08', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1016791, 113, '2020-02-09', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1016792, 113, '2020-02-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1016793, 113, '2020-02-11', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1016794, 113, '2020-02-12', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1016795, 113, '2020-02-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1016796, 113, '2020-02-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1016797, 113, '2020-02-15', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1016798, 113, '2020-02-16', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1016799, 113, '2020-02-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1016800, 113, '2020-02-18', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086519, 104, '2020-07-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086520, 104, '2020-07-25', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:00:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086521, 104, '2020-07-26', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:00:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086522, 104, '2020-07-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086523, 104, '2020-07-28', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086524, 104, '2020-07-29', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086525, 104, '2020-07-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086526, 104, '2020-07-31', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086527, 104, '2020-08-01', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:00:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086528, 104, '2020-08-02', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:00:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086529, 104, '2020-08-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086530, 104, '2020-08-04', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086531, 104, '2020-08-05', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086532, 104, '2020-08-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086533, 104, '2020-08-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086534, 104, '2020-08-08', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:00:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086535, 104, '2020-08-09', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:00:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086536, 151, '2020-06-15', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086537, 151, '2020-06-16', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086538, 151, '2020-06-17', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086539, 151, '2020-06-18', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086540, 151, '2020-06-19', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086541, 151, '2020-06-20', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086542, 151, '2020-06-21', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086543, 151, '2020-06-22', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086544, 151, '2020-06-23', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086545, 151, '2020-06-24', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086546, 151, '2020-06-25', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086547, 151, '2020-06-26', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086548, 151, '2020-06-27', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086549, 151, '2020-06-28', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086550, 151, '2020-06-29', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086551, 151, '2020-06-30', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086552, 151, '2020-07-01', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086553, 151, '2020-07-02', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086554, 151, '2020-07-03', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086555, 151, '2020-07-04', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086556, 151, '2020-07-05', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086557, 151, '2020-07-06', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086558, 151, '2020-07-07', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086559, 151, '2020-07-08', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086560, 151, '2020-07-09', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086561, 151, '2020-07-10', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086562, 151, '2020-07-11', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086563, 151, '2020-07-12', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086564, 151, '2020-07-13', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086565, 151, '2020-07-14', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086566, 151, '2020-07-15', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086567, 151, '2020-07-16', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086568, 151, '2020-07-17', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086569, 151, '2020-07-18', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086570, 151, '2020-07-19', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086571, 151, '2020-07-20', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086572, 151, '2020-07-21', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086573, 151, '2020-07-22', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086574, 151, '2020-07-23', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086575, 151, '2020-07-24', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086576, 151, '2020-07-25', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086577, 151, '2020-07-26', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086578, 151, '2020-07-27', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086579, 151, '2020-07-28', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086580, 151, '2020-07-29', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086581, 151, '2020-07-30', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086582, 151, '2020-07-31', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086583, 151, '2020-08-01', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086584, 151, '2020-08-02', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086585, 151, '2020-08-03', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086586, 151, '2020-08-04', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086587, 151, '2020-08-05', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086588, 151, '2020-08-06', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086589, 151, '2020-08-07', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086590, 151, '2020-08-08', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086591, 151, '2020-08-09', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086592, 138, '2020-06-15', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086593, 138, '2020-06-16', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086594, 138, '2020-06-17', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086595, 138, '2020-06-18', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086596, 138, '2020-06-19', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086597, 138, '2020-06-20', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086598, 138, '2020-06-21', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086599, 138, '2020-06-22', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086600, 138, '2020-06-23', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086601, 138, '2020-06-24', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086602, 138, '2020-06-25', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086603, 138, '2020-06-26', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086604, 138, '2020-06-27', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086605, 138, '2020-06-28', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086606, 138, '2020-06-29', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086607, 138, '2020-06-30', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086608, 105, '2020-06-15', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086609, 105, '2020-06-16', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086610, 105, '2020-06-17', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086611, 105, '2020-06-18', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086612, 105, '2020-06-19', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086613, 105, '2020-06-20', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086614, 105, '2020-06-21', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086615, 105, '2020-06-22', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086616, 105, '2020-06-23', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086617, 105, '2020-06-24', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086618, 105, '2020-06-25', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086619, 105, '2020-06-26', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086620, 105, '2020-06-27', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086621, 105, '2020-06-28', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086622, 105, '2020-06-29', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086623, 105, '2020-06-30', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086624, 105, '2020-07-01', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086625, 105, '2020-07-02', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086626, 105, '2020-07-03', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086627, 105, '2020-07-04', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086628, 105, '2020-07-05', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086629, 105, '2020-07-06', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086630, 105, '2020-07-07', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086631, 105, '2020-07-08', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086632, 105, '2020-07-09', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086633, 105, '2020-07-10', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086634, 105, '2020-07-11', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086635, 105, '2020-07-12', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086636, 105, '2020-07-13', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086637, 105, '2020-07-14', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086638, 105, '2020-07-15', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086639, 105, '2020-07-16', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086640, 105, '2020-07-17', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086641, 105, '2020-07-18', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086642, 105, '2020-07-19', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086643, 105, '2020-07-20', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086644, 105, '2020-07-21', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086645, 105, '2020-07-22', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086646, 105, '2020-07-23', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086647, 105, '2020-07-24', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086648, 105, '2020-07-25', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086649, 105, '2020-07-26', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086650, 105, '2020-07-27', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086651, 105, '2020-07-28', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086652, 105, '2020-07-29', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086653, 105, '2020-07-30', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086654, 105, '2020-07-31', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086655, 105, '2020-08-01', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086656, 105, '2020-08-02', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086657, 105, '2020-08-03', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086658, 105, '2020-08-04', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086659, 105, '2020-08-05', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086660, 105, '2020-08-06', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086661, 105, '2020-08-07', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086662, 105, '2020-08-08', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086663, 105, '2020-08-09', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086664, 134, '2020-06-15', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086665, 134, '2020-06-16', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086666, 134, '2020-06-17', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086667, 134, '2020-06-18', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086668, 134, '2020-06-19', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086669, 134, '2020-06-20', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086670, 134, '2020-06-21', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086671, 134, '2020-06-22', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086672, 134, '2020-06-23', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086673, 134, '2020-06-24', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086674, 134, '2020-06-25', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086675, 134, '2020-06-26', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086676, 134, '2020-06-27', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086677, 134, '2020-06-28', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086678, 134, '2020-06-29', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086679, 134, '2020-06-30', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086680, 134, '2020-07-01', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086681, 134, '2020-07-02', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086682, 134, '2020-07-03', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086683, 134, '2020-07-04', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086684, 134, '2020-07-05', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086685, 134, '2020-07-06', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086686, 134, '2020-07-07', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086687, 134, '2020-07-08', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086688, 134, '2020-07-09', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086689, 134, '2020-07-10', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086690, 134, '2020-07-11', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086691, 134, '2020-07-12', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086692, 134, '2020-07-13', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086693, 134, '2020-07-14', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086694, 134, '2020-07-15', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086695, 134, '2020-07-16', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086696, 134, '2020-07-17', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086697, 134, '2020-07-18', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086698, 134, '2020-07-19', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086699, 134, '2020-07-20', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086700, 134, '2020-07-21', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086701, 134, '2020-07-22', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086702, 134, '2020-07-23', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086703, 134, '2020-07-24', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086704, 134, '2020-07-25', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086705, 134, '2020-07-26', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086706, 134, '2020-07-27', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086707, 134, '2020-07-28', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086708, 134, '2020-07-29', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086709, 134, '2020-07-30', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086710, 134, '2020-07-31', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086711, 134, '2020-08-01', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086712, 134, '2020-08-02', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086713, 134, '2020-08-03', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086714, 134, '2020-08-04', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086715, 134, '2020-08-05', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086716, 134, '2020-08-06', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086717, 134, '2020-08-07', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086718, 134, '2020-08-08', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086719, 134, '2020-08-09', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086720, 102, '2020-06-15', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086721, 102, '2020-06-16', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086722, 102, '2020-06-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086723, 102, '2020-06-18', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086724, 102, '2020-06-19', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086725, 102, '2020-06-20', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086726, 102, '2020-06-21', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086727, 102, '2020-06-22', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086728, 102, '2020-06-23', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086729, 102, '2020-06-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086730, 102, '2020-06-25', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086731, 102, '2020-06-26', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086732, 102, '2020-06-27', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086733, 102, '2020-06-28', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086734, 102, '2020-06-29', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086735, 102, '2020-06-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086736, 102, '2020-07-01', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086737, 102, '2020-07-02', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086738, 102, '2020-07-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086739, 102, '2020-07-04', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086740, 102, '2020-07-05', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086741, 102, '2020-07-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086742, 102, '2020-07-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086743, 102, '2020-07-08', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086744, 102, '2020-07-09', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086745, 102, '2020-07-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086746, 102, '2020-07-11', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086747, 102, '2020-07-12', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086748, 102, '2020-07-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086749, 102, '2020-07-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086750, 102, '2020-07-15', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086751, 102, '2020-07-16', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086752, 102, '2020-07-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086753, 102, '2020-07-18', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086754, 102, '2020-07-19', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086755, 102, '2020-07-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086756, 102, '2020-07-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086757, 102, '2020-07-22', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086758, 102, '2020-07-23', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086759, 102, '2020-07-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086760, 102, '2020-07-25', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086761, 102, '2020-07-26', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086762, 102, '2020-07-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086763, 102, '2020-07-28', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086764, 102, '2020-07-29', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086765, 102, '2020-07-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086766, 102, '2020-07-31', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086767, 102, '2020-08-01', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086768, 102, '2020-08-02', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086769, 102, '2020-08-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086770, 102, '2020-08-04', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086771, 102, '2020-08-05', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086772, 102, '2020-08-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086773, 102, '2020-08-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086774, 102, '2020-08-08', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086775, 102, '2020-08-09', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086776, 109, '2020-06-15', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086777, 109, '2020-06-16', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086778, 109, '2020-06-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086779, 109, '2020-06-18', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086780, 109, '2020-06-19', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086781, 109, '2020-06-20', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086782, 109, '2020-06-21', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086783, 109, '2020-06-22', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086784, 109, '2020-06-23', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086785, 109, '2020-06-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086786, 109, '2020-06-25', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086787, 109, '2020-06-26', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086788, 109, '2020-06-27', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086789, 109, '2020-06-28', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086790, 109, '2020-06-29', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086791, 109, '2020-06-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086792, 109, '2020-07-01', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086793, 109, '2020-07-02', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086794, 109, '2020-07-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086795, 109, '2020-07-04', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086796, 109, '2020-07-05', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086797, 109, '2020-07-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086798, 109, '2020-07-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086799, 109, '2020-07-08', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086800, 109, '2020-07-09', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086801, 109, '2020-07-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086802, 109, '2020-07-11', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086803, 109, '2020-07-12', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086804, 109, '2020-07-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086805, 109, '2020-07-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086806, 109, '2020-07-15', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086807, 109, '2020-07-16', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086808, 109, '2020-07-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086809, 109, '2020-07-18', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086810, 109, '2020-07-19', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086811, 109, '2020-07-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086812, 109, '2020-07-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086813, 109, '2020-07-22', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086814, 109, '2020-07-23', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086815, 109, '2020-07-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086816, 109, '2020-07-25', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086817, 109, '2020-07-26', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086818, 109, '2020-07-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086819, 109, '2020-07-28', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086820, 109, '2020-07-29', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086821, 109, '2020-07-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086822, 109, '2020-07-31', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086823, 109, '2020-08-01', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086824, 109, '2020-08-02', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086825, 109, '2020-08-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086826, 109, '2020-08-04', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086827, 109, '2020-08-05', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086828, 109, '2020-08-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086829, 109, '2020-08-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086830, 109, '2020-08-08', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086831, 109, '2020-08-09', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086832, 118, '2020-06-15', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086833, 118, '2020-06-16', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086834, 118, '2020-06-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086835, 118, '2020-06-18', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086836, 118, '2020-06-19', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086837, 118, '2020-06-20', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086838, 118, '2020-06-21', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086839, 118, '2020-06-22', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086840, 118, '2020-06-23', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086841, 118, '2020-06-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086842, 118, '2020-06-25', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086843, 118, '2020-06-26', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086844, 118, '2020-06-27', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086845, 118, '2020-06-28', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086846, 118, '2020-06-29', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086847, 118, '2020-06-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086848, 118, '2020-07-01', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086849, 118, '2020-07-02', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086850, 118, '2020-07-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086851, 118, '2020-07-04', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086852, 118, '2020-07-05', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086853, 118, '2020-07-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086854, 118, '2020-07-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086855, 118, '2020-07-08', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086856, 118, '2020-07-09', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086857, 118, '2020-07-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086858, 118, '2020-07-11', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086859, 118, '2020-07-12', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086860, 118, '2020-07-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086861, 118, '2020-07-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086862, 118, '2020-07-15', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086863, 118, '2020-07-16', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086864, 118, '2020-07-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086865, 118, '2020-07-18', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086866, 118, '2020-07-19', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086867, 118, '2020-07-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086868, 118, '2020-07-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086869, 118, '2020-07-22', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086870, 118, '2020-07-23', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086871, 118, '2020-07-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086872, 118, '2020-07-25', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086873, 118, '2020-07-26', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086874, 118, '2020-07-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086875, 118, '2020-07-28', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086876, 118, '2020-07-29', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086877, 118, '2020-07-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086878, 118, '2020-07-31', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086879, 118, '2020-08-01', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086880, 118, '2020-08-02', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086881, 118, '2020-08-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086882, 118, '2020-08-04', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086883, 118, '2020-08-05', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086884, 118, '2020-08-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086885, 118, '2020-08-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086886, 118, '2020-08-08', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086887, 118, '2020-08-09', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086888, 133, '2020-06-15', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086889, 133, '2020-06-16', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086890, 133, '2020-06-17', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086891, 133, '2020-06-18', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086892, 133, '2020-06-19', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086893, 133, '2020-06-20', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086894, 133, '2020-06-21', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086895, 133, '2020-06-22', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086896, 133, '2020-06-23', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086897, 133, '2020-06-24', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086898, 133, '2020-06-25', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086899, 133, '2020-06-26', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086900, 133, '2020-06-27', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086901, 133, '2020-06-28', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086902, 133, '2020-06-29', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086903, 133, '2020-06-30', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086904, 133, '2020-07-01', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086905, 133, '2020-07-02', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086906, 133, '2020-07-03', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086907, 133, '2020-07-04', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086908, 133, '2020-07-05', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086909, 133, '2020-07-06', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086910, 133, '2020-07-07', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086911, 133, '2020-07-08', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086912, 133, '2020-07-09', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086913, 133, '2020-07-10', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086914, 133, '2020-07-11', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086915, 133, '2020-07-12', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086916, 133, '2020-07-13', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086917, 133, '2020-07-14', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086918, 133, '2020-07-15', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086919, 133, '2020-07-16', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086920, 133, '2020-07-17', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086921, 133, '2020-07-18', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086922, 133, '2020-07-19', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086923, 133, '2020-07-20', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086924, 133, '2020-07-21', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086925, 133, '2020-07-22', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086926, 133, '2020-07-23', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086927, 133, '2020-07-24', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086928, 133, '2020-07-25', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086929, 133, '2020-07-26', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086930, 133, '2020-07-27', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086931, 133, '2020-07-28', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086932, 133, '2020-07-29', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086933, 133, '2020-07-30', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086934, 133, '2020-07-31', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086935, 133, '2020-08-01', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086936, 133, '2020-08-02', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086937, 133, '2020-08-03', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086938, 133, '2020-08-04', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086939, 133, '2020-08-05', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086940, 133, '2020-08-06', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086941, 133, '2020-08-07', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086942, 133, '2020-08-08', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086943, 133, '2020-08-09', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086944, 111, '2020-06-15', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086945, 111, '2020-06-16', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086946, 111, '2020-06-17', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086947, 111, '2020-06-18', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086948, 111, '2020-06-19', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086949, 111, '2020-06-20', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086950, 111, '2020-06-21', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086951, 111, '2020-06-22', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086952, 111, '2020-06-23', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086953, 111, '2020-06-24', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086954, 111, '2020-06-25', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086955, 111, '2020-06-26', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086956, 111, '2020-06-27', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086957, 111, '2020-06-28', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086958, 111, '2020-06-29', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086959, 111, '2020-06-30', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086960, 111, '2020-07-01', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086961, 111, '2020-07-02', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086962, 111, '2020-07-03', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1018904, 147, '2020-01-01', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1018905, 147, '2020-01-02', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1018906, 147, '2020-01-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1018907, 147, '2020-01-04', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1018908, 147, '2020-01-05', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1018909, 147, '2020-01-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1018910, 147, '2020-01-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1018911, 147, '2020-01-08', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1018912, 147, '2020-01-09', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1018913, 147, '2020-01-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1018914, 147, '2020-01-11', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1018915, 147, '2020-01-12', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1018916, 147, '2020-01-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086963, 111, '2020-07-04', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086964, 111, '2020-07-05', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086965, 111, '2020-07-06', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086966, 111, '2020-07-07', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086967, 111, '2020-07-08', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086968, 111, '2020-07-09', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1018955, 147, '2020-02-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1018956, 147, '2020-02-22', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1018957, 147, '2020-02-23', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086969, 111, '2020-07-10', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086970, 111, '2020-07-11', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086971, 111, '2020-07-12', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086972, 111, '2020-07-13', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086973, 111, '2020-07-14', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086974, 111, '2020-07-15', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086975, 111, '2020-07-16', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086976, 111, '2020-07-17', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086977, 111, '2020-07-18', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086978, 111, '2020-07-19', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086979, 111, '2020-07-20', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086980, 111, '2020-07-21', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086981, 111, '2020-07-22', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086982, 111, '2020-07-23', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086983, 111, '2020-07-24', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086984, 111, '2020-07-25', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086985, 111, '2020-07-26', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086986, 111, '2020-07-27', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086987, 111, '2020-07-28', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086988, 111, '2020-07-29', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086989, 111, '2020-07-30', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086990, 111, '2020-07-31', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086991, 111, '2020-08-01', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086992, 111, '2020-08-02', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086993, 111, '2020-08-03', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086994, 111, '2020-08-04', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086995, 111, '2020-08-05', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086996, 111, '2020-08-06', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086997, 111, '2020-08-07', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086998, 111, '2020-08-08', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1086999, 111, '2020-08-09', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087000, 128, '2020-06-15', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087001, 128, '2020-06-16', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087002, 128, '2020-06-17', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087003, 128, '2020-06-18', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087004, 128, '2020-06-19', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087005, 128, '2020-06-20', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087006, 128, '2020-06-21', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087007, 128, '2020-06-22', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087008, 128, '2020-06-23', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087009, 128, '2020-06-24', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087010, 128, '2020-06-25', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087011, 128, '2020-06-26', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087012, 128, '2020-06-27', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087013, 128, '2020-06-28', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087014, 128, '2020-06-29', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087015, 128, '2020-06-30', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087016, 128, '2020-07-01', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087017, 128, '2020-07-02', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087018, 128, '2020-07-03', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087019, 128, '2020-07-04', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087020, 128, '2020-07-05', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087021, 128, '2020-07-06', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087022, 128, '2020-07-07', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087023, 128, '2020-07-08', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087024, 128, '2020-07-09', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087025, 128, '2020-07-10', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087026, 128, '2020-07-11', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087027, 128, '2020-07-12', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087028, 128, '2020-07-13', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087029, 128, '2020-07-14', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087030, 128, '2020-07-15', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087031, 128, '2020-07-16', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087032, 128, '2020-07-17', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087033, 128, '2020-07-18', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087034, 128, '2020-07-19', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087035, 128, '2020-07-20', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087036, 128, '2020-07-21', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087037, 128, '2020-07-22', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087038, 128, '2020-07-23', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087039, 128, '2020-07-24', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087040, 128, '2020-07-25', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087041, 128, '2020-07-26', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087042, 128, '2020-07-27', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087043, 128, '2020-07-28', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087044, 128, '2020-07-29', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087045, 128, '2020-07-30', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087046, 128, '2020-07-31', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087047, 128, '2020-08-01', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087048, 128, '2020-08-02', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087049, 128, '2020-08-03', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087050, 128, '2020-08-04', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087051, 128, '2020-08-05', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087052, 128, '2020-08-06', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087053, 128, '2020-08-07', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087054, 128, '2020-08-08', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087055, 128, '2020-08-09', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087056, 142, '2020-06-15', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087057, 142, '2020-06-16', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087058, 142, '2020-06-17', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087059, 142, '2020-06-18', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087060, 142, '2020-06-19', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087061, 142, '2020-06-20', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087062, 142, '2020-06-21', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087063, 142, '2020-06-22', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087064, 142, '2020-06-23', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087065, 142, '2020-06-24', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087066, 142, '2020-06-25', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087067, 142, '2020-06-26', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087068, 142, '2020-06-27', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087069, 142, '2020-06-28', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087070, 142, '2020-06-29', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087071, 142, '2020-06-30', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087072, 142, '2020-07-01', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087073, 142, '2020-07-02', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087074, 142, '2020-07-03', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087075, 142, '2020-07-04', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087076, 142, '2020-07-05', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087077, 142, '2020-07-06', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087078, 142, '2020-07-07', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087079, 142, '2020-07-08', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087080, 142, '2020-07-09', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087081, 142, '2020-07-10', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087082, 142, '2020-07-11', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087083, 142, '2020-07-12', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087084, 142, '2020-07-13', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087085, 142, '2020-07-14', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087086, 142, '2020-07-15', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087087, 142, '2020-07-16', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087088, 142, '2020-07-17', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087089, 142, '2020-07-18', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087090, 142, '2020-07-19', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087091, 142, '2020-07-20', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087092, 142, '2020-07-21', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087093, 142, '2020-07-22', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087094, 142, '2020-07-23', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087095, 142, '2020-07-24', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087096, 142, '2020-07-25', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087097, 142, '2020-07-26', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087098, 142, '2020-07-27', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087099, 142, '2020-07-28', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087100, 142, '2020-07-29', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087101, 142, '2020-07-30', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087102, 142, '2020-07-31', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087103, 142, '2020-08-01', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087104, 142, '2020-08-02', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087105, 142, '2020-08-03', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087106, 142, '2020-08-04', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087107, 142, '2020-08-05', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087108, 142, '2020-08-06', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087109, 142, '2020-08-07', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087110, 142, '2020-08-08', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087111, 142, '2020-08-09', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087112, 136, '2020-06-15', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087113, 136, '2020-06-16', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087114, 136, '2020-06-17', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087115, 136, '2020-06-18', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087116, 136, '2020-06-19', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087117, 136, '2020-06-20', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087118, 136, '2020-06-21', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087119, 136, '2020-06-22', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087120, 136, '2020-06-23', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087121, 136, '2020-06-24', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087122, 136, '2020-06-25', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087123, 136, '2020-06-26', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087124, 136, '2020-06-27', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087125, 136, '2020-06-28', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087126, 136, '2020-06-29', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087127, 136, '2020-06-30', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087128, 136, '2020-07-01', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087129, 136, '2020-07-02', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087130, 136, '2020-07-03', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087131, 136, '2020-07-04', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087132, 136, '2020-07-05', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087133, 136, '2020-07-06', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087134, 136, '2020-07-07', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087135, 136, '2020-07-08', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087136, 136, '2020-07-09', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087137, 136, '2020-07-10', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087138, 136, '2020-07-11', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087139, 136, '2020-07-12', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087140, 136, '2020-07-13', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087141, 136, '2020-07-14', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087142, 136, '2020-07-15', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087143, 136, '2020-07-16', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087144, 136, '2020-07-17', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087145, 136, '2020-07-18', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087146, 136, '2020-07-19', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087147, 136, '2020-07-20', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087148, 136, '2020-07-21', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087149, 136, '2020-07-22', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087150, 136, '2020-07-23', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087151, 136, '2020-07-24', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087152, 136, '2020-07-25', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087153, 136, '2020-07-26', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087154, 136, '2020-07-27', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087155, 136, '2020-07-28', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087156, 136, '2020-07-29', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087157, 136, '2020-07-30', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087158, 136, '2020-07-31', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087159, 136, '2020-08-01', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087160, 136, '2020-08-02', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087161, 136, '2020-08-03', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087162, 136, '2020-08-04', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087163, 136, '2020-08-05', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087164, 136, '2020-08-06', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087165, 136, '2020-08-07', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087166, 136, '2020-08-08', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087167, 136, '2020-08-09', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087168, 139, '2020-06-15', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087169, 139, '2020-06-16', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087170, 139, '2020-06-17', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087171, 139, '2020-06-18', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087172, 139, '2020-06-19', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087173, 139, '2020-06-20', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087174, 139, '2020-06-21', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087175, 139, '2020-06-22', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087176, 139, '2020-06-23', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087177, 139, '2020-06-24', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087178, 139, '2020-06-25', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087179, 139, '2020-06-26', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087180, 139, '2020-06-27', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087181, 139, '2020-06-28', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087182, 139, '2020-06-29', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087183, 139, '2020-06-30', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087184, 139, '2020-07-01', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087185, 139, '2020-07-02', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087186, 139, '2020-07-03', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087187, 139, '2020-07-04', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087188, 139, '2020-07-05', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087189, 139, '2020-07-06', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087190, 139, '2020-07-07', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087191, 139, '2020-07-08', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087192, 139, '2020-07-09', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087193, 139, '2020-07-10', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087194, 139, '2020-07-11', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087195, 139, '2020-07-12', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087196, 139, '2020-07-13', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087197, 139, '2020-07-14', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087198, 139, '2020-07-15', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087199, 139, '2020-07-16', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087200, 139, '2020-07-17', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087201, 139, '2020-07-18', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087202, 139, '2020-07-19', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087203, 139, '2020-07-20', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087204, 139, '2020-07-21', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087205, 139, '2020-07-22', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087206, 139, '2020-07-23', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087207, 139, '2020-07-24', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087208, 139, '2020-07-25', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087209, 139, '2020-07-26', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087210, 139, '2020-07-27', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087211, 139, '2020-07-28', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087212, 139, '2020-07-29', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087213, 139, '2020-07-30', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087214, 139, '2020-07-31', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087215, 139, '2020-08-01', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087216, 139, '2020-08-02', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087217, 139, '2020-08-03', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087218, 139, '2020-08-04', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087219, 139, '2020-08-05', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087220, 139, '2020-08-06', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087221, 139, '2020-08-07', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087222, 139, '2020-08-08', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087223, 139, '2020-08-09', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087224, 141, '2020-06-15', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087225, 141, '2020-06-16', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087226, 141, '2020-06-17', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087227, 141, '2020-06-18', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087228, 141, '2020-06-19', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087229, 141, '2020-06-20', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087230, 141, '2020-06-21', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087231, 141, '2020-06-22', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087232, 141, '2020-06-23', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087233, 141, '2020-06-24', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087234, 141, '2020-06-25', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087235, 141, '2020-06-26', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087236, 141, '2020-06-27', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087237, 141, '2020-06-28', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087238, 141, '2020-06-29', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087239, 141, '2020-06-30', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087240, 141, '2020-07-01', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087241, 141, '2020-07-02', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087242, 141, '2020-07-03', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087243, 141, '2020-07-04', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087244, 141, '2020-07-05', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087245, 141, '2020-07-06', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087246, 141, '2020-07-07', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087247, 141, '2020-07-08', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087248, 141, '2020-07-09', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087249, 141, '2020-07-10', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087250, 141, '2020-07-11', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087251, 141, '2020-07-12', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087252, 141, '2020-07-13', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087253, 141, '2020-07-14', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087254, 141, '2020-07-15', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087255, 141, '2020-07-16', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087256, 141, '2020-07-17', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087257, 141, '2020-07-18', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087258, 141, '2020-07-19', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087259, 141, '2020-07-20', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087260, 141, '2020-07-21', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087261, 141, '2020-07-22', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087262, 141, '2020-07-23', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087263, 141, '2020-07-24', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087264, 141, '2020-07-25', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087265, 141, '2020-07-26', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087266, 141, '2020-07-27', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087267, 141, '2020-07-28', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087268, 141, '2020-07-29', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087269, 141, '2020-07-30', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087270, 141, '2020-07-31', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087271, 141, '2020-08-01', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087272, 141, '2020-08-02', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087273, 141, '2020-08-03', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087274, 141, '2020-08-04', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087275, 141, '2020-08-05', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087276, 141, '2020-08-06', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087277, 141, '2020-08-07', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087278, 141, '2020-08-08', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087279, 141, '2020-08-09', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087280, 122, '2020-06-15', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087281, 122, '2020-06-16', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087282, 122, '2020-06-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087283, 122, '2020-06-18', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087284, 122, '2020-06-19', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087285, 122, '2020-06-20', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087286, 122, '2020-06-21', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087287, 122, '2020-06-22', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087288, 122, '2020-06-23', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087289, 122, '2020-06-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087290, 122, '2020-06-25', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087291, 122, '2020-06-26', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087292, 122, '2020-06-27', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087293, 122, '2020-06-28', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087294, 122, '2020-06-29', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087295, 122, '2020-06-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087296, 122, '2020-07-01', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087297, 122, '2020-07-02', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087298, 122, '2020-07-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087299, 122, '2020-07-04', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087300, 122, '2020-07-05', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087301, 122, '2020-07-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087302, 122, '2020-07-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087303, 122, '2020-07-08', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087304, 122, '2020-07-09', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087305, 122, '2020-07-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087306, 122, '2020-07-11', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087307, 122, '2020-07-12', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087308, 122, '2020-07-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087309, 122, '2020-07-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087310, 122, '2020-07-15', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087311, 122, '2020-07-16', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087312, 122, '2020-07-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087313, 122, '2020-07-18', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087314, 122, '2020-07-19', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087315, 122, '2020-07-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087316, 122, '2020-07-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087317, 122, '2020-07-22', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087318, 122, '2020-07-23', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087319, 122, '2020-07-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087320, 122, '2020-07-25', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087321, 122, '2020-07-26', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087322, 122, '2020-07-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087323, 122, '2020-07-28', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087324, 122, '2020-07-29', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087325, 122, '2020-07-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087326, 122, '2020-07-31', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087327, 122, '2020-08-01', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087328, 122, '2020-08-02', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087329, 122, '2020-08-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087330, 122, '2020-08-04', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087331, 122, '2020-08-05', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087332, 122, '2020-08-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087333, 122, '2020-08-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087334, 122, '2020-08-08', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087335, 122, '2020-08-09', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087336, 106, '2020-06-15', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '04:10:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '04:10:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087337, 106, '2020-06-16', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '04:10:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '04:10:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1021110, 131, '2019-12-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '04:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '04:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1021111, 131, '2019-12-31', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '04:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '04:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087338, 106, '2020-06-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '04:10:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '04:10:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087339, 106, '2020-06-18', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '04:10:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '04:10:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087340, 106, '2020-06-19', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '04:10:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087341, 106, '2020-06-20', NULL, NULL, NULL, NULL, NULL, '00:00:00', '04:10:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087342, 106, '2020-06-21', NULL, NULL, NULL, NULL, NULL, '00:00:00', '04:10:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087343, 106, '2020-06-22', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '04:10:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '04:10:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087344, 106, '2020-06-23', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '04:10:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '04:10:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087345, 106, '2020-06-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '04:10:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '04:10:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087346, 106, '2020-06-25', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '04:10:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '04:10:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087347, 106, '2020-06-26', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '04:10:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087348, 106, '2020-06-27', NULL, NULL, NULL, NULL, NULL, '00:00:00', '04:10:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087349, 106, '2020-06-28', NULL, NULL, NULL, NULL, NULL, '00:00:00', '04:10:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087350, 106, '2020-06-29', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '04:10:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '04:10:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087351, 106, '2020-06-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '04:10:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '04:10:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087352, 106, '2020-07-01', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '04:10:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '04:10:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087353, 106, '2020-07-02', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '04:10:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '04:10:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087354, 106, '2020-07-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '04:10:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087355, 106, '2020-07-04', NULL, NULL, NULL, NULL, NULL, '00:00:00', '04:10:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087356, 106, '2020-07-05', NULL, NULL, NULL, NULL, NULL, '00:00:00', '04:10:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087357, 106, '2020-07-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '04:10:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '04:10:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087358, 106, '2020-07-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '04:10:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '04:10:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087359, 106, '2020-07-08', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '04:10:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '04:10:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087360, 106, '2020-07-09', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '04:10:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '04:10:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087361, 106, '2020-07-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '04:10:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087362, 106, '2020-07-11', NULL, NULL, NULL, NULL, NULL, '00:00:00', '04:10:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087363, 106, '2020-07-12', NULL, NULL, NULL, NULL, NULL, '00:00:00', '04:10:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087364, 106, '2020-07-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '04:10:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '04:10:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087365, 106, '2020-07-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '04:10:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '04:10:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087366, 106, '2020-07-15', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '04:10:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '04:10:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087367, 106, '2020-07-16', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '04:10:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '04:10:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087368, 106, '2020-07-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '04:10:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087369, 106, '2020-07-18', NULL, NULL, NULL, NULL, NULL, '00:00:00', '04:10:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087370, 106, '2020-07-19', NULL, NULL, NULL, NULL, NULL, '00:00:00', '04:10:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087371, 106, '2020-07-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '04:10:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '04:10:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087372, 106, '2020-07-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '04:10:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '04:10:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087373, 106, '2020-07-22', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '04:10:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '04:10:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087374, 106, '2020-07-23', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '04:10:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '04:10:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087375, 106, '2020-07-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '04:10:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087376, 106, '2020-07-25', NULL, NULL, NULL, NULL, NULL, '00:00:00', '04:10:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087377, 106, '2020-07-26', NULL, NULL, NULL, NULL, NULL, '00:00:00', '04:10:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087378, 106, '2020-07-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '04:10:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '04:10:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087379, 106, '2020-07-28', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '04:10:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '04:10:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087380, 106, '2020-07-29', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '04:10:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '04:10:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087381, 106, '2020-07-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '04:10:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '04:10:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087382, 106, '2020-07-31', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '04:10:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087383, 106, '2020-08-01', NULL, NULL, NULL, NULL, NULL, '00:00:00', '04:10:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087384, 106, '2020-08-02', NULL, NULL, NULL, NULL, NULL, '00:00:00', '04:10:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087385, 106, '2020-08-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '04:10:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '04:10:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087386, 106, '2020-08-04', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '04:10:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '04:10:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087387, 106, '2020-08-05', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '04:10:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '04:10:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087388, 106, '2020-08-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '04:10:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '04:10:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087389, 106, '2020-08-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '04:10:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087390, 106, '2020-08-08', NULL, NULL, NULL, NULL, NULL, '00:00:00', '04:10:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087391, 106, '2020-08-09', NULL, NULL, NULL, NULL, NULL, '00:00:00', '04:10:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087547, 148, '2020-07-28', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087548, 148, '2020-07-29', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087549, 148, '2020-07-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087550, 148, '2020-07-31', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087551, 148, '2020-08-01', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087552, 148, '2020-08-02', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087553, 148, '2020-08-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087392, 110, '2020-06-15', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087393, 110, '2020-06-16', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087394, 110, '2020-06-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087395, 110, '2020-06-18', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087396, 110, '2020-06-19', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087397, 110, '2020-06-20', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087398, 110, '2020-06-21', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087399, 110, '2020-06-22', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087400, 110, '2020-06-23', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087401, 110, '2020-06-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087402, 110, '2020-06-25', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087403, 110, '2020-06-26', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087404, 110, '2020-06-27', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087405, 110, '2020-06-28', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087554, 148, '2020-08-04', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087555, 148, '2020-08-05', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087556, 148, '2020-08-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087571, 130, '2020-06-26', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087572, 130, '2020-06-27', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087573, 130, '2020-06-28', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087574, 130, '2020-06-29', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1021056, 131, '2020-01-01', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '04:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '04:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1021057, 131, '2020-01-02', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '04:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '04:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1021058, 131, '2020-01-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '04:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '04:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1021059, 131, '2020-01-04', NULL, NULL, NULL, NULL, NULL, '00:00:00', '04:00:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1021060, 131, '2020-01-05', NULL, NULL, NULL, NULL, NULL, '00:00:00', '04:00:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1021061, 131, '2020-01-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '04:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '04:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1021062, 131, '2020-01-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '04:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '04:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1021063, 131, '2020-01-08', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '04:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '04:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1021064, 131, '2020-01-09', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '04:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '04:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1021065, 131, '2020-01-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '04:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '04:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1021066, 131, '2020-01-11', NULL, NULL, NULL, NULL, NULL, '00:00:00', '04:00:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1021067, 131, '2020-01-12', NULL, NULL, NULL, NULL, NULL, '00:00:00', '04:00:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1021068, 131, '2020-01-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '04:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '04:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1021069, 131, '2020-01-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '04:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '04:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1021070, 131, '2020-01-15', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '04:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '04:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1021071, 131, '2020-01-16', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '04:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '04:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1021072, 131, '2020-01-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '04:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '04:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1021073, 131, '2020-01-18', NULL, NULL, NULL, NULL, NULL, '00:00:00', '04:00:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087575, 130, '2020-06-30', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1021084, 131, '2020-01-29', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '04:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '04:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1021085, 131, '2020-01-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '04:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '04:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1021086, 131, '2020-01-31', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '04:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '04:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1021087, 131, '2020-02-01', NULL, NULL, NULL, NULL, NULL, '00:00:00', '04:00:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1021088, 131, '2020-02-02', NULL, NULL, NULL, NULL, NULL, '00:00:00', '04:00:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1021089, 131, '2020-02-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '04:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '04:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1021090, 131, '2020-02-04', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '04:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '04:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1021091, 131, '2020-02-05', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '04:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '04:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1021092, 131, '2020-02-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '04:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '04:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1021093, 131, '2020-02-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '04:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '04:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1021094, 131, '2020-02-08', NULL, NULL, NULL, NULL, NULL, '00:00:00', '04:00:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1021095, 131, '2020-02-09', NULL, NULL, NULL, NULL, NULL, '00:00:00', '04:00:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1021096, 131, '2020-02-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '04:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '04:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1021097, 131, '2020-02-11', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '04:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '04:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1021098, 131, '2020-02-12', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '04:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '04:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1021099, 131, '2020-02-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '04:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '04:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1021100, 131, '2020-02-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '04:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '04:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087576, 130, '2020-07-01', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087406, 110, '2020-06-29', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087407, 110, '2020-06-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087408, 110, '2020-07-01', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087409, 110, '2020-07-02', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087410, 110, '2020-07-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087411, 110, '2020-07-04', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087412, 110, '2020-07-05', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087413, 110, '2020-07-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087414, 110, '2020-07-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087415, 110, '2020-07-08', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087416, 110, '2020-07-09', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087417, 110, '2020-07-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087418, 110, '2020-07-11', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087419, 110, '2020-07-12', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087577, 130, '2020-07-02', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087578, 130, '2020-07-03', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087579, 130, '2020-07-04', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087580, 130, '2020-07-05', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087581, 130, '2020-07-06', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087582, 130, '2020-07-07', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087583, 130, '2020-07-08', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087420, 110, '2020-07-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087421, 110, '2020-07-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087422, 110, '2020-07-15', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087423, 110, '2020-07-16', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087424, 110, '2020-07-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087425, 110, '2020-07-18', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087426, 110, '2020-07-19', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087427, 110, '2020-07-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087428, 110, '2020-07-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087429, 110, '2020-07-22', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087430, 110, '2020-07-23', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087431, 110, '2020-07-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087432, 110, '2020-07-25', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087433, 110, '2020-07-26', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087584, 130, '2020-07-09', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087599, 130, '2020-07-24', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087600, 130, '2020-07-25', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087601, 130, '2020-07-26', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087602, 130, '2020-07-27', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087603, 130, '2020-07-28', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087604, 130, '2020-07-29', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087434, 110, '2020-07-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087435, 110, '2020-07-28', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087436, 110, '2020-07-29', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087437, 110, '2020-07-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087438, 110, '2020-07-31', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087439, 110, '2020-08-01', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087440, 110, '2020-08-02', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087441, 110, '2020-08-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087442, 110, '2020-08-04', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087443, 110, '2020-08-05', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087444, 110, '2020-08-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087445, 110, '2020-08-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087446, 110, '2020-08-08', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087447, 110, '2020-08-09', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087605, 130, '2020-07-30', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087606, 130, '2020-07-31', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087607, 130, '2020-08-01', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087608, 130, '2020-08-02', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087609, 130, '2020-08-03', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087610, 130, '2020-08-04', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087611, 130, '2020-08-05', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087448, 145, '2020-06-15', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087449, 145, '2020-06-16', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087450, 145, '2020-06-17', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087451, 145, '2020-06-18', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087452, 145, '2020-06-19', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087453, 145, '2020-06-20', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087454, 145, '2020-06-21', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087455, 145, '2020-06-22', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087456, 145, '2020-06-23', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087457, 145, '2020-06-24', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087458, 145, '2020-06-25', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087459, 145, '2020-06-26', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087460, 145, '2020-06-27', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087461, 145, '2020-06-28', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087612, 130, '2020-08-06', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087627, 129, '2020-06-26', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087628, 129, '2020-06-27', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087629, 129, '2020-06-28', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087630, 129, '2020-06-29', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087631, 129, '2020-06-30', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087632, 129, '2020-07-01', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087462, 145, '2020-06-29', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087463, 145, '2020-06-30', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087464, 145, '2020-07-01', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087465, 145, '2020-07-02', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087466, 145, '2020-07-03', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087467, 145, '2020-07-04', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087468, 145, '2020-07-05', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087469, 145, '2020-07-06', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087470, 145, '2020-07-07', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087471, 145, '2020-07-08', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087472, 145, '2020-07-09', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087473, 145, '2020-07-10', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087474, 145, '2020-07-11', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087475, 145, '2020-07-12', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087633, 129, '2020-07-02', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087634, 129, '2020-07-03', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087635, 129, '2020-07-04', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087636, 129, '2020-07-05', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087637, 129, '2020-07-06', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087638, 129, '2020-07-07', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087639, 129, '2020-07-08', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087476, 145, '2020-07-13', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087477, 145, '2020-07-14', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087478, 145, '2020-07-15', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087479, 145, '2020-07-16', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087480, 145, '2020-07-17', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087481, 145, '2020-07-18', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087482, 145, '2020-07-19', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087483, 145, '2020-07-20', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087484, 145, '2020-07-21', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087485, 145, '2020-07-22', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087486, 145, '2020-07-23', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087487, 145, '2020-07-24', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087488, 145, '2020-07-25', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087489, 145, '2020-07-26', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087640, 129, '2020-07-09', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087655, 129, '2020-07-24', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087656, 129, '2020-07-25', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087657, 129, '2020-07-26', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087658, 129, '2020-07-27', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087659, 129, '2020-07-28', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087660, 129, '2020-07-29', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087490, 145, '2020-07-27', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087491, 145, '2020-07-28', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087492, 145, '2020-07-29', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087493, 145, '2020-07-30', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087494, 145, '2020-07-31', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087495, 145, '2020-08-01', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087496, 145, '2020-08-02', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087497, 145, '2020-08-03', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087498, 145, '2020-08-04', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087499, 145, '2020-08-05', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087500, 145, '2020-08-06', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087501, 145, '2020-08-07', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087502, 145, '2020-08-08', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087503, 145, '2020-08-09', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087661, 129, '2020-07-30', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087662, 129, '2020-07-31', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087663, 129, '2020-08-01', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087664, 129, '2020-08-02', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087665, 129, '2020-08-03', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087666, 129, '2020-08-04', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087667, 129, '2020-08-05', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087504, 148, '2020-06-15', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087505, 148, '2020-06-16', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087506, 148, '2020-06-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087507, 148, '2020-06-18', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087508, 148, '2020-06-19', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087509, 148, '2020-06-20', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087510, 148, '2020-06-21', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087511, 148, '2020-06-22', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087512, 148, '2020-06-23', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087513, 148, '2020-06-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087514, 148, '2020-06-25', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087515, 148, '2020-06-26', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087516, 148, '2020-06-27', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087517, 148, '2020-06-28', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087668, 129, '2020-08-06', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087683, 143, '2020-06-26', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087684, 143, '2020-06-27', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087685, 143, '2020-06-28', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087686, 143, '2020-06-29', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087687, 143, '2020-06-30', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087688, 143, '2020-07-01', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087518, 148, '2020-06-29', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087519, 148, '2020-06-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087520, 148, '2020-07-01', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087521, 148, '2020-07-02', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087522, 148, '2020-07-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087523, 148, '2020-07-04', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087524, 148, '2020-07-05', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087525, 148, '2020-07-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087526, 148, '2020-07-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087527, 148, '2020-07-08', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087528, 148, '2020-07-09', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087529, 148, '2020-07-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087530, 148, '2020-07-11', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087531, 148, '2020-07-12', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087689, 143, '2020-07-02', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087690, 143, '2020-07-03', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087691, 143, '2020-07-04', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087692, 143, '2020-07-05', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087693, 143, '2020-07-06', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087694, 143, '2020-07-07', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087695, 143, '2020-07-08', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087532, 148, '2020-07-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087533, 148, '2020-07-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087534, 148, '2020-07-15', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087535, 148, '2020-07-16', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087536, 148, '2020-07-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087537, 148, '2020-07-18', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087538, 148, '2020-07-19', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087539, 148, '2020-07-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087540, 148, '2020-07-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087541, 148, '2020-07-22', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087542, 148, '2020-07-23', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087543, 148, '2020-07-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087544, 148, '2020-07-25', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087545, 148, '2020-07-26', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087546, 148, '2020-07-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087557, 148, '2020-08-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087558, 148, '2020-08-08', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087559, 148, '2020-08-09', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087560, 130, '2020-06-15', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087561, 130, '2020-06-16', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087562, 130, '2020-06-17', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087563, 130, '2020-06-18', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087564, 130, '2020-06-19', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087565, 130, '2020-06-20', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087566, 130, '2020-06-21', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087567, 130, '2020-06-22', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087568, 130, '2020-06-23', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087569, 130, '2020-06-24', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087570, 130, '2020-06-25', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087585, 130, '2020-07-10', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087586, 130, '2020-07-11', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087587, 130, '2020-07-12', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087588, 130, '2020-07-13', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087589, 130, '2020-07-14', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087590, 130, '2020-07-15', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087591, 130, '2020-07-16', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087592, 130, '2020-07-17', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087593, 130, '2020-07-18', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087594, 130, '2020-07-19', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087595, 130, '2020-07-20', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087596, 130, '2020-07-21', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087597, 130, '2020-07-22', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087598, 130, '2020-07-23', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087613, 130, '2020-08-07', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087614, 130, '2020-08-08', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087615, 130, '2020-08-09', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087616, 129, '2020-06-15', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087617, 129, '2020-06-16', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087618, 129, '2020-06-17', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087619, 129, '2020-06-18', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087620, 129, '2020-06-19', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087621, 129, '2020-06-20', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087622, 129, '2020-06-21', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087623, 129, '2020-06-22', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087624, 129, '2020-06-23', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087625, 129, '2020-06-24', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087626, 129, '2020-06-25', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087641, 129, '2020-07-10', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087642, 129, '2020-07-11', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087643, 129, '2020-07-12', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087644, 129, '2020-07-13', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087645, 129, '2020-07-14', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087646, 129, '2020-07-15', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087647, 129, '2020-07-16', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087648, 129, '2020-07-17', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087649, 129, '2020-07-18', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087650, 129, '2020-07-19', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087651, 129, '2020-07-20', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087652, 129, '2020-07-21', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087653, 129, '2020-07-22', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087654, 129, '2020-07-23', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087669, 129, '2020-08-07', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087670, 129, '2020-08-08', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087671, 129, '2020-08-09', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087672, 143, '2020-06-15', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087673, 143, '2020-06-16', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087674, 143, '2020-06-17', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087675, 143, '2020-06-18', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087676, 143, '2020-06-19', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087677, 143, '2020-06-20', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087678, 143, '2020-06-21', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087679, 143, '2020-06-22', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087680, 143, '2020-06-23', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087681, 143, '2020-06-24', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087682, 143, '2020-06-25', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087696, 143, '2020-07-09', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087697, 143, '2020-07-10', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087698, 143, '2020-07-11', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087699, 143, '2020-07-12', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087700, 143, '2020-07-13', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087701, 143, '2020-07-14', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087702, 143, '2020-07-15', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087703, 143, '2020-07-16', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087704, 143, '2020-07-17', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087705, 143, '2020-07-18', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087706, 143, '2020-07-19', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087707, 143, '2020-07-20', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087708, 143, '2020-07-21', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087709, 143, '2020-07-22', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087710, 143, '2020-07-23', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087711, 143, '2020-07-24', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087712, 143, '2020-07-25', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087713, 143, '2020-07-26', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087714, 143, '2020-07-27', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087715, 143, '2020-07-28', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087716, 143, '2020-07-29', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087717, 143, '2020-07-30', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087718, 143, '2020-07-31', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087719, 143, '2020-08-01', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087720, 143, '2020-08-02', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087721, 143, '2020-08-03', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087722, 143, '2020-08-04', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087723, 143, '2020-08-05', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087724, 143, '2020-08-06', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087725, 143, '2020-08-07', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 31, '08:00:00', NULL, '03:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087726, 143, '2020-08-08', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1087727, 143, '2020-08-09', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 31, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1023262, 104, '2019-12-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1023263, 104, '2019-12-31', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1023208, 104, '2020-01-01', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1023209, 104, '2020-01-02', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1023210, 104, '2020-01-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1023211, 104, '2020-01-04', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:00:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1023212, 104, '2020-01-05', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:00:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1023213, 104, '2020-01-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1023214, 104, '2020-01-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1023215, 104, '2020-01-08', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1023216, 104, '2020-01-09', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1023217, 104, '2020-01-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1023218, 104, '2020-01-11', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:00:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1023219, 104, '2020-01-12', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:00:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1023220, 104, '2020-01-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1023221, 104, '2020-01-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1023222, 104, '2020-01-15', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1023253, 104, '2020-02-15', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:00:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1023254, 104, '2020-02-16', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:00:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1023255, 104, '2020-02-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1023256, 104, '2020-02-18', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1023257, 104, '2020-02-19', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1023258, 104, '2020-02-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1023259, 104, '2020-02-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1023260, 104, '2020-02-22', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:00:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1023261, 104, '2020-02-23', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:00:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1025391, 151, '2020-02-01', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1025392, 151, '2020-02-02', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1025393, 151, '2020-02-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1025394, 151, '2020-02-04', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1025395, 151, '2020-02-05', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1025396, 151, '2020-02-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1025397, 151, '2020-02-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1025398, 151, '2020-02-08', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1025399, 151, '2020-02-09', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1025400, 151, '2020-02-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1025401, 151, '2020-02-11', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1025402, 151, '2020-02-12', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1025403, 151, '2020-02-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1025404, 151, '2020-02-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1025405, 151, '2020-02-15', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1025406, 151, '2020-02-16', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1025407, 151, '2020-02-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1025408, 151, '2020-02-18', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1027512, 138, '2020-01-01', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1027513, 138, '2020-01-02', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1027514, 138, '2020-01-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1027515, 138, '2020-01-04', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1027516, 138, '2020-01-05', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1027517, 138, '2020-01-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1027518, 138, '2020-01-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1027519, 138, '2020-01-08', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1027520, 138, '2020-01-09', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1027521, 138, '2020-01-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1027522, 138, '2020-01-11', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1027523, 138, '2020-01-12', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1027524, 138, '2020-01-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1027525, 138, '2020-01-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1027526, 138, '2020-01-15', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1027527, 138, '2020-01-16', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1027528, 138, '2020-01-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1027529, 138, '2020-01-18', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1027552, 138, '2020-02-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1027553, 138, '2020-02-11', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1027554, 138, '2020-02-12', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1027555, 138, '2020-02-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1027556, 138, '2020-02-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1027558, 138, '2020-02-16', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1027559, 138, '2020-02-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1027560, 138, '2020-02-18', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1027561, 138, '2020-02-19', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1027562, 138, '2020-02-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1027563, 138, '2020-02-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1027564, 138, '2020-02-22', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1027565, 138, '2020-02-23', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1029718, 105, '2019-12-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1029719, 105, '2019-12-31', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1029664, 105, '2020-01-01', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1029665, 105, '2020-01-02', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1029666, 105, '2020-01-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1029667, 105, '2020-01-04', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1029668, 105, '2020-01-05', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1029669, 105, '2020-01-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1029670, 105, '2020-01-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1029671, 105, '2020-01-08', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1029672, 105, '2020-01-09', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1029673, 105, '2020-01-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1029674, 105, '2020-01-11', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1029675, 105, '2020-01-12', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1029676, 105, '2020-01-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1029677, 105, '2020-01-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1029678, 105, '2020-01-15', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1029679, 105, '2020-01-16', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1029680, 105, '2020-01-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1029681, 105, '2020-01-18', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1029682, 105, '2020-01-19', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1029683, 105, '2020-01-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1029684, 105, '2020-01-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1029685, 105, '2020-01-22', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1029686, 105, '2020-01-23', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1029687, 105, '2020-01-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1029688, 105, '2020-01-25', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1029689, 105, '2020-01-26', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1029690, 105, '2020-01-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1029691, 105, '2020-01-28', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1029692, 105, '2020-01-29', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1029693, 105, '2020-01-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1029694, 105, '2020-01-31', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1029695, 105, '2020-02-01', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1029696, 105, '2020-02-02', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1029697, 105, '2020-02-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1029698, 105, '2020-02-04', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1031816, 134, '2020-01-01', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1031817, 134, '2020-01-02', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1031818, 134, '2020-01-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1031819, 134, '2020-01-04', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1031820, 134, '2020-01-05', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1031821, 134, '2020-01-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1031822, 134, '2020-01-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1031823, 134, '2020-01-08', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1031824, 134, '2020-01-09', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1031825, 134, '2020-01-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1031826, 134, '2020-01-11', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1031827, 134, '2020-01-12', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1031828, 134, '2020-01-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1031829, 134, '2020-01-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1031830, 134, '2020-01-15', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1031831, 134, '2020-01-16', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1031832, 134, '2020-01-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1031833, 134, '2020-01-18', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1031850, 134, '2020-02-04', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1031851, 134, '2020-02-05', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1031852, 134, '2020-02-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1031853, 134, '2020-02-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1031854, 134, '2020-02-08', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1031855, 134, '2020-02-09', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1031856, 134, '2020-02-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1031857, 134, '2020-02-11', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1031858, 134, '2020-02-12', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1031859, 134, '2020-02-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1031860, 134, '2020-02-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1031861, 134, '2020-02-15', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1031862, 134, '2020-02-16', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1031863, 134, '2020-02-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1031864, 134, '2020-02-18', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1031865, 134, '2020-02-19', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1031866, 134, '2020-02-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1031867, 134, '2020-02-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1033968, 144, '2020-01-01', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1033969, 144, '2020-01-02', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1033970, 144, '2020-01-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1033971, 144, '2020-01-04', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1033972, 144, '2020-01-05', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1033973, 144, '2020-01-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1033974, 144, '2020-01-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1033975, 144, '2020-01-08', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1033976, 144, '2020-01-09', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1033977, 144, '2020-01-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1033978, 144, '2020-01-11', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1033979, 144, '2020-01-12', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1033980, 144, '2020-01-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1033981, 144, '2020-01-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1033982, 144, '2020-01-15', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1033983, 144, '2020-01-16', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1033984, 144, '2020-01-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1033985, 144, '2020-01-18', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1033986, 144, '2020-01-19', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1033987, 144, '2020-01-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1033988, 144, '2020-01-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1033989, 144, '2020-01-22', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1033990, 144, '2020-01-23', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1033991, 144, '2020-01-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1033992, 144, '2020-01-25', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1033993, 144, '2020-01-26', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1033994, 144, '2020-01-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1036120, 102, '2020-01-01', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1036121, 102, '2020-01-02', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1036122, 102, '2020-01-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1036123, 102, '2020-01-04', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1036124, 102, '2020-01-05', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1036125, 102, '2020-01-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1036126, 102, '2020-01-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1036127, 102, '2020-01-08', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1036128, 102, '2020-01-09', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1036129, 102, '2020-01-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1036130, 102, '2020-01-11', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1036131, 102, '2020-01-12', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1036132, 102, '2020-01-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1036133, 102, '2020-01-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1036134, 102, '2020-01-15', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1036135, 102, '2020-01-16', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1036136, 102, '2020-01-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1036137, 102, '2020-01-18', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1036151, 102, '2020-02-01', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1036152, 102, '2020-02-02', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1036153, 102, '2020-02-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1036154, 102, '2020-02-04', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1036155, 102, '2020-02-05', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1036156, 102, '2020-02-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1036157, 102, '2020-02-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1036158, 102, '2020-02-08', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1036159, 102, '2020-02-09', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1036160, 102, '2020-02-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1036161, 102, '2020-02-11', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1036162, 102, '2020-02-12', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1036163, 102, '2020-02-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1036164, 102, '2020-02-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1036165, 102, '2020-02-15', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1036166, 102, '2020-02-16', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1036167, 102, '2020-02-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1036168, 102, '2020-02-18', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1038326, 109, '2019-12-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1038327, 109, '2019-12-31', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1038272, 109, '2020-01-01', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1038273, 109, '2020-01-02', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1038274, 109, '2020-01-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1038275, 109, '2020-01-04', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1038276, 109, '2020-01-05', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1038277, 109, '2020-01-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1038278, 109, '2020-01-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1038279, 109, '2020-01-08', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1038280, 109, '2020-01-09', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1038281, 109, '2020-01-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1038282, 109, '2020-01-11', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1038283, 109, '2020-01-12', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1038284, 109, '2020-01-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1038285, 109, '2020-01-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1038286, 109, '2020-01-15', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1038287, 109, '2020-01-16', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1040478, 118, '2019-12-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1040479, 118, '2019-12-31', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1040424, 118, '2020-01-01', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1040425, 118, '2020-01-02', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1040426, 118, '2020-01-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1040427, 118, '2020-01-04', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1040428, 118, '2020-01-05', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1040429, 118, '2020-01-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1040430, 118, '2020-01-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1040431, 118, '2020-01-08', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1040432, 118, '2020-01-09', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1040433, 118, '2020-01-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1040434, 118, '2020-01-11', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1040435, 118, '2020-01-12', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1040436, 118, '2020-01-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1040437, 118, '2020-01-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1040438, 118, '2020-01-15', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1040439, 118, '2020-01-16', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1040440, 118, '2020-01-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1040441, 118, '2020-01-18', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1040455, 118, '2020-02-01', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1040456, 118, '2020-02-02', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1040457, 118, '2020-02-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1040458, 118, '2020-02-04', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1040459, 118, '2020-02-05', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1040460, 118, '2020-02-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1040461, 118, '2020-02-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1040462, 118, '2020-02-08', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1040463, 118, '2020-02-09', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1040464, 118, '2020-02-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1040465, 118, '2020-02-11', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1040466, 118, '2020-02-12', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1040467, 118, '2020-02-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1040468, 118, '2020-02-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1040469, 118, '2020-02-15', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1040470, 118, '2020-02-16', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1040471, 118, '2020-02-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1040472, 118, '2020-02-18', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1042630, 133, '2019-12-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1042631, 133, '2019-12-31', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1042576, 133, '2020-01-01', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1042577, 133, '2020-01-02', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1042578, 133, '2020-01-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1042579, 133, '2020-01-04', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1042580, 133, '2020-01-05', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1042581, 133, '2020-01-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1042582, 133, '2020-01-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1042583, 133, '2020-01-08', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1042584, 133, '2020-01-09', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1042585, 133, '2020-01-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1042586, 133, '2020-01-11', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1042587, 133, '2020-01-12', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1044728, 111, '2020-01-01', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1044729, 111, '2020-01-02', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1044730, 111, '2020-01-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1044731, 111, '2020-01-04', '08:00:00', '10:40:00', NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '02:40:00', '00:00:00', NULL, 27, '02:40:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1044732, 111, '2020-01-05', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1044733, 111, '2020-01-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1044734, 111, '2020-01-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1044735, 111, '2020-01-08', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1044736, 111, '2020-01-09', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1044737, 111, '2020-01-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1044738, 111, '2020-01-11', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1044739, 111, '2020-01-12', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1044740, 111, '2020-01-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1044741, 111, '2020-01-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1044742, 111, '2020-01-15', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1044743, 111, '2020-01-16', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1044744, 111, '2020-01-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1044745, 111, '2020-01-18', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1044759, 111, '2020-02-01', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1044760, 111, '2020-02-02', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1044761, 111, '2020-02-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1044762, 111, '2020-02-04', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1044763, 111, '2020-02-05', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1044764, 111, '2020-02-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1044765, 111, '2020-02-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1044766, 111, '2020-02-08', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1044767, 111, '2020-02-09', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1044768, 111, '2020-02-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1044769, 111, '2020-02-11', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1044770, 111, '2020-02-12', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1044771, 111, '2020-02-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1044772, 111, '2020-02-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1044773, 111, '2020-02-15', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1044774, 111, '2020-02-16', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1044775, 111, '2020-02-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1044776, 111, '2020-02-18', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1046880, 128, '2020-01-01', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1046881, 128, '2020-01-02', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1046882, 128, '2020-01-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1046883, 128, '2020-01-04', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1046884, 128, '2020-01-05', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1046885, 128, '2020-01-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1046886, 128, '2020-01-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1046887, 128, '2020-01-08', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1046888, 128, '2020-01-09', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1046889, 128, '2020-01-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1046890, 128, '2020-01-11', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1046891, 128, '2020-01-12', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1046892, 128, '2020-01-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1046931, 128, '2020-02-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1046932, 128, '2020-02-22', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1046933, 128, '2020-02-23', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1049086, 142, '2019-12-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1049087, 142, '2019-12-31', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1049032, 142, '2020-01-01', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1049033, 142, '2020-01-02', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1049034, 142, '2020-01-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1049035, 142, '2020-01-04', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1049036, 142, '2020-01-05', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1049037, 142, '2020-01-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1049038, 142, '2020-01-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1049039, 142, '2020-01-08', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1049040, 142, '2020-01-09', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1049041, 142, '2020-01-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1049042, 142, '2020-01-11', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1049043, 142, '2020-01-12', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1049044, 142, '2020-01-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1049045, 142, '2020-01-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1049046, 142, '2020-01-15', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1049047, 142, '2020-01-16', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1049048, 142, '2020-01-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1049049, 142, '2020-01-18', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1049060, 142, '2020-01-29', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1049061, 142, '2020-01-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1049062, 142, '2020-01-31', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1049063, 142, '2020-02-01', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1049064, 142, '2020-02-02', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1049065, 142, '2020-02-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1049066, 142, '2020-02-04', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1049067, 142, '2020-02-05', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1049068, 142, '2020-02-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1049069, 142, '2020-02-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1049070, 142, '2020-02-08', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1049071, 142, '2020-02-09', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1049072, 142, '2020-02-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1049073, 142, '2020-02-11', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1049074, 142, '2020-02-12', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1049075, 142, '2020-02-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1049076, 142, '2020-02-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1051238, 136, '2019-12-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1051239, 136, '2019-12-31', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1051184, 136, '2020-01-01', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1051185, 136, '2020-01-02', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1051186, 136, '2020-01-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1051187, 136, '2020-01-04', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1051188, 136, '2020-01-05', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1051189, 136, '2020-01-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1051190, 136, '2020-01-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1051191, 136, '2020-01-08', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1051192, 136, '2020-01-09', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1051193, 136, '2020-01-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1051194, 136, '2020-01-11', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1051195, 136, '2020-01-12', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1051196, 136, '2020-01-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1051197, 136, '2020-01-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1051198, 136, '2020-01-15', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1051229, 136, '2020-02-15', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1051230, 136, '2020-02-16', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1051231, 136, '2020-02-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1051232, 136, '2020-02-18', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1051233, 136, '2020-02-19', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1051234, 136, '2020-02-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1051235, 136, '2020-02-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1051236, 136, '2020-02-22', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1051237, 136, '2020-02-23', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1053336, 140, '2020-01-01', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1053337, 140, '2020-01-02', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1053338, 140, '2020-01-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1053339, 140, '2020-01-04', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1053340, 140, '2020-01-05', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1053341, 140, '2020-01-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1053342, 140, '2020-01-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1053343, 140, '2020-01-08', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1053344, 140, '2020-01-09', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1053345, 140, '2020-01-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1053346, 140, '2020-01-11', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1053347, 140, '2020-01-12', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1053348, 140, '2020-01-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1053349, 140, '2020-01-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1053350, 140, '2020-01-15', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1053351, 140, '2020-01-16', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1053352, 140, '2020-01-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1053353, 140, '2020-01-18', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1053358, 140, '2020-01-23', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1053359, 140, '2020-01-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1053360, 140, '2020-01-25', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1053361, 140, '2020-01-26', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1053362, 140, '2020-01-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1053363, 140, '2020-01-28', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1053364, 140, '2020-01-29', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1053365, 140, '2020-01-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1053366, 140, '2020-01-31', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1055488, 139, '2020-01-01', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1055489, 139, '2020-01-02', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1055490, 139, '2020-01-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1055491, 139, '2020-01-04', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1055492, 139, '2020-01-05', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1055493, 139, '2020-01-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1055494, 139, '2020-01-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1055495, 139, '2020-01-08', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1055496, 139, '2020-01-09', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1055497, 139, '2020-01-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1055498, 139, '2020-01-11', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1055499, 139, '2020-01-12', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1055500, 139, '2020-01-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1055501, 139, '2020-01-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1055502, 139, '2020-01-15', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1055503, 139, '2020-01-16', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1055504, 139, '2020-01-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1055505, 139, '2020-01-18', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1055528, 139, '2020-02-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1055529, 139, '2020-02-11', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1055530, 139, '2020-02-12', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1055531, 139, '2020-02-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1055532, 139, '2020-02-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1055534, 139, '2020-02-16', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1055535, 139, '2020-02-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1055536, 139, '2020-02-18', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1055537, 139, '2020-02-19', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1055538, 139, '2020-02-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1055539, 139, '2020-02-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1055540, 139, '2020-02-22', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1055541, 139, '2020-02-23', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1057640, 141, '2020-01-01', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1057641, 141, '2020-01-02', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1057642, 141, '2020-01-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1057643, 141, '2020-01-04', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1057644, 141, '2020-01-05', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1057645, 141, '2020-01-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1057646, 141, '2020-01-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1057647, 141, '2020-01-08', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1057648, 141, '2020-01-09', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1057649, 141, '2020-01-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1057650, 141, '2020-01-11', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1057651, 141, '2020-01-12', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1057652, 141, '2020-01-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1057653, 141, '2020-01-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1057654, 141, '2020-01-15', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1057655, 141, '2020-01-16', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1057656, 141, '2020-01-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1057657, 141, '2020-01-18', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1057658, 141, '2020-01-19', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1057659, 141, '2020-01-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1057660, 141, '2020-01-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1057661, 141, '2020-01-22', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1057662, 141, '2020-01-23', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1057663, 141, '2020-01-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1057664, 141, '2020-01-25', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1057665, 141, '2020-01-26', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1057666, 141, '2020-01-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1057667, 141, '2020-01-28', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1057668, 141, '2020-01-29', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1057669, 141, '2020-01-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1057670, 141, '2020-01-31', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1057671, 141, '2020-02-01', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1057672, 141, '2020-02-02', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1057673, 141, '2020-02-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1057674, 141, '2020-02-04', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1059846, 122, '2019-12-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1059847, 122, '2019-12-31', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1059792, 122, '2020-01-01', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1059793, 122, '2020-01-02', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1059794, 122, '2020-01-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1059795, 122, '2020-01-04', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1059796, 122, '2020-01-05', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1059797, 122, '2020-01-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1059798, 122, '2020-01-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1059799, 122, '2020-01-08', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1059800, 122, '2020-01-09', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1059801, 122, '2020-01-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1059802, 122, '2020-01-11', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1059803, 122, '2020-01-12', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1059804, 122, '2020-01-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1059805, 122, '2020-01-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1059806, 122, '2020-01-15', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1059807, 122, '2020-01-16', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1059808, 122, '2020-01-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1059809, 122, '2020-01-18', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1059826, 122, '2020-02-04', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1059827, 122, '2020-02-05', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1059828, 122, '2020-02-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1059829, 122, '2020-02-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1059830, 122, '2020-02-08', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1059831, 122, '2020-02-09', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1059832, 122, '2020-02-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1059833, 122, '2020-02-11', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1059834, 122, '2020-02-12', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1059835, 122, '2020-02-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1059836, 122, '2020-02-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1059837, 122, '2020-02-15', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1059838, 122, '2020-02-16', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1059839, 122, '2020-02-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1059840, 122, '2020-02-18', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1059841, 122, '2020-02-19', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1059842, 122, '2020-02-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1059843, 122, '2020-02-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1061998, 106, '2019-12-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '04:10:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '04:10:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1061999, 106, '2019-12-31', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '04:10:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '04:10:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1061944, 106, '2020-01-01', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '04:10:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '04:10:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1061945, 106, '2020-01-02', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '04:10:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '04:10:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1061946, 106, '2020-01-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '04:10:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1061947, 106, '2020-01-04', NULL, NULL, NULL, NULL, NULL, '00:00:00', '04:10:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1061948, 106, '2020-01-05', NULL, NULL, NULL, NULL, NULL, '00:00:00', '04:10:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1061949, 106, '2020-01-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '04:10:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '04:10:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1061950, 106, '2020-01-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '04:10:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '04:10:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1061951, 106, '2020-01-08', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '04:10:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '04:10:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1061952, 106, '2020-01-09', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '04:10:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '04:10:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1061953, 106, '2020-01-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '04:10:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1061954, 106, '2020-01-11', NULL, NULL, NULL, NULL, NULL, '00:00:00', '04:10:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1061955, 106, '2020-01-12', NULL, NULL, NULL, NULL, NULL, '00:00:00', '04:10:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1061956, 106, '2020-01-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '04:10:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '04:10:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1061957, 106, '2020-01-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '04:10:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '04:10:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1061958, 106, '2020-01-15', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '04:10:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '04:10:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1061959, 106, '2020-01-16', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '04:10:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '04:10:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1061960, 106, '2020-01-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '04:10:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1061961, 106, '2020-01-18', NULL, NULL, NULL, NULL, NULL, '00:00:00', '04:10:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1061962, 106, '2020-01-19', NULL, NULL, NULL, NULL, NULL, '00:00:00', '04:10:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1061963, 106, '2020-01-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '04:10:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '04:10:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1061964, 106, '2020-01-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '04:10:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '04:10:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1061965, 106, '2020-01-22', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '04:10:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '04:10:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1061966, 106, '2020-01-23', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '04:10:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '04:10:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1061967, 106, '2020-01-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '04:10:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1061968, 106, '2020-01-25', NULL, NULL, NULL, NULL, NULL, '00:00:00', '04:10:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1061969, 106, '2020-01-26', NULL, NULL, NULL, NULL, NULL, '00:00:00', '04:10:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1061970, 106, '2020-01-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '04:10:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '04:10:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1064096, 110, '2020-01-01', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1064097, 110, '2020-01-02', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1064098, 110, '2020-01-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1064099, 110, '2020-01-04', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1064100, 110, '2020-01-05', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1064101, 110, '2020-01-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1064102, 110, '2020-01-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1064103, 110, '2020-01-08', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1064104, 110, '2020-01-09', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1064105, 110, '2020-01-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1064106, 110, '2020-01-11', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1064107, 110, '2020-01-12', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1064108, 110, '2020-01-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1064109, 110, '2020-01-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1064110, 110, '2020-01-15', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1064111, 110, '2020-01-16', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1064112, 110, '2020-01-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1064113, 110, '2020-01-18', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1064127, 110, '2020-02-01', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1064128, 110, '2020-02-02', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1064129, 110, '2020-02-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1064130, 110, '2020-02-04', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1064131, 110, '2020-02-05', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1064132, 110, '2020-02-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1064133, 110, '2020-02-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1064134, 110, '2020-02-08', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1064135, 110, '2020-02-09', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1064136, 110, '2020-02-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1064137, 110, '2020-02-11', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1064138, 110, '2020-02-12', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1064139, 110, '2020-02-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1064140, 110, '2020-02-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1064141, 110, '2020-02-15', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1064142, 110, '2020-02-16', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1064143, 110, '2020-02-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1064144, 110, '2020-02-18', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1066248, 145, '2020-01-01', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1066249, 145, '2020-01-02', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1066250, 145, '2020-01-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1066251, 145, '2020-01-04', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1066252, 145, '2020-01-05', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1066253, 145, '2020-01-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1066254, 145, '2020-01-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1066255, 145, '2020-01-08', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1066256, 145, '2020-01-09', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1066257, 145, '2020-01-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1066258, 145, '2020-01-11', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1066259, 145, '2020-01-12', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1066260, 145, '2020-01-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1066261, 145, '2020-01-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1066262, 145, '2020-01-15', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1066263, 145, '2020-01-16', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1068400, 148, '2020-01-01', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1068401, 148, '2020-01-02', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1068402, 148, '2020-01-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1068403, 148, '2020-01-04', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1068404, 148, '2020-01-05', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1068405, 148, '2020-01-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1068406, 148, '2020-01-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1068407, 148, '2020-01-08', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1068408, 148, '2020-01-09', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1068409, 148, '2020-01-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1068410, 148, '2020-01-11', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1068411, 148, '2020-01-12', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1068412, 148, '2020-01-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1068413, 148, '2020-01-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1068414, 148, '2020-01-15', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1068415, 148, '2020-01-16', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1068416, 148, '2020-01-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1068417, 148, '2020-01-18', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1068431, 148, '2020-02-01', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1068432, 148, '2020-02-02', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1068433, 148, '2020-02-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1068434, 148, '2020-02-04', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1068435, 148, '2020-02-05', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1068436, 148, '2020-02-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1068437, 148, '2020-02-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1068438, 148, '2020-02-08', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1068439, 148, '2020-02-09', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1068440, 148, '2020-02-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1068441, 148, '2020-02-11', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1068442, 148, '2020-02-12', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1068443, 148, '2020-02-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1068444, 148, '2020-02-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1068445, 148, '2020-02-15', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1068446, 148, '2020-02-16', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1068447, 148, '2020-02-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1068448, 148, '2020-02-18', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1070606, 130, '2019-12-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1070607, 130, '2019-12-31', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1070552, 130, '2020-01-01', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1070553, 130, '2020-01-02', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1070554, 130, '2020-01-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1070555, 130, '2020-01-04', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1070556, 130, '2020-01-05', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1070557, 130, '2020-01-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1070558, 130, '2020-01-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1070559, 130, '2020-01-08', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1070560, 130, '2020-01-09', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1070561, 130, '2020-01-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1070562, 130, '2020-01-11', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1070563, 130, '2020-01-12', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (914518, 129, '2019-12-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (914519, 129, '2019-12-31', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (914464, 129, '2020-01-01', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (914465, 129, '2020-01-02', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (914466, 129, '2020-01-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (914467, 129, '2020-01-04', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (914468, 129, '2020-01-05', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (914469, 129, '2020-01-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (914470, 129, '2020-01-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (914471, 129, '2020-01-08', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (914472, 129, '2020-01-09', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (914473, 129, '2020-01-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (914474, 129, '2020-01-11', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (914475, 129, '2020-01-12', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (914476, 129, '2020-01-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (914477, 129, '2020-01-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (914478, 129, '2020-01-15', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (914481, 129, '2020-01-18', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (914479, 129, '2020-01-16', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (914480, 129, '2020-01-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (914482, 129, '2020-01-19', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (914483, 129, '2020-01-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (914484, 129, '2020-01-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (914485, 129, '2020-01-22', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (914486, 129, '2020-01-23', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (914487, 129, '2020-01-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (914488, 129, '2020-01-25', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (914489, 129, '2020-01-26', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (914517, 129, '2020-02-23', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1074856, 143, '2020-01-01', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1074857, 143, '2020-01-02', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1074858, 143, '2020-01-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1074859, 143, '2020-01-04', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1074860, 143, '2020-01-05', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1074861, 143, '2020-01-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1074862, 143, '2020-01-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1074863, 143, '2020-01-08', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1074864, 143, '2020-01-09', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1074865, 143, '2020-01-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1074866, 143, '2020-01-11', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1074867, 143, '2020-01-12', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1074868, 143, '2020-01-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1074869, 143, '2020-01-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1074870, 143, '2020-01-15', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1074871, 143, '2020-01-16', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1074872, 143, '2020-01-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1074873, 143, '2020-01-18', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1074887, 143, '2020-02-01', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1074888, 143, '2020-02-02', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1074889, 143, '2020-02-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1074890, 143, '2020-02-04', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1074891, 143, '2020-02-05', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1074892, 143, '2020-02-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1074893, 143, '2020-02-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1074894, 143, '2020-02-08', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1074895, 143, '2020-02-09', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1074896, 143, '2020-02-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1074897, 143, '2020-02-11', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1074898, 143, '2020-02-12', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1074899, 143, '2020-02-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1074900, 143, '2020-02-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1074901, 143, '2020-02-15', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1074902, 143, '2020-02-16', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1074903, 143, '2020-02-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) VALUES (1074904, 143, '2020-02-18', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00', '06:40:00'); -- -- Data for Name: staffreportperiodweeks; Type: TABLE DATA; Schema: portanova; Owner: - -- -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5512, 146, 27, 2020, 1, '33:20:00', '24:00:00', '00:00:00', '00:00:00', '00:00:00', '-09:20:00', '2019-12-30', NULL, '24:00:00', 5, 5, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5513, 146, 27, 2020, 2, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-06', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5514, 146, 27, 2020, 3, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-13', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5515, 146, 27, 2020, 4, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-20', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5516, 146, 27, 2020, 5, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-27', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5517, 146, 27, 2020, 6, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-03', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5518, 146, 27, 2020, 7, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-10', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5519, 146, 27, 2020, 8, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-17', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5520, 132, 27, 2020, 1, '33:20:00', '24:00:00', '00:00:00', '00:00:00', '00:00:00', '-09:20:00', '2019-12-30', NULL, '24:00:00', 5, 5, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5521, 132, 27, 2020, 2, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-06', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5522, 132, 27, 2020, 3, '20:00:00', '24:00:00', '00:00:00', '00:00:00', '00:00:00', '04:00:00', '2020-01-13', NULL, '24:00:00', 3, 3, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6142, 146, 29, 2020, 9, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-24', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6143, 146, 29, 2020, 10, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-02', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6144, 146, 29, 2020, 11, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-09', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6145, 146, 29, 2020, 12, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-16', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6146, 146, 29, 2020, 13, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-23', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6147, 146, 29, 2020, 14, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-30', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6148, 146, 29, 2020, 15, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-04-06', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6149, 146, 29, 2020, 16, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-04-13', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5523, 115, 27, 2020, 1, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2019-12-30', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5524, 115, 27, 2020, 2, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-06', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5525, 115, 27, 2020, 3, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-13', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5526, 115, 27, 2020, 4, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-20', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5527, 115, 27, 2020, 5, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-27', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5528, 115, 27, 2020, 6, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-03', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5529, 115, 27, 2020, 7, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-10', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5530, 115, 27, 2020, 8, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-17', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6150, 115, 29, 2020, 9, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-24', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6151, 115, 29, 2020, 10, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-02', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5531, 114, 27, 2020, 1, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2019-12-30', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5532, 114, 27, 2020, 2, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-06', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5533, 114, 27, 2020, 3, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-13', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5534, 114, 27, 2020, 4, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-20', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6152, 115, 29, 2020, 11, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-09', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6153, 115, 29, 2020, 12, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-16', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6154, 115, 29, 2020, 13, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-23', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6155, 115, 29, 2020, 14, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-30', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6156, 115, 29, 2020, 15, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-04-06', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6157, 115, 29, 2020, 16, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-04-13', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5535, 114, 27, 2020, 5, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-27', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5536, 114, 27, 2020, 6, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-03', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5537, 114, 27, 2020, 7, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-10', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5538, 114, 27, 2020, 8, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-17', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5539, 112, 27, 2020, 1, '33:20:00', '24:00:00', '00:00:00', '00:00:00', '00:00:00', '-09:20:00', '2019-12-30', NULL, '24:00:00', 5, 5, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5540, 112, 27, 2020, 2, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-06', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5541, 112, 27, 2020, 3, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-13', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5542, 112, 27, 2020, 4, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-20', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5543, 112, 27, 2020, 5, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-27', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5544, 112, 27, 2020, 6, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-03', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5545, 112, 27, 2020, 7, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-10', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5546, 112, 27, 2020, 8, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-17', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6158, 114, 29, 2020, 9, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-24', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6159, 114, 29, 2020, 10, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-02', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6160, 114, 29, 2020, 11, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-09', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6161, 114, 29, 2020, 12, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-16', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6162, 114, 29, 2020, 13, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-23', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6163, 114, 29, 2020, 14, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-30', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6164, 114, 29, 2020, 15, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-04-06', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6165, 114, 29, 2020, 16, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-04-13', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5547, 108, 27, 2020, 2, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-06', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5548, 108, 27, 2020, 3, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-13', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5549, 108, 27, 2020, 4, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-20', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5550, 108, 27, 2020, 5, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-27', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5551, 108, 27, 2020, 6, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-03', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5552, 108, 27, 2020, 7, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-10', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5553, 108, 27, 2020, 8, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-17', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6166, 112, 29, 2020, 9, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-24', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6167, 112, 29, 2020, 10, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-02', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6168, 112, 29, 2020, 11, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-09', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6169, 112, 29, 2020, 12, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-16', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6170, 112, 29, 2020, 13, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-23', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6171, 112, 29, 2020, 14, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-30', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6172, 112, 29, 2020, 15, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-04-06', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6173, 112, 29, 2020, 16, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-04-13', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5554, 135, 27, 2020, 1, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2019-12-30', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5555, 135, 27, 2020, 2, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-06', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5556, 135, 27, 2020, 3, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-13', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5557, 135, 27, 2020, 4, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-20', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5558, 135, 27, 2020, 5, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-27', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5559, 135, 27, 2020, 6, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-03', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5560, 135, 27, 2020, 7, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-10', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5561, 135, 27, 2020, 8, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-17', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6174, 108, 29, 2020, 9, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-24', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6175, 108, 29, 2020, 10, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-02', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5562, 127, 27, 2020, 1, '33:20:00', '24:00:00', '00:00:00', '00:00:00', '00:00:00', '-09:20:00', '2019-12-30', NULL, '24:00:00', 5, 5, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5563, 127, 27, 2020, 2, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-06', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5564, 127, 27, 2020, 3, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-13', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5565, 127, 27, 2020, 4, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-20', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5566, 127, 27, 2020, 5, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-27', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5567, 127, 27, 2020, 6, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-03', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6176, 108, 29, 2020, 11, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-09', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6177, 108, 29, 2020, 12, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-16', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6178, 108, 29, 2020, 13, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-23', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6179, 108, 29, 2020, 14, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-30', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6180, 108, 29, 2020, 15, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-04-06', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6181, 108, 29, 2020, 16, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-04-13', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5568, 127, 27, 2020, 7, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-10', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5569, 127, 27, 2020, 8, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-17', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5570, 149, 27, 2020, 1, '33:20:00', '24:00:00', '00:00:00', '00:00:00', '00:00:00', '-09:20:00', '2019-12-30', NULL, '24:00:00', 5, 5, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5571, 149, 27, 2020, 2, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-06', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5572, 149, 27, 2020, 3, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-13', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5573, 149, 27, 2020, 4, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-20', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5574, 149, 27, 2020, 5, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-27', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5575, 149, 27, 2020, 6, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-03', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5576, 149, 27, 2020, 7, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-10', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5577, 149, 27, 2020, 8, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-17', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6182, 135, 29, 2020, 9, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-24', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6183, 135, 29, 2020, 10, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-02', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6184, 135, 29, 2020, 11, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-09', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6185, 135, 29, 2020, 12, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-16', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6186, 135, 29, 2020, 13, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-23', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6187, 135, 29, 2020, 14, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-30', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5578, 103, 27, 2020, 1, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2019-12-30', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5579, 103, 27, 2020, 2, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-06', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5580, 103, 27, 2020, 3, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-13', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6188, 135, 29, 2020, 15, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-04-06', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5581, 103, 27, 2020, 4, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-20', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5582, 103, 27, 2020, 5, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-27', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5583, 103, 27, 2020, 6, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-03', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5584, 103, 27, 2020, 7, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-10', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5585, 103, 27, 2020, 8, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-17', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6189, 135, 29, 2020, 16, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-04-13', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5586, 121, 27, 2020, 1, '33:20:00', '24:00:00', '00:00:00', '00:00:00', '00:00:00', '-09:20:00', '2019-12-30', NULL, '24:00:00', 5, 5, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5587, 121, 27, 2020, 2, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-06', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6190, 127, 29, 2020, 9, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-24', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6191, 127, 29, 2020, 10, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-02', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6192, 127, 29, 2020, 11, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-09', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6193, 127, 29, 2020, 12, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-16', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6194, 127, 29, 2020, 13, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-23', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6195, 127, 29, 2020, 14, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-30', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6196, 127, 29, 2020, 15, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-04-06', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6197, 127, 29, 2020, 16, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-04-13', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5588, 121, 27, 2020, 3, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-13', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5589, 121, 27, 2020, 4, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-20', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5590, 121, 27, 2020, 5, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-27', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5591, 121, 27, 2020, 6, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-03', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5592, 121, 27, 2020, 7, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-10', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5593, 121, 27, 2020, 8, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-17', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5594, 125, 27, 2020, 1, '20:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '20:00:00', '2019-12-30', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5595, 125, 27, 2020, 2, '20:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '20:00:00', '2020-01-06', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5596, 125, 27, 2020, 3, '20:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '20:00:00', '2020-01-13', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5597, 125, 27, 2020, 4, '20:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '20:00:00', '2020-01-20', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5598, 125, 27, 2020, 5, '20:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '20:00:00', '2020-01-27', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5599, 125, 27, 2020, 6, '20:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '20:00:00', '2020-02-03', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6198, 149, 29, 2020, 9, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-24', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6199, 149, 29, 2020, 10, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-02', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6200, 149, 29, 2020, 11, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-09', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6201, 149, 29, 2020, 12, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-16', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6202, 149, 29, 2020, 13, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-23', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5600, 125, 27, 2020, 7, '20:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '20:00:00', '2020-02-10', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6203, 149, 29, 2020, 14, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-30', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6204, 149, 29, 2020, 15, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-04-06', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6205, 149, 29, 2020, 16, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-04-13', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5601, 125, 27, 2020, 8, '20:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '20:00:00', '2020-02-17', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5602, 119, 27, 2020, 1, '33:20:00', '24:00:00', '00:00:00', '00:00:00', '00:00:00', '-09:20:00', '2019-12-30', NULL, '24:00:00', 5, 5, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5603, 119, 27, 2020, 2, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-06', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5604, 119, 27, 2020, 3, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-13', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5605, 119, 27, 2020, 4, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-20', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5606, 119, 27, 2020, 5, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-27', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5607, 119, 27, 2020, 6, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-03', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5608, 119, 27, 2020, 7, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-10', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5609, 119, 27, 2020, 8, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-17', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6206, 103, 29, 2020, 9, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-24', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6207, 103, 29, 2020, 10, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-02', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6208, 103, 29, 2020, 11, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-09', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6209, 103, 29, 2020, 12, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-16', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6210, 103, 29, 2020, 13, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-23', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6211, 103, 29, 2020, 14, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-30', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6212, 103, 29, 2020, 15, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-04-06', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6213, 103, 29, 2020, 16, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-04-13', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5610, 113, 27, 2020, 1, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2019-12-30', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5611, 113, 27, 2020, 2, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-06', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5612, 113, 27, 2020, 3, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-13', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5613, 113, 27, 2020, 4, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-20', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5614, 113, 27, 2020, 5, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-27', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5615, 113, 27, 2020, 6, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-03', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5616, 113, 27, 2020, 7, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-10', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5617, 113, 27, 2020, 8, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-17', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5618, 147, 27, 2020, 1, '33:20:00', '24:00:00', '00:00:00', '00:00:00', '00:00:00', '-09:20:00', '2019-12-30', NULL, '24:00:00', 5, 5, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5619, 147, 27, 2020, 2, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-06', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6214, 121, 29, 2020, 9, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-24', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6215, 121, 29, 2020, 10, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-02', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6216, 121, 29, 2020, 11, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-09', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6217, 121, 29, 2020, 12, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-16', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6218, 121, 29, 2020, 13, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-23', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6219, 121, 29, 2020, 14, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-30', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6220, 121, 29, 2020, 15, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-04-06', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6221, 121, 29, 2020, 16, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-04-13', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5620, 147, 27, 2020, 3, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-13', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5621, 147, 27, 2020, 4, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-20', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5622, 147, 27, 2020, 5, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-27', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5623, 147, 27, 2020, 6, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-03', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5624, 147, 27, 2020, 7, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-10', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5625, 147, 27, 2020, 8, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-17', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5626, 131, 27, 2020, 1, '20:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '20:00:00', '2019-12-30', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5627, 131, 27, 2020, 2, '20:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '20:00:00', '2020-01-06', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5628, 131, 27, 2020, 3, '20:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '20:00:00', '2020-01-13', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5629, 131, 27, 2020, 4, '20:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '20:00:00', '2020-01-20', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5630, 131, 27, 2020, 5, '20:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '20:00:00', '2020-01-27', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5631, 131, 27, 2020, 6, '20:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '20:00:00', '2020-02-03', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5632, 131, 27, 2020, 7, '20:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '20:00:00', '2020-02-10', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6222, 125, 29, 2020, 9, '20:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '20:00:00', '2020-02-24', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6223, 125, 29, 2020, 10, '20:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '20:00:00', '2020-03-02', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6224, 125, 29, 2020, 11, '20:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '20:00:00', '2020-03-09', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6225, 125, 29, 2020, 12, '20:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '20:00:00', '2020-03-16', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6226, 125, 29, 2020, 13, '20:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '20:00:00', '2020-03-23', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6227, 125, 29, 2020, 14, '20:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '20:00:00', '2020-03-30', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6228, 125, 29, 2020, 15, '20:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '20:00:00', '2020-04-06', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6229, 125, 29, 2020, 16, '20:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '20:00:00', '2020-04-13', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5633, 131, 27, 2020, 8, '20:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '20:00:00', '2020-02-17', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5634, 104, 27, 2020, 1, '30:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '10:00:00', '2019-12-30', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5635, 104, 27, 2020, 2, '30:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '10:00:00', '2020-01-06', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5636, 104, 27, 2020, 3, '30:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '10:00:00', '2020-01-13', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5637, 104, 27, 2020, 4, '30:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '10:00:00', '2020-01-20', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5638, 104, 27, 2020, 5, '30:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '10:00:00', '2020-01-27', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5639, 104, 27, 2020, 6, '30:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '10:00:00', '2020-02-03', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5640, 104, 27, 2020, 7, '30:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '10:00:00', '2020-02-10', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5641, 104, 27, 2020, 8, '30:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '10:00:00', '2020-02-17', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5642, 151, 27, 2020, 5, '13:20:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '-13:20:00', '2020-01-27', NULL, '00:00:00', 2, 2, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6230, 119, 29, 2020, 9, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-24', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6231, 119, 29, 2020, 10, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-02', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6232, 119, 29, 2020, 11, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-09', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6233, 119, 29, 2020, 12, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-16', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6234, 119, 29, 2020, 13, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-23', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6235, 119, 29, 2020, 14, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-30', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6236, 119, 29, 2020, 15, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-04-06', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6237, 119, 29, 2020, 16, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-04-13', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6238, 113, 29, 2020, 9, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-24', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6239, 113, 29, 2020, 10, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-02', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5643, 151, 27, 2020, 6, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-03', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5644, 151, 27, 2020, 7, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-10', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5645, 151, 27, 2020, 8, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-17', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5646, 138, 27, 2020, 1, '33:20:00', '24:00:00', '00:00:00', '00:00:00', '00:00:00', '-09:20:00', '2019-12-30', NULL, '24:00:00', 5, 5, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5647, 138, 27, 2020, 2, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-06', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5648, 138, 27, 2020, 3, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-13', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5649, 138, 27, 2020, 4, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-20', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5650, 138, 27, 2020, 5, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-27', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5651, 138, 27, 2020, 6, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-03', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5652, 138, 27, 2020, 7, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-10', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5653, 138, 27, 2020, 8, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-17', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6240, 113, 29, 2020, 11, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-09', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6241, 113, 29, 2020, 12, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-16', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6242, 113, 29, 2020, 13, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-23', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6243, 113, 29, 2020, 14, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-30', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6244, 113, 29, 2020, 15, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-04-06', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6245, 113, 29, 2020, 16, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-04-13', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5654, 105, 27, 2020, 1, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2019-12-30', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5655, 105, 27, 2020, 2, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-06', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5656, 105, 27, 2020, 3, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-13', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5657, 105, 27, 2020, 4, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-20', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5658, 105, 27, 2020, 5, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-27', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5659, 105, 27, 2020, 6, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-03', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5660, 105, 27, 2020, 7, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-10', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5661, 105, 27, 2020, 8, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-17', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6246, 147, 29, 2020, 9, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-24', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6247, 147, 29, 2020, 10, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-02', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6248, 147, 29, 2020, 11, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-09', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6249, 147, 29, 2020, 12, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-16', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6250, 147, 29, 2020, 13, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-23', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6251, 147, 29, 2020, 14, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-30', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6252, 147, 29, 2020, 15, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-04-06', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6253, 147, 29, 2020, 16, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-04-13', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6254, 131, 29, 2020, 9, '20:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '20:00:00', '2020-02-24', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6255, 131, 29, 2020, 10, '20:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '20:00:00', '2020-03-02', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5662, 134, 27, 2020, 1, '33:20:00', '24:00:00', '00:00:00', '00:00:00', '00:00:00', '-09:20:00', '2019-12-30', NULL, '24:00:00', 5, 5, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5663, 134, 27, 2020, 2, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-06', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5664, 134, 27, 2020, 3, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-13', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5665, 134, 27, 2020, 4, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-20', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5666, 134, 27, 2020, 5, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-27', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5667, 134, 27, 2020, 6, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-03', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5668, 134, 27, 2020, 7, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-10', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5669, 134, 27, 2020, 8, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-17', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6256, 131, 29, 2020, 11, '20:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '20:00:00', '2020-03-09', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5670, 144, 27, 2020, 1, '33:20:00', '24:00:00', '00:00:00', '00:00:00', '00:00:00', '-09:20:00', '2019-12-30', NULL, '24:00:00', 5, 5, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5671, 144, 27, 2020, 2, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-06', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5672, 144, 27, 2020, 3, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-13', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5673, 144, 27, 2020, 4, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-20', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5674, 144, 27, 2020, 5, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-27', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5675, 144, 27, 2020, 6, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-03', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5676, 144, 27, 2020, 7, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-10', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5677, 144, 27, 2020, 8, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-17', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5678, 102, 27, 2020, 1, '33:20:00', '24:00:00', '00:00:00', '00:00:00', '00:00:00', '-09:20:00', '2019-12-30', NULL, '24:00:00', 5, 5, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5679, 102, 27, 2020, 2, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-06', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5680, 102, 27, 2020, 3, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-13', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5681, 102, 27, 2020, 4, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-20', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5682, 102, 27, 2020, 5, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-27', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5683, 102, 27, 2020, 6, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-03', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5684, 102, 27, 2020, 7, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-10', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5685, 102, 27, 2020, 8, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-17', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5686, 109, 27, 2020, 1, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2019-12-30', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5687, 109, 27, 2020, 2, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-06', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5688, 109, 27, 2020, 3, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-13', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5689, 109, 27, 2020, 4, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-20', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5690, 109, 27, 2020, 5, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-27', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5691, 109, 27, 2020, 6, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-03', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5692, 109, 27, 2020, 7, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-10', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5693, 109, 27, 2020, 8, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-17', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5694, 118, 27, 2020, 1, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2019-12-30', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6257, 131, 29, 2020, 12, '20:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '20:00:00', '2020-03-16', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6258, 131, 29, 2020, 13, '20:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '20:00:00', '2020-03-23', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6259, 131, 29, 2020, 14, '20:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '20:00:00', '2020-03-30', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6260, 131, 29, 2020, 15, '20:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '20:00:00', '2020-04-06', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6261, 131, 29, 2020, 16, '20:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '20:00:00', '2020-04-13', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5695, 118, 27, 2020, 2, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-06', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5696, 118, 27, 2020, 3, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-13', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5697, 118, 27, 2020, 4, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-20', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5698, 118, 27, 2020, 5, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-27', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5699, 118, 27, 2020, 6, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-03', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5700, 118, 27, 2020, 7, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-10', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5701, 118, 27, 2020, 8, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-17', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5702, 133, 27, 2020, 1, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2019-12-30', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5703, 133, 27, 2020, 2, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-06', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5704, 133, 27, 2020, 3, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-13', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5705, 133, 27, 2020, 4, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-20', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5706, 133, 27, 2020, 5, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-27', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5707, 133, 27, 2020, 6, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-03', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5708, 133, 27, 2020, 7, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-10', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5709, 133, 27, 2020, 8, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-17', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5710, 111, 27, 2020, 1, '33:20:00', '24:00:00', '00:00:00', '00:00:00', '00:00:00', '-09:20:00', '2019-12-30', NULL, '24:00:00', 5, 5, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5711, 111, 27, 2020, 2, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-06', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5712, 111, 27, 2020, 3, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-13', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5713, 111, 27, 2020, 4, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-20', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5714, 111, 27, 2020, 5, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-27', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5715, 111, 27, 2020, 6, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-03', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5716, 111, 27, 2020, 7, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-10', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5717, 111, 27, 2020, 8, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-17', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6262, 104, 29, 2020, 9, '30:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '10:00:00', '2020-02-24', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6263, 104, 29, 2020, 10, '30:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '10:00:00', '2020-03-02', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6264, 104, 29, 2020, 11, '30:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '10:00:00', '2020-03-09', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6265, 104, 29, 2020, 12, '30:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '10:00:00', '2020-03-16', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6266, 104, 29, 2020, 13, '30:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '10:00:00', '2020-03-23', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5718, 128, 27, 2020, 1, '33:20:00', '24:00:00', '00:00:00', '00:00:00', '00:00:00', '-09:20:00', '2019-12-30', NULL, '24:00:00', 5, 5, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5719, 128, 27, 2020, 2, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-06', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5720, 128, 27, 2020, 3, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-13', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5721, 128, 27, 2020, 4, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-20', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5722, 128, 27, 2020, 5, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-27', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5723, 128, 27, 2020, 6, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-03', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5724, 128, 27, 2020, 7, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-10', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5725, 128, 27, 2020, 8, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-17', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5726, 142, 27, 2020, 1, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2019-12-30', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5727, 142, 27, 2020, 2, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-06', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5728, 142, 27, 2020, 3, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-13', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5729, 142, 27, 2020, 4, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-20', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5730, 142, 27, 2020, 5, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-27', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5731, 142, 27, 2020, 6, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-03', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5732, 142, 27, 2020, 7, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-10', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5733, 142, 27, 2020, 8, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-17', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5734, 136, 27, 2020, 1, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2019-12-30', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5735, 136, 27, 2020, 2, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-06', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5736, 136, 27, 2020, 3, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-13', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5737, 136, 27, 2020, 4, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-20', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5738, 136, 27, 2020, 5, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-27', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5739, 136, 27, 2020, 6, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-03', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5740, 136, 27, 2020, 7, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-10', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6267, 104, 29, 2020, 14, '30:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '10:00:00', '2020-03-30', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6268, 104, 29, 2020, 15, '30:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '10:00:00', '2020-04-06', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6269, 104, 29, 2020, 16, '30:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '10:00:00', '2020-04-13', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5741, 136, 27, 2020, 8, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-17', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5742, 140, 27, 2020, 1, '33:20:00', '24:00:00', '00:00:00', '00:00:00', '00:00:00', '-09:20:00', '2019-12-30', NULL, '24:00:00', 5, 5, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5743, 140, 27, 2020, 2, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-06', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5744, 140, 27, 2020, 3, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-13', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5745, 140, 27, 2020, 4, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-20', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5746, 140, 27, 2020, 5, '33:20:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '06:40:00', '2020-01-27', NULL, '40:00:00', 5, 5, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5747, 139, 27, 2020, 1, '33:20:00', '24:00:00', '00:00:00', '00:00:00', '00:00:00', '-09:20:00', '2019-12-30', NULL, '24:00:00', 5, 5, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5748, 139, 27, 2020, 2, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-06', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5749, 139, 27, 2020, 3, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-13', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5750, 139, 27, 2020, 4, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-20', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5751, 139, 27, 2020, 5, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-27', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5752, 139, 27, 2020, 6, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-03', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5753, 139, 27, 2020, 7, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-10', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5754, 139, 27, 2020, 8, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-17', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5755, 141, 27, 2020, 1, '33:20:00', '24:00:00', '00:00:00', '00:00:00', '00:00:00', '-09:20:00', '2019-12-30', NULL, '24:00:00', 5, 5, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5756, 141, 27, 2020, 2, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-06', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5757, 141, 27, 2020, 3, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-13', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5758, 141, 27, 2020, 4, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-20', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5759, 141, 27, 2020, 5, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-27', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5760, 141, 27, 2020, 6, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-03', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5761, 141, 27, 2020, 7, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-10', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5762, 141, 27, 2020, 8, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-17', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6270, 151, 29, 2020, 9, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-24', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6271, 151, 29, 2020, 10, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-02', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6272, 151, 29, 2020, 11, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-09', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6273, 151, 29, 2020, 12, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-16', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6274, 151, 29, 2020, 13, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-23', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6275, 151, 29, 2020, 14, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-30', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6276, 151, 29, 2020, 15, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-04-06', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6277, 151, 29, 2020, 16, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-04-13', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5763, 122, 27, 2020, 1, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2019-12-30', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5764, 122, 27, 2020, 2, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-06', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5765, 122, 27, 2020, 3, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-13', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5766, 122, 27, 2020, 4, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-20', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5767, 122, 27, 2020, 5, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-27', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5768, 122, 27, 2020, 6, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-03', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5769, 122, 27, 2020, 7, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-10', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5770, 122, 27, 2020, 8, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-17', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5771, 106, 27, 2020, 1, '12:30:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '27:30:00', '2019-12-30', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5772, 106, 27, 2020, 2, '12:30:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '27:30:00', '2020-01-06', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5773, 106, 27, 2020, 3, '12:30:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '27:30:00', '2020-01-13', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5774, 106, 27, 2020, 4, '12:30:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '27:30:00', '2020-01-20', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5775, 106, 27, 2020, 5, '12:30:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '27:30:00', '2020-01-27', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5776, 106, 27, 2020, 6, '12:30:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '27:30:00', '2020-02-03', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5777, 106, 27, 2020, 7, '12:30:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '27:30:00', '2020-02-10', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5778, 106, 27, 2020, 8, '12:30:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '27:30:00', '2020-02-17', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5779, 110, 27, 2020, 1, '33:20:00', '24:00:00', '00:00:00', '00:00:00', '00:00:00', '-09:20:00', '2019-12-30', NULL, '24:00:00', 5, 5, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5780, 110, 27, 2020, 2, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-06', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5781, 110, 27, 2020, 3, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-13', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6278, 138, 29, 2020, 9, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-24', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6279, 138, 29, 2020, 10, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-02', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6280, 138, 29, 2020, 11, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-09', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5782, 110, 27, 2020, 4, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-20', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5783, 110, 27, 2020, 5, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-27', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5784, 110, 27, 2020, 6, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-03', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5785, 110, 27, 2020, 7, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-10', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5786, 110, 27, 2020, 8, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-17', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5787, 145, 27, 2020, 1, '33:20:00', '24:00:00', '00:00:00', '00:00:00', '00:00:00', '-09:20:00', '2019-12-30', NULL, '24:00:00', 5, 5, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5788, 145, 27, 2020, 2, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-06', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5789, 145, 27, 2020, 3, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-13', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5790, 145, 27, 2020, 4, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-20', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5791, 145, 27, 2020, 5, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-27', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5792, 145, 27, 2020, 6, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-03', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5793, 145, 27, 2020, 7, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-10', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5794, 145, 27, 2020, 8, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-17', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5795, 148, 27, 2020, 1, '33:20:00', '24:00:00', '00:00:00', '00:00:00', '00:00:00', '-09:20:00', '2019-12-30', NULL, '24:00:00', 5, 5, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5796, 148, 27, 2020, 2, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-06', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5797, 148, 27, 2020, 3, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-13', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5798, 148, 27, 2020, 4, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-20', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5799, 148, 27, 2020, 5, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-27', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5800, 148, 27, 2020, 6, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-03', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5801, 148, 27, 2020, 7, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-10', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5802, 148, 27, 2020, 8, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-17', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6281, 138, 29, 2020, 12, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-16', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6282, 138, 29, 2020, 13, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-23', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6283, 138, 29, 2020, 14, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-30', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6284, 138, 29, 2020, 15, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-04-06', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6285, 138, 29, 2020, 16, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-04-13', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5803, 130, 27, 2020, 1, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2019-12-30', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5804, 130, 27, 2020, 2, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-06', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5805, 130, 27, 2020, 3, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-13', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5806, 130, 27, 2020, 4, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-20', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5807, 130, 27, 2020, 5, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-27', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5808, 130, 27, 2020, 6, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-03', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5809, 130, 27, 2020, 7, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-10', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5810, 130, 27, 2020, 8, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-17', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5256, 129, 27, 2020, 1, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2019-12-30', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5257, 129, 27, 2020, 2, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-06', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5258, 129, 27, 2020, 3, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-13', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5259, 129, 27, 2020, 4, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-20', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5260, 129, 27, 2020, 5, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-27', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5261, 129, 27, 2020, 6, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-03', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5262, 129, 27, 2020, 7, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-10', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5263, 129, 27, 2020, 8, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-17', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5819, 143, 27, 2020, 1, '33:20:00', '24:00:00', '00:00:00', '00:00:00', '00:00:00', '-09:20:00', '2019-12-30', NULL, '24:00:00', 5, 5, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5820, 143, 27, 2020, 2, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-06', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5821, 143, 27, 2020, 3, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-13', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5822, 143, 27, 2020, 4, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-20', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5823, 143, 27, 2020, 5, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-27', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5824, 143, 27, 2020, 6, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-03', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5825, 143, 27, 2020, 7, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-10', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5826, 143, 27, 2020, 8, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-17', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6286, 105, 29, 2020, 9, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-24', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6287, 105, 29, 2020, 10, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-02', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6288, 105, 29, 2020, 11, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-09', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6289, 105, 29, 2020, 12, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-16', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6290, 105, 29, 2020, 13, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-23', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6291, 105, 29, 2020, 14, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-30', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6292, 105, 29, 2020, 15, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-04-06', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6293, 105, 29, 2020, 16, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-04-13', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6294, 134, 29, 2020, 9, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-24', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6295, 134, 29, 2020, 10, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-02', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6296, 134, 29, 2020, 11, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-09', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6297, 134, 29, 2020, 12, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-16', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6298, 134, 29, 2020, 13, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-23', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6299, 134, 29, 2020, 14, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-30', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6300, 134, 29, 2020, 15, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-04-06', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6301, 134, 29, 2020, 16, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-04-13', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6302, 144, 29, 2020, 9, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-24', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6303, 144, 29, 2020, 10, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-02', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6304, 144, 29, 2020, 11, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-09', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6305, 144, 29, 2020, 12, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-16', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6306, 144, 29, 2020, 13, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-23', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6307, 144, 29, 2020, 14, '13:20:00', '16:00:00', '00:00:00', '00:00:00', '00:00:00', '02:40:00', '2020-03-30', NULL, '16:00:00', 2, 2, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6308, 102, 29, 2020, 9, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-24', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6309, 102, 29, 2020, 10, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-02', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6310, 102, 29, 2020, 11, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-09', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6311, 102, 29, 2020, 12, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-16', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6312, 102, 29, 2020, 13, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-23', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6313, 102, 29, 2020, 14, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-30', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6314, 102, 29, 2020, 15, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-04-06', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6315, 102, 29, 2020, 16, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-04-13', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6316, 109, 29, 2020, 9, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-24', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6317, 109, 29, 2020, 10, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-02', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6318, 109, 29, 2020, 11, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-09', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6319, 109, 29, 2020, 12, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-16', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6320, 109, 29, 2020, 13, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-23', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6321, 109, 29, 2020, 14, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-30', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6322, 109, 29, 2020, 15, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-04-06', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6323, 109, 29, 2020, 16, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-04-13', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6324, 118, 29, 2020, 9, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-24', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6325, 118, 29, 2020, 10, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-02', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6326, 118, 29, 2020, 11, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-09', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6327, 118, 29, 2020, 12, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-16', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6328, 118, 29, 2020, 13, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-23', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6329, 118, 29, 2020, 14, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-30', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6330, 118, 29, 2020, 15, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-04-06', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6331, 118, 29, 2020, 16, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-04-13', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6332, 133, 29, 2020, 9, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-24', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6333, 133, 29, 2020, 10, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-02', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6334, 133, 29, 2020, 11, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-09', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6335, 133, 29, 2020, 12, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-16', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6336, 133, 29, 2020, 13, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-23', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6337, 133, 29, 2020, 14, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-30', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6338, 133, 29, 2020, 15, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-04-06', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6339, 133, 29, 2020, 16, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-04-13', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6340, 111, 29, 2020, 9, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-24', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6341, 111, 29, 2020, 10, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-02', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6342, 111, 29, 2020, 11, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-09', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6343, 111, 29, 2020, 12, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-16', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6344, 111, 29, 2020, 13, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-23', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6345, 111, 29, 2020, 14, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-30', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6346, 111, 29, 2020, 15, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-04-06', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6347, 111, 29, 2020, 16, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-04-13', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6348, 128, 29, 2020, 9, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-24', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6349, 128, 29, 2020, 10, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-02', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6350, 128, 29, 2020, 11, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-09', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6351, 128, 29, 2020, 12, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-16', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6352, 128, 29, 2020, 13, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-23', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6353, 128, 29, 2020, 14, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-30', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6354, 128, 29, 2020, 15, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-04-06', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6355, 128, 29, 2020, 16, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-04-13', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6356, 142, 29, 2020, 9, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-24', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6357, 142, 29, 2020, 10, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-02', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6358, 142, 29, 2020, 11, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-09', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6359, 142, 29, 2020, 12, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-16', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6360, 142, 29, 2020, 13, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-23', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6361, 142, 29, 2020, 14, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-30', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6362, 142, 29, 2020, 15, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-04-06', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6363, 142, 29, 2020, 16, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-04-13', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6364, 136, 29, 2020, 9, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-24', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6365, 136, 29, 2020, 10, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-02', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6366, 136, 29, 2020, 11, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-09', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6367, 136, 29, 2020, 12, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-16', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6368, 136, 29, 2020, 13, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-23', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6369, 136, 29, 2020, 14, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-30', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6370, 136, 29, 2020, 15, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-04-06', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6371, 136, 29, 2020, 16, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-04-13', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6372, 139, 29, 2020, 9, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-24', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6373, 139, 29, 2020, 10, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-02', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6374, 139, 29, 2020, 11, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-09', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6375, 139, 29, 2020, 12, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-16', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6376, 139, 29, 2020, 13, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-23', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6377, 139, 29, 2020, 14, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-30', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6378, 139, 29, 2020, 15, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-04-06', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6379, 139, 29, 2020, 16, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-04-13', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6380, 141, 29, 2020, 9, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-24', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6381, 141, 29, 2020, 10, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-02', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6382, 141, 29, 2020, 11, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-09', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6383, 141, 29, 2020, 12, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-16', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6384, 141, 29, 2020, 13, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-23', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6385, 141, 29, 2020, 14, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-30', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6386, 141, 29, 2020, 15, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-04-06', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6387, 141, 29, 2020, 16, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-04-13', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6388, 122, 29, 2020, 9, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-24', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6389, 122, 29, 2020, 10, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-02', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6390, 122, 29, 2020, 11, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-09', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6391, 122, 29, 2020, 12, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-16', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6392, 122, 29, 2020, 13, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-23', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6393, 122, 29, 2020, 14, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-30', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6394, 122, 29, 2020, 15, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-04-06', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6395, 122, 29, 2020, 16, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-04-13', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6396, 106, 29, 2020, 9, '12:30:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '27:30:00', '2020-02-24', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6397, 106, 29, 2020, 10, '12:30:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '27:30:00', '2020-03-02', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6398, 106, 29, 2020, 11, '12:30:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '27:30:00', '2020-03-09', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6399, 106, 29, 2020, 12, '12:30:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '27:30:00', '2020-03-16', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6400, 106, 29, 2020, 13, '12:30:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '27:30:00', '2020-03-23', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6401, 106, 29, 2020, 14, '12:30:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '27:30:00', '2020-03-30', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6402, 106, 29, 2020, 15, '12:30:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '27:30:00', '2020-04-06', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6403, 106, 29, 2020, 16, '12:30:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '27:30:00', '2020-04-13', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6404, 110, 29, 2020, 9, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-24', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6405, 110, 29, 2020, 10, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-02', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6406, 110, 29, 2020, 11, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-09', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6407, 110, 29, 2020, 12, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-16', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6408, 110, 29, 2020, 13, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-23', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6409, 110, 29, 2020, 14, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-30', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6410, 110, 29, 2020, 15, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-04-06', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6411, 110, 29, 2020, 16, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-04-13', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6412, 145, 29, 2020, 9, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-24', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6413, 145, 29, 2020, 10, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-02', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6414, 145, 29, 2020, 11, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-09', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6415, 145, 29, 2020, 12, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-16', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6416, 145, 29, 2020, 13, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-23', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6417, 145, 29, 2020, 14, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-30', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6418, 145, 29, 2020, 15, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-04-06', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6419, 145, 29, 2020, 16, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-04-13', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6420, 148, 29, 2020, 9, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-24', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6421, 148, 29, 2020, 10, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-02', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6422, 148, 29, 2020, 11, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-09', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6423, 148, 29, 2020, 12, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-16', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6424, 148, 29, 2020, 13, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-23', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6425, 148, 29, 2020, 14, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-30', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6426, 148, 29, 2020, 15, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-04-06', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6427, 148, 29, 2020, 16, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-04-13', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6428, 130, 29, 2020, 9, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-24', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6429, 130, 29, 2020, 10, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-02', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6430, 130, 29, 2020, 11, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-09', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6431, 130, 29, 2020, 12, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-16', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6432, 130, 29, 2020, 13, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-23', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6433, 130, 29, 2020, 14, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-30', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6434, 130, 29, 2020, 15, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-04-06', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6435, 130, 29, 2020, 16, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-04-13', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6436, 129, 29, 2020, 9, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-24', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6437, 129, 29, 2020, 10, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-02', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6438, 129, 29, 2020, 11, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-09', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6439, 129, 29, 2020, 12, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-16', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6440, 129, 29, 2020, 13, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-23', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6441, 129, 29, 2020, 14, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-30', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6442, 129, 29, 2020, 15, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-04-06', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6443, 129, 29, 2020, 16, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-04-13', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6444, 143, 29, 2020, 9, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-24', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6445, 143, 29, 2020, 10, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-02', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6446, 143, 29, 2020, 11, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-09', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6447, 143, 29, 2020, 12, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-16', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6448, 143, 29, 2020, 13, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-23', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6449, 143, 29, 2020, 14, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-30', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6450, 143, 29, 2020, 15, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-04-06', NULL, '40:00:00', 7, 6, NULL); -INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6451, 143, 29, 2020, 16, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-04-13', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (11297, 116, 27, 2020, 1, '26:40:00', '24:00:00', '00:00:00', '00:00:00', '00:00:00', '-02:40:00', '2019-12-30', NULL, '24:00:00', 4, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (11298, 116, 27, 2020, 2, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-06', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (11299, 116, 27, 2020, 3, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-13', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (11300, 116, 27, 2020, 4, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-20', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (11301, 116, 27, 2020, 5, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-27', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (11302, 116, 27, 2020, 6, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-03', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (11303, 116, 27, 2020, 7, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-10', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (11304, 116, 27, 2020, 8, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-17', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5670, 144, 27, 2020, 1, '26:40:00', '24:00:00', '00:00:00', '00:00:00', '00:00:00', '-02:40:00', '2019-12-30', NULL, '24:00:00', 4, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5691, 109, 27, 2020, 6, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-03', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5692, 109, 27, 2020, 7, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-10', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5693, 109, 27, 2020, 8, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-17', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6762, 146, 30, 2020, 17, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-04-20', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6763, 146, 30, 2020, 18, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-04-27', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6764, 146, 30, 2020, 19, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-05-04', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6765, 146, 30, 2020, 20, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-05-11', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6824, 103, 30, 2020, 17, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-04-20', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6825, 103, 30, 2020, 18, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-04-27', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6826, 103, 30, 2020, 19, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-05-04', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5671, 144, 27, 2020, 2, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-06', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5672, 144, 27, 2020, 3, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-13', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5673, 144, 27, 2020, 4, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-20', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5674, 144, 27, 2020, 5, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-27', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5675, 144, 27, 2020, 6, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-03', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5676, 144, 27, 2020, 7, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-10', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5677, 144, 27, 2020, 8, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-17', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5686, 109, 27, 2020, 1, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2019-12-30', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5687, 109, 27, 2020, 2, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-06', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5688, 109, 27, 2020, 3, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-13', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5689, 109, 27, 2020, 4, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-20', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5690, 109, 27, 2020, 5, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-27', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5694, 118, 27, 2020, 1, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2019-12-30', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5695, 118, 27, 2020, 2, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-06', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5696, 118, 27, 2020, 3, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-13', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5697, 118, 27, 2020, 4, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-20', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5698, 118, 27, 2020, 5, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-27', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5699, 118, 27, 2020, 6, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-03', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (11620, 116, 29, 2020, 9, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-24', NULL, '40:00:00', 5, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6352, 128, 29, 2020, 13, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-23', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6353, 128, 29, 2020, 14, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-30', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6354, 128, 29, 2020, 15, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-04-06', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6834, 121, 30, 2020, 19, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-05-04', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6835, 121, 30, 2020, 20, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-05-11', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6836, 121, 30, 2020, 21, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-05-18', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6837, 121, 30, 2020, 22, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-05-25', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6838, 121, 30, 2020, 23, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-06-01', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5710, 111, 27, 2020, 1, '26:40:00', '26:40:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2019-12-30', NULL, '26:40:00', 4, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5711, 111, 27, 2020, 2, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-06', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5712, 111, 27, 2020, 3, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-13', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5713, 111, 27, 2020, 4, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-20', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5714, 111, 27, 2020, 5, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-27', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5715, 111, 27, 2020, 6, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-03', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5716, 111, 27, 2020, 7, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-10', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5717, 111, 27, 2020, 8, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-17', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5718, 128, 27, 2020, 1, '26:40:00', '24:00:00', '00:00:00', '00:00:00', '00:00:00', '-02:40:00', '2019-12-30', NULL, '24:00:00', 4, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6324, 118, 29, 2020, 9, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-24', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6392, 122, 29, 2020, 13, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-23', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6393, 122, 29, 2020, 14, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-30', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6394, 122, 29, 2020, 15, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-04-06', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6871, 147, 30, 2020, 17, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-04-20', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6872, 147, 30, 2020, 18, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-04-27', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5512, 146, 27, 2020, 1, '26:40:00', '24:00:00', '00:00:00', '00:00:00', '00:00:00', '-02:40:00', '2019-12-30', NULL, '24:00:00', 4, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5513, 146, 27, 2020, 2, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-06', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5514, 146, 27, 2020, 3, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-13', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5515, 146, 27, 2020, 4, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-20', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5516, 146, 27, 2020, 5, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-27', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5517, 146, 27, 2020, 6, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-03', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5726, 142, 27, 2020, 1, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2019-12-30', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5727, 142, 27, 2020, 2, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-06', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5728, 142, 27, 2020, 3, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-13', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5729, 142, 27, 2020, 4, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-20', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5730, 142, 27, 2020, 5, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-27', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5731, 142, 27, 2020, 6, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-03', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6873, 147, 30, 2020, 19, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-05-04', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6874, 147, 30, 2020, 20, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-05-11', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6875, 147, 30, 2020, 21, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-05-18', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6876, 147, 30, 2020, 22, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-05-25', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5518, 146, 27, 2020, 7, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-10', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5519, 146, 27, 2020, 8, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-17', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5520, 132, 27, 2020, 1, '26:40:00', '24:00:00', '00:00:00', '00:00:00', '00:00:00', '-02:40:00', '2019-12-30', NULL, '24:00:00', 4, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5521, 132, 27, 2020, 2, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-06', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5522, 132, 27, 2020, 3, '40:00:00', '24:00:00', '00:00:00', '00:00:00', '00:00:00', '-16:00:00', '2020-01-13', NULL, '24:00:00', 3, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5732, 142, 27, 2020, 7, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-10', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5733, 142, 27, 2020, 8, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-17', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5734, 136, 27, 2020, 1, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2019-12-30', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5735, 136, 27, 2020, 2, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-06', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6325, 118, 29, 2020, 10, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-02', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6326, 118, 29, 2020, 11, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-09', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6327, 118, 29, 2020, 12, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-16', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6895, 151, 30, 2020, 17, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-04-20', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6896, 151, 30, 2020, 18, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-04-27', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5523, 115, 27, 2020, 1, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2019-12-30', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5524, 115, 27, 2020, 2, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-06', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5525, 115, 27, 2020, 3, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-13', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5526, 115, 27, 2020, 4, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-20', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5527, 115, 27, 2020, 5, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-27', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5528, 115, 27, 2020, 6, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-03', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5529, 115, 27, 2020, 7, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-10', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5530, 115, 27, 2020, 8, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-17', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5736, 136, 27, 2020, 3, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-13', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5737, 136, 27, 2020, 4, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-20', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5738, 136, 27, 2020, 5, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-27', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5739, 136, 27, 2020, 6, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-03', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5740, 136, 27, 2020, 7, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-10', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5741, 136, 27, 2020, 8, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-17', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5535, 114, 27, 2020, 5, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-27', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5751, 139, 27, 2020, 5, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-27', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5752, 139, 27, 2020, 6, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-03', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5753, 139, 27, 2020, 7, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-10', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5754, 139, 27, 2020, 8, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-17', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5755, 141, 27, 2020, 1, '26:40:00', '24:00:00', '00:00:00', '00:00:00', '00:00:00', '-02:40:00', '2019-12-30', NULL, '24:00:00', 4, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5756, 141, 27, 2020, 2, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-06', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6328, 118, 29, 2020, 13, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-23', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6329, 118, 29, 2020, 14, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-30', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6335, 133, 29, 2020, 12, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-16', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6428, 130, 29, 2020, 9, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-24', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6429, 130, 29, 2020, 10, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-02', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6434, 130, 29, 2020, 15, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-04-06', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6435, 130, 29, 2020, 16, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-04-13', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5531, 114, 27, 2020, 1, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2019-12-30', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5532, 114, 27, 2020, 2, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-06', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5533, 114, 27, 2020, 3, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-13', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5534, 114, 27, 2020, 4, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-20', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5536, 114, 27, 2020, 6, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-03', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5537, 114, 27, 2020, 7, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-10', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5538, 114, 27, 2020, 8, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-17', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5757, 141, 27, 2020, 3, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-13', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5758, 141, 27, 2020, 4, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-20', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5759, 141, 27, 2020, 5, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-27', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5760, 141, 27, 2020, 6, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-03', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5761, 141, 27, 2020, 7, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-10', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5762, 141, 27, 2020, 8, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-17', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6336, 133, 29, 2020, 13, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-23', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5771, 106, 27, 2020, 1, '12:30:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '27:30:00', '2019-12-30', NULL, '40:00:00', 4, 3, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5772, 106, 27, 2020, 2, '12:30:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '27:30:00', '2020-01-06', NULL, '40:00:00', 4, 3, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5773, 106, 27, 2020, 3, '12:30:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '27:30:00', '2020-01-13', NULL, '40:00:00', 4, 3, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5774, 106, 27, 2020, 4, '12:30:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '27:30:00', '2020-01-20', NULL, '40:00:00', 4, 3, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5775, 106, 27, 2020, 5, '12:30:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '27:30:00', '2020-01-27', NULL, '40:00:00', 4, 3, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5776, 106, 27, 2020, 6, '12:30:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '27:30:00', '2020-02-03', NULL, '40:00:00', 4, 3, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5777, 106, 27, 2020, 7, '12:30:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '27:30:00', '2020-02-10', NULL, '40:00:00', 4, 3, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5778, 106, 27, 2020, 8, '12:30:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '27:30:00', '2020-02-17', NULL, '40:00:00', 4, 3, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6442, 129, 29, 2020, 15, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-04-06', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6443, 129, 29, 2020, 16, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-04-13', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6897, 151, 30, 2020, 19, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-05-04', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6898, 151, 30, 2020, 20, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-05-11', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6899, 151, 30, 2020, 21, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-05-18', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6900, 151, 30, 2020, 22, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-05-25', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6901, 151, 30, 2020, 23, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-06-01', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6902, 151, 30, 2020, 24, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-06-08', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6915, 105, 30, 2020, 21, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-05-18', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5539, 112, 27, 2020, 1, '26:40:00', '24:00:00', '00:00:00', '00:00:00', '00:00:00', '-02:40:00', '2019-12-30', NULL, '24:00:00', 4, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5540, 112, 27, 2020, 2, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-06', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5541, 112, 27, 2020, 3, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-13', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5542, 112, 27, 2020, 4, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-20', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5543, 112, 27, 2020, 5, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-27', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5779, 110, 27, 2020, 1, '26:40:00', '24:00:00', '00:00:00', '00:00:00', '00:00:00', '-02:40:00', '2019-12-30', NULL, '24:00:00', 4, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5780, 110, 27, 2020, 2, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-06', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5781, 110, 27, 2020, 3, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-13', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5782, 110, 27, 2020, 4, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-20', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5783, 110, 27, 2020, 5, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-27', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5784, 110, 27, 2020, 6, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-03', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5785, 110, 27, 2020, 7, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-10', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6348, 128, 29, 2020, 9, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-24', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6921, 134, 30, 2020, 19, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-05-04', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6922, 134, 30, 2020, 20, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-05-11', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6923, 134, 30, 2020, 21, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-05-18', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6924, 134, 30, 2020, 22, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-05-25', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5544, 112, 27, 2020, 6, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-03', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5545, 112, 27, 2020, 7, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-10', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5786, 110, 27, 2020, 8, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-17', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5795, 148, 27, 2020, 1, '26:40:00', '24:00:00', '00:00:00', '00:00:00', '00:00:00', '-02:40:00', '2019-12-30', NULL, '24:00:00', 4, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5796, 148, 27, 2020, 2, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-06', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5797, 148, 27, 2020, 3, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-13', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5798, 148, 27, 2020, 4, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-20', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5799, 148, 27, 2020, 5, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-27', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5800, 148, 27, 2020, 6, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-03', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6349, 128, 29, 2020, 10, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-02', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6350, 128, 29, 2020, 11, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-09', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6351, 128, 29, 2020, 12, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-16', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5546, 112, 27, 2020, 8, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-17', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5548, 108, 27, 2020, 3, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-13', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5801, 148, 27, 2020, 7, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-10', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5802, 148, 27, 2020, 8, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-17', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5803, 130, 27, 2020, 1, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2019-12-30', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5804, 130, 27, 2020, 2, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-06', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5805, 130, 27, 2020, 3, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-13', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5260, 129, 27, 2020, 5, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-27', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6355, 128, 29, 2020, 16, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-04-13', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6766, 146, 30, 2020, 21, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-05-18', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6767, 146, 30, 2020, 22, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-05-25', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6768, 146, 30, 2020, 23, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-06-01', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6769, 146, 30, 2020, 24, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-06-08', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5547, 108, 27, 2020, 2, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-06', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5549, 108, 27, 2020, 4, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-20', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5550, 108, 27, 2020, 5, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-27', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5551, 108, 27, 2020, 6, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-03', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5552, 108, 27, 2020, 7, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-10', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5553, 108, 27, 2020, 8, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-17', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5261, 129, 27, 2020, 6, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-03', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5262, 129, 27, 2020, 7, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-10', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5263, 129, 27, 2020, 8, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-17', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6776, 115, 30, 2020, 23, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-06-01', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6786, 112, 30, 2020, 17, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-04-20', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6787, 112, 30, 2020, 18, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-04-27', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6937, 109, 30, 2020, 19, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-05-04', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6938, 109, 30, 2020, 20, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-05-11', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6939, 109, 30, 2020, 21, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-05-18', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6940, 109, 30, 2020, 22, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-05-25', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6943, 118, 30, 2020, 17, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-04-20', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5819, 143, 27, 2020, 1, '26:40:00', '24:00:00', '00:00:00', '00:00:00', '00:00:00', '-02:40:00', '2019-12-30', NULL, '24:00:00', 4, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5820, 143, 27, 2020, 2, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-06', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5821, 143, 27, 2020, 3, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-13', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5822, 143, 27, 2020, 4, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-20', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5823, 143, 27, 2020, 5, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-27', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5824, 143, 27, 2020, 6, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-03', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5825, 143, 27, 2020, 7, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-10', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5826, 143, 27, 2020, 8, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-17', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6150, 115, 29, 2020, 9, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-24', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6367, 136, 29, 2020, 12, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-16', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6368, 136, 29, 2020, 13, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-23', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6796, 108, 30, 2020, 21, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-05-18', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6944, 118, 30, 2020, 18, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-04-27', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6959, 111, 30, 2020, 17, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-04-20', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6960, 111, 30, 2020, 18, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-04-27', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5554, 135, 27, 2020, 1, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2019-12-30', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5555, 135, 27, 2020, 2, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-06', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6151, 115, 29, 2020, 10, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-02', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6152, 115, 29, 2020, 11, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-09', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6153, 115, 29, 2020, 12, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-16', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6154, 115, 29, 2020, 13, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-23', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6155, 115, 29, 2020, 14, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-30', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6156, 115, 29, 2020, 15, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-04-06', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6157, 115, 29, 2020, 16, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-04-13', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6369, 136, 29, 2020, 14, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-30', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6370, 136, 29, 2020, 15, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-04-06', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6371, 136, 29, 2020, 16, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-04-13', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6961, 111, 30, 2020, 19, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-05-04', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6962, 111, 30, 2020, 20, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-05-11', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6963, 111, 30, 2020, 21, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-05-18', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6964, 111, 30, 2020, 22, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-05-25', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6965, 111, 30, 2020, 23, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-06-01', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5556, 135, 27, 2020, 3, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-13', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5557, 135, 27, 2020, 4, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-20', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5558, 135, 27, 2020, 5, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-27', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5559, 135, 27, 2020, 6, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-03', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5560, 135, 27, 2020, 7, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-10', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5561, 135, 27, 2020, 8, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-17', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6158, 114, 29, 2020, 9, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-24', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6159, 114, 29, 2020, 10, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-02', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6160, 114, 29, 2020, 11, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-09', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6161, 114, 29, 2020, 12, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-16', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6162, 114, 29, 2020, 13, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-23', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6163, 114, 29, 2020, 14, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-30', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6164, 114, 29, 2020, 15, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-04-06', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6165, 114, 29, 2020, 16, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-04-13', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6174, 108, 29, 2020, 9, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-24', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6175, 108, 29, 2020, 10, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-02', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6176, 108, 29, 2020, 11, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-09', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6177, 108, 29, 2020, 12, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-16', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6178, 108, 29, 2020, 13, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-23', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6179, 108, 29, 2020, 14, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-30', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6180, 108, 29, 2020, 15, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-04-06', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6797, 108, 30, 2020, 22, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-05-25', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6808, 127, 30, 2020, 17, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-04-20', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6809, 127, 30, 2020, 18, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-04-27', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6978, 142, 30, 2020, 20, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-05-11', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6979, 142, 30, 2020, 21, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-05-18', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6980, 142, 30, 2020, 22, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-05-25', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6983, 136, 30, 2020, 17, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-04-20', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6984, 136, 30, 2020, 18, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-04-27', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6985, 136, 30, 2020, 19, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-05-04', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6986, 136, 30, 2020, 20, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-05-11', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6987, 136, 30, 2020, 21, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-05-18', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6181, 108, 29, 2020, 16, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-04-13', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6182, 135, 29, 2020, 9, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-24', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6183, 135, 29, 2020, 10, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-02', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6184, 135, 29, 2020, 11, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-09', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6185, 135, 29, 2020, 12, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-16', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6197, 127, 29, 2020, 16, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-04-13', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6372, 139, 29, 2020, 9, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-24', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6373, 139, 29, 2020, 10, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-02', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6374, 139, 29, 2020, 11, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-09', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6375, 139, 29, 2020, 12, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-16', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6376, 139, 29, 2020, 13, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-23', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6377, 139, 29, 2020, 14, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-30', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6378, 139, 29, 2020, 15, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-04-06', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6379, 139, 29, 2020, 16, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-04-13', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5562, 127, 27, 2020, 1, '26:40:00', '24:00:00', '00:00:00', '00:00:00', '00:00:00', '-02:40:00', '2019-12-30', NULL, '24:00:00', 4, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5563, 127, 27, 2020, 2, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-06', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6198, 149, 29, 2020, 9, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-24', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6199, 149, 29, 2020, 10, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-02', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6200, 149, 29, 2020, 11, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-09', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6201, 149, 29, 2020, 12, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-16', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6202, 149, 29, 2020, 13, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-23', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6203, 149, 29, 2020, 14, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-30', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6204, 149, 29, 2020, 15, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-04-06', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6205, 149, 29, 2020, 16, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-04-13', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6810, 127, 30, 2020, 19, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-05-04', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6988, 136, 30, 2020, 22, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-05-25', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6989, 136, 30, 2020, 23, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-06-01', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7001, 141, 30, 2020, 19, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-05-04', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7002, 141, 30, 2020, 20, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-05-11', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7012, 122, 30, 2020, 22, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-05-25', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5564, 127, 27, 2020, 3, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-13', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5565, 127, 27, 2020, 4, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-20', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5566, 127, 27, 2020, 5, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-27', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5567, 127, 27, 2020, 6, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-03', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5568, 127, 27, 2020, 7, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-10', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5569, 127, 27, 2020, 8, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-17', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6214, 121, 29, 2020, 9, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-24', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6215, 121, 29, 2020, 10, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-02', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6216, 121, 29, 2020, 11, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-09', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6217, 121, 29, 2020, 12, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-16', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6218, 121, 29, 2020, 13, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-23', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6219, 121, 29, 2020, 14, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-30', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6220, 121, 29, 2020, 15, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-04-06', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6221, 121, 29, 2020, 16, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-04-13', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6222, 125, 29, 2020, 9, '20:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '20:00:00', '2020-02-24', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6223, 125, 29, 2020, 10, '20:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '20:00:00', '2020-03-02', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6224, 125, 29, 2020, 11, '20:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '20:00:00', '2020-03-09', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6225, 125, 29, 2020, 12, '20:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '20:00:00', '2020-03-16', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6226, 125, 29, 2020, 13, '20:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '20:00:00', '2020-03-23', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6227, 125, 29, 2020, 14, '20:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '20:00:00', '2020-03-30', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6228, 125, 29, 2020, 15, '20:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '20:00:00', '2020-04-06', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6229, 125, 29, 2020, 16, '20:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '20:00:00', '2020-04-13', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6827, 103, 30, 2020, 20, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-05-11', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6828, 103, 30, 2020, 21, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-05-18', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7023, 110, 30, 2020, 17, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-04-20', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7024, 110, 30, 2020, 18, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-04-27', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7039, 148, 30, 2020, 17, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-04-20', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7040, 148, 30, 2020, 18, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-04-27', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6238, 113, 29, 2020, 9, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-24', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6239, 113, 29, 2020, 10, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-02', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6240, 113, 29, 2020, 11, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-09', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6241, 113, 29, 2020, 12, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-16', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6242, 113, 29, 2020, 13, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-23', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6243, 113, 29, 2020, 14, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-30', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6244, 113, 29, 2020, 15, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-04-06', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6245, 113, 29, 2020, 16, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-04-13', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6389, 122, 29, 2020, 10, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-02', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7041, 148, 30, 2020, 19, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-05-04', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7042, 148, 30, 2020, 20, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-05-11', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7043, 148, 30, 2020, 21, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-05-18', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7044, 148, 30, 2020, 22, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-05-25', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7045, 148, 30, 2020, 23, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-06-01', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7046, 148, 30, 2020, 24, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-06-08', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7050, 130, 30, 2020, 20, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-05-11', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7051, 130, 30, 2020, 21, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-05-18', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7065, 143, 30, 2020, 19, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-05-04', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7066, 143, 30, 2020, 20, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-05-11', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7071, 146, 31, 2020, 25, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-06-15', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7072, 146, 31, 2020, 26, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-06-22', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5570, 149, 27, 2020, 1, '26:40:00', '24:00:00', '00:00:00', '00:00:00', '00:00:00', '-02:40:00', '2019-12-30', NULL, '24:00:00', 4, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5571, 149, 27, 2020, 2, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-06', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6246, 147, 29, 2020, 9, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-24', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6247, 147, 29, 2020, 10, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-02', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6248, 147, 29, 2020, 11, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-09', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6249, 147, 29, 2020, 12, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-16', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6250, 147, 29, 2020, 13, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-23', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6390, 122, 29, 2020, 11, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-09', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7073, 146, 31, 2020, 27, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-06-29', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7074, 146, 31, 2020, 28, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-07-06', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7075, 146, 31, 2020, 29, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-07-13', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7076, 146, 31, 2020, 30, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-07-20', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7077, 146, 31, 2020, 31, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-07-27', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7090, 114, 31, 2020, 28, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-07-06', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7091, 114, 31, 2020, 29, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-07-13', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7094, 114, 31, 2020, 32, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-08-03', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7095, 108, 31, 2020, 25, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-06-15', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7096, 108, 31, 2020, 26, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-06-22', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7111, 127, 31, 2020, 25, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-06-15', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5572, 149, 27, 2020, 3, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-13', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5573, 149, 27, 2020, 4, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-20', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5574, 149, 27, 2020, 5, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-27', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5575, 149, 27, 2020, 6, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-03', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5576, 149, 27, 2020, 7, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-10', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5577, 149, 27, 2020, 8, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-17', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6262, 104, 29, 2020, 9, '30:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '10:00:00', '2020-02-24', NULL, '40:00:00', 5, 5, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6263, 104, 29, 2020, 10, '30:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '10:00:00', '2020-03-02', NULL, '40:00:00', 5, 5, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6264, 104, 29, 2020, 11, '30:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '10:00:00', '2020-03-09', NULL, '40:00:00', 5, 5, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6265, 104, 29, 2020, 12, '30:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '10:00:00', '2020-03-16', NULL, '40:00:00', 5, 5, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6266, 104, 29, 2020, 13, '30:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '10:00:00', '2020-03-23', NULL, '40:00:00', 5, 5, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6391, 122, 29, 2020, 12, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-16', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6267, 104, 29, 2020, 14, '30:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '10:00:00', '2020-03-30', NULL, '40:00:00', 5, 5, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6268, 104, 29, 2020, 15, '30:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '10:00:00', '2020-04-06', NULL, '40:00:00', 5, 5, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6269, 104, 29, 2020, 16, '30:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '10:00:00', '2020-04-13', NULL, '40:00:00', 5, 5, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6278, 138, 29, 2020, 9, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-24', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6279, 138, 29, 2020, 10, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-02', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6280, 138, 29, 2020, 11, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-09', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6281, 138, 29, 2020, 12, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-16', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6282, 138, 29, 2020, 13, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-23', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6283, 138, 29, 2020, 14, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-30', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6839, 121, 30, 2020, 24, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-06-08', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6853, 125, 30, 2020, 23, '20:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '20:00:00', '2020-06-01', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7112, 127, 31, 2020, 26, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-06-22', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7113, 127, 31, 2020, 27, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-06-29', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7114, 127, 31, 2020, 28, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-07-06', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7115, 127, 31, 2020, 29, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-07-13', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7116, 127, 31, 2020, 30, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-07-20', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7117, 127, 31, 2020, 31, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-07-27', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7118, 127, 31, 2020, 32, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-08-03', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5578, 103, 27, 2020, 1, '40:00:00', '36:00:00', '00:00:00', '04:00:00', '00:00:00', '00:00:00', '2019-12-30', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6284, 138, 29, 2020, 15, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-04-06', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6285, 138, 29, 2020, 16, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-04-13', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6286, 105, 29, 2020, 9, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-24', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6287, 105, 29, 2020, 10, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-02', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6288, 105, 29, 2020, 11, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-09', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6289, 105, 29, 2020, 12, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-16', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6290, 105, 29, 2020, 13, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-23', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6291, 105, 29, 2020, 14, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-30', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6292, 105, 29, 2020, 15, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-04-06', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6395, 122, 29, 2020, 16, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-04-13', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6854, 125, 30, 2020, 24, '20:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '20:00:00', '2020-06-08', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6859, 119, 30, 2020, 21, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-05-18', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7135, 121, 31, 2020, 25, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-06-15', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7136, 121, 31, 2020, 26, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-06-22', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7137, 121, 31, 2020, 27, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-06-29', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5579, 103, 27, 2020, 2, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-06', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5580, 103, 27, 2020, 3, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-13', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5581, 103, 27, 2020, 4, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-20', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5582, 103, 27, 2020, 5, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-27', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5583, 103, 27, 2020, 6, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-03', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5584, 103, 27, 2020, 7, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-10', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6293, 105, 29, 2020, 16, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-04-13', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6302, 144, 29, 2020, 9, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-24', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6303, 144, 29, 2020, 10, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-02', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6396, 106, 29, 2020, 9, '12:30:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '27:30:00', '2020-02-24', NULL, '40:00:00', 4, 3, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6397, 106, 29, 2020, 10, '12:30:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '27:30:00', '2020-03-02', NULL, '40:00:00', 4, 3, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6398, 106, 29, 2020, 11, '12:30:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '27:30:00', '2020-03-09', NULL, '40:00:00', 4, 3, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6399, 106, 29, 2020, 12, '12:30:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '27:30:00', '2020-03-16', NULL, '40:00:00', 4, 3, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6400, 106, 29, 2020, 13, '12:30:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '27:30:00', '2020-03-23', NULL, '40:00:00', 4, 3, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5585, 103, 27, 2020, 8, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-17', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6304, 144, 29, 2020, 11, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-09', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6305, 144, 29, 2020, 12, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-16', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6306, 144, 29, 2020, 13, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-23', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6307, 144, 29, 2020, 14, '40:00:00', '16:00:00', '00:00:00', '00:00:00', '00:00:00', '-24:00:00', '2020-03-30', NULL, '16:00:00', 2, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6308, 102, 29, 2020, 9, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-24', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6309, 102, 29, 2020, 10, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-02', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6310, 102, 29, 2020, 11, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-09', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6860, 119, 30, 2020, 22, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-05-25', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7138, 121, 31, 2020, 28, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-07-06', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7139, 121, 31, 2020, 29, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-07-13', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7140, 121, 31, 2020, 30, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-07-20', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7141, 121, 31, 2020, 31, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-07-27', NULL, '40:00:00', 5, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7153, 125, 31, 2020, 28, '20:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '20:00:00', '2020-07-06', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7154, 125, 31, 2020, 29, '20:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '20:00:00', '2020-07-13', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7155, 125, 31, 2020, 30, '20:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '20:00:00', '2020-07-20', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7156, 125, 31, 2020, 31, '20:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '20:00:00', '2020-07-27', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7157, 125, 31, 2020, 32, '20:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '20:00:00', '2020-08-03', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7174, 147, 31, 2020, 25, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-06-15', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7175, 147, 31, 2020, 26, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-06-22', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7176, 147, 31, 2020, 27, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-06-29', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7177, 147, 31, 2020, 28, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-07-06', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7178, 147, 31, 2020, 29, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-07-13', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5586, 121, 27, 2020, 1, '26:40:00', '24:00:00', '00:00:00', '00:00:00', '00:00:00', '-02:40:00', '2019-12-30', NULL, '24:00:00', 4, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5587, 121, 27, 2020, 2, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-06', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5588, 121, 27, 2020, 3, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-13', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5589, 121, 27, 2020, 4, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-20', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5590, 121, 27, 2020, 5, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-27', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5591, 121, 27, 2020, 6, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-03', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5592, 121, 27, 2020, 7, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-10', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5593, 121, 27, 2020, 8, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-17', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6311, 102, 29, 2020, 12, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-16', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6312, 102, 29, 2020, 13, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-23', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6313, 102, 29, 2020, 14, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-30', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6314, 102, 29, 2020, 15, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-04-06', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6315, 102, 29, 2020, 16, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-04-13', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6412, 145, 29, 2020, 9, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-24', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5594, 125, 27, 2020, 1, '20:00:00', '20:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2019-12-30', NULL, '20:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5595, 125, 27, 2020, 2, '20:00:00', '20:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-06', NULL, '20:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5596, 125, 27, 2020, 3, '20:00:00', '20:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-13', NULL, '20:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5597, 125, 27, 2020, 4, '20:00:00', '20:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-20', NULL, '20:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5598, 125, 27, 2020, 5, '20:00:00', '20:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-27', NULL, '20:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5599, 125, 27, 2020, 6, '20:00:00', '20:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-03', NULL, '20:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5600, 125, 27, 2020, 7, '20:00:00', '20:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-10', NULL, '20:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5601, 125, 27, 2020, 8, '20:00:00', '20:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-17', NULL, '20:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5602, 119, 27, 2020, 1, '26:40:00', '24:00:00', '00:00:00', '00:00:00', '00:00:00', '-02:40:00', '2019-12-30', NULL, '24:00:00', 4, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6413, 145, 29, 2020, 10, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-02', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6414, 145, 29, 2020, 11, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-09', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6415, 145, 29, 2020, 12, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-16', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6416, 145, 29, 2020, 13, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-23', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6417, 145, 29, 2020, 14, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-30', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5603, 119, 27, 2020, 2, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-06', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5604, 119, 27, 2020, 3, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-13', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5605, 119, 27, 2020, 4, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-20', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5606, 119, 27, 2020, 5, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-27', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5607, 119, 27, 2020, 6, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-03', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5608, 119, 27, 2020, 7, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-10', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5609, 119, 27, 2020, 8, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-17', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5610, 113, 27, 2020, 1, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2019-12-30', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5611, 113, 27, 2020, 2, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-06', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5612, 113, 27, 2020, 3, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-13', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5613, 113, 27, 2020, 4, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-20', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5614, 113, 27, 2020, 5, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-27', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6418, 145, 29, 2020, 15, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-04-06', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7190, 104, 31, 2020, 25, '30:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '10:00:00', '2020-06-15', NULL, '40:00:00', 5, 5, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7191, 104, 31, 2020, 26, '30:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '10:00:00', '2020-06-22', NULL, '40:00:00', 5, 5, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7192, 104, 31, 2020, 27, '30:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '10:00:00', '2020-06-29', NULL, '40:00:00', 5, 5, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7193, 104, 31, 2020, 28, '30:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '10:00:00', '2020-07-06', NULL, '40:00:00', 5, 5, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5615, 113, 27, 2020, 6, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-03', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5616, 113, 27, 2020, 7, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-10', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5617, 113, 27, 2020, 8, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-17', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5618, 147, 27, 2020, 1, '26:40:00', '24:00:00', '00:00:00', '00:00:00', '00:00:00', '-02:40:00', '2019-12-30', NULL, '24:00:00', 4, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5619, 147, 27, 2020, 2, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-06', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5620, 147, 27, 2020, 3, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-13', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5621, 147, 27, 2020, 4, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-20', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5622, 147, 27, 2020, 5, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-27', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5623, 147, 27, 2020, 6, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-03', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5624, 147, 27, 2020, 7, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-10', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5625, 147, 27, 2020, 8, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-17', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6330, 118, 29, 2020, 15, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-04-06', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6331, 118, 29, 2020, 16, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-04-13', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7194, 104, 31, 2020, 29, '30:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '10:00:00', '2020-07-13', NULL, '40:00:00', 5, 5, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5626, 131, 27, 2020, 1, '20:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '20:00:00', '2019-12-30', NULL, '40:00:00', 5, 5, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5627, 131, 27, 2020, 2, '20:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '20:00:00', '2020-01-06', NULL, '40:00:00', 5, 5, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5628, 131, 27, 2020, 3, '20:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '20:00:00', '2020-01-13', NULL, '40:00:00', 5, 5, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5629, 131, 27, 2020, 4, '20:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '20:00:00', '2020-01-20', NULL, '40:00:00', 5, 5, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5630, 131, 27, 2020, 5, '20:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '20:00:00', '2020-01-27', NULL, '40:00:00', 5, 5, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5631, 131, 27, 2020, 6, '20:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '20:00:00', '2020-02-03', NULL, '40:00:00', 5, 5, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5632, 131, 27, 2020, 7, '20:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '20:00:00', '2020-02-10', NULL, '40:00:00', 5, 5, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5633, 131, 27, 2020, 8, '20:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '20:00:00', '2020-02-17', NULL, '40:00:00', 5, 5, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5634, 104, 27, 2020, 1, '30:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '10:00:00', '2019-12-30', NULL, '40:00:00', 5, 5, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5635, 104, 27, 2020, 2, '30:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '10:00:00', '2020-01-06', NULL, '40:00:00', 5, 5, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6430, 130, 29, 2020, 11, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-09', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6431, 130, 29, 2020, 12, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-16', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6432, 130, 29, 2020, 13, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-23', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6433, 130, 29, 2020, 14, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-30', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7202, 151, 31, 2020, 29, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-07-13', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5636, 104, 27, 2020, 3, '30:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '10:00:00', '2020-01-13', NULL, '40:00:00', 5, 5, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5637, 104, 27, 2020, 4, '30:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '10:00:00', '2020-01-20', NULL, '40:00:00', 5, 5, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5638, 104, 27, 2020, 5, '30:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '10:00:00', '2020-01-27', NULL, '40:00:00', 5, 5, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5639, 104, 27, 2020, 6, '30:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '10:00:00', '2020-02-03', NULL, '40:00:00', 5, 5, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5640, 104, 27, 2020, 7, '30:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '10:00:00', '2020-02-10', NULL, '40:00:00', 5, 5, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5641, 104, 27, 2020, 8, '30:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '10:00:00', '2020-02-17', NULL, '40:00:00', 5, 5, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5642, 151, 27, 2020, 5, '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '-40:00:00', '2020-01-27', NULL, '00:00:00', 1, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5643, 151, 27, 2020, 6, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-03', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5644, 151, 27, 2020, 7, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-10', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5645, 151, 27, 2020, 8, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-17', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6332, 133, 29, 2020, 9, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-24', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6333, 133, 29, 2020, 10, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-02', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6334, 133, 29, 2020, 11, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-09', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5646, 138, 27, 2020, 1, '26:40:00', '24:00:00', '00:00:00', '00:00:00', '00:00:00', '-02:40:00', '2019-12-30', NULL, '24:00:00', 4, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5647, 138, 27, 2020, 2, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-06', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5648, 138, 27, 2020, 3, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-13', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5649, 138, 27, 2020, 4, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-20', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5650, 138, 27, 2020, 5, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-27', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5651, 138, 27, 2020, 6, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-03', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5652, 138, 27, 2020, 7, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-10', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5653, 138, 27, 2020, 8, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-17', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5654, 105, 27, 2020, 1, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2019-12-30', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5655, 105, 27, 2020, 2, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-06', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5656, 105, 27, 2020, 3, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-13', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5657, 105, 27, 2020, 4, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-20', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5658, 105, 27, 2020, 5, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-27', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6439, 129, 29, 2020, 12, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-16', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7203, 151, 31, 2020, 30, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-07-20', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5659, 105, 27, 2020, 6, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-03', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5660, 105, 27, 2020, 7, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-10', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5661, 105, 27, 2020, 8, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-17', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5662, 134, 27, 2020, 1, '26:40:00', '24:00:00', '00:00:00', '00:00:00', '00:00:00', '-02:40:00', '2019-12-30', NULL, '24:00:00', 4, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5663, 134, 27, 2020, 2, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-06', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5664, 134, 27, 2020, 3, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-13', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5665, 134, 27, 2020, 4, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-20', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5666, 134, 27, 2020, 5, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-27', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5667, 134, 27, 2020, 6, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-03', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5668, 134, 27, 2020, 7, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-10', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5669, 134, 27, 2020, 8, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-17', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6440, 129, 29, 2020, 13, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-23', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6441, 129, 29, 2020, 14, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-30', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5678, 102, 27, 2020, 1, '26:40:00', '24:00:00', '00:00:00', '00:00:00', '00:00:00', '-02:40:00', '2019-12-30', NULL, '24:00:00', 4, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5679, 102, 27, 2020, 2, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-06', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5680, 102, 27, 2020, 3, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-13', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5681, 102, 27, 2020, 4, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-20', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5682, 102, 27, 2020, 5, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-27', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5683, 102, 27, 2020, 6, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-03', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5684, 102, 27, 2020, 7, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-10', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5685, 102, 27, 2020, 8, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-17', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6364, 136, 29, 2020, 9, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-24', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6365, 136, 29, 2020, 10, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-02', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6366, 136, 29, 2020, 11, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-09', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6877, 147, 30, 2020, 23, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-06-01', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6878, 147, 30, 2020, 24, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-06-08', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7204, 151, 31, 2020, 31, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-07-27', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7205, 151, 31, 2020, 32, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-08-03', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5700, 118, 27, 2020, 7, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-10', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5701, 118, 27, 2020, 8, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-17', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5702, 133, 27, 2020, 1, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2019-12-30', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5703, 133, 27, 2020, 2, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-06', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5704, 133, 27, 2020, 3, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-13', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5705, 133, 27, 2020, 4, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-20', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5706, 133, 27, 2020, 5, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-27', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5707, 133, 27, 2020, 6, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-03', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5708, 133, 27, 2020, 7, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-10', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5709, 133, 27, 2020, 8, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-17', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6773, 115, 30, 2020, 20, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-05-11', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6774, 115, 30, 2020, 21, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-05-18', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6775, 115, 30, 2020, 22, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-05-25', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5719, 128, 27, 2020, 2, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-06', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5720, 128, 27, 2020, 3, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-13', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5721, 128, 27, 2020, 4, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-20', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5722, 128, 27, 2020, 5, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-27', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5723, 128, 27, 2020, 6, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-03', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5724, 128, 27, 2020, 7, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-10', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5725, 128, 27, 2020, 8, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-17', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6388, 122, 29, 2020, 9, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-24', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6792, 108, 30, 2020, 17, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-04-20', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6793, 108, 30, 2020, 18, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-04-27', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6794, 108, 30, 2020, 19, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-05-04', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6795, 108, 30, 2020, 20, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-05-11', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5742, 140, 27, 2020, 1, '26:40:00', '24:00:00', '00:00:00', '00:00:00', '00:00:00', '-02:40:00', '2019-12-30', NULL, '24:00:00', 4, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5743, 140, 27, 2020, 2, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-06', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5744, 140, 27, 2020, 3, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-13', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5745, 140, 27, 2020, 4, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-20', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5746, 140, 27, 2020, 5, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-27', NULL, '40:00:00', 5, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5747, 139, 27, 2020, 1, '26:40:00', '24:00:00', '00:00:00', '00:00:00', '00:00:00', '-02:40:00', '2019-12-30', NULL, '24:00:00', 4, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5748, 139, 27, 2020, 2, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-06', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5749, 139, 27, 2020, 3, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-13', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5750, 139, 27, 2020, 4, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-20', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6401, 106, 29, 2020, 14, '12:30:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '27:30:00', '2020-03-30', NULL, '40:00:00', 4, 3, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6811, 127, 30, 2020, 20, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-05-11', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6812, 127, 30, 2020, 21, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-05-18', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6916, 105, 30, 2020, 22, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-05-25', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6920, 134, 30, 2020, 18, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-04-27', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7223, 134, 31, 2020, 31, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-07-27', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5763, 122, 27, 2020, 1, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2019-12-30', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5764, 122, 27, 2020, 2, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-06', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5765, 122, 27, 2020, 3, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-13', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5766, 122, 27, 2020, 4, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-20', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5767, 122, 27, 2020, 5, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-27', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5768, 122, 27, 2020, 6, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-03', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5769, 122, 27, 2020, 7, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-10', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5770, 122, 27, 2020, 8, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-17', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6419, 145, 29, 2020, 16, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-04-13', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6420, 148, 29, 2020, 9, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-24', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6829, 103, 30, 2020, 22, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-05-25', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6832, 121, 30, 2020, 17, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-04-20', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6833, 121, 30, 2020, 18, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-04-27', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5787, 145, 27, 2020, 1, '26:40:00', '24:00:00', '00:00:00', '00:00:00', '00:00:00', '-02:40:00', '2019-12-30', NULL, '24:00:00', 4, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5788, 145, 27, 2020, 2, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-06', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5789, 145, 27, 2020, 3, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-13', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5790, 145, 27, 2020, 4, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-20', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5791, 145, 27, 2020, 5, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-27', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5792, 145, 27, 2020, 6, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-03', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5793, 145, 27, 2020, 7, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-10', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5794, 145, 27, 2020, 8, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-17', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6436, 129, 29, 2020, 9, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-24', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6437, 129, 29, 2020, 10, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-02', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6438, 129, 29, 2020, 11, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-09', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6935, 109, 30, 2020, 17, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-04-20', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6936, 109, 30, 2020, 18, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-04-27', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7224, 134, 31, 2020, 32, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-08-03', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7233, 109, 31, 2020, 25, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-06-15', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7234, 109, 31, 2020, 26, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-06-22', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7235, 109, 31, 2020, 27, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-06-29', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5806, 130, 27, 2020, 4, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-20', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5807, 130, 27, 2020, 5, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-27', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5808, 130, 27, 2020, 6, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-03', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5809, 130, 27, 2020, 7, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-10', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5810, 130, 27, 2020, 8, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-17', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5256, 129, 27, 2020, 1, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2019-12-30', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5257, 129, 27, 2020, 2, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-06', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5258, 129, 27, 2020, 3, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-13', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5259, 129, 27, 2020, 4, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-20', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6855, 119, 30, 2020, 17, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-04-20', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6856, 119, 30, 2020, 18, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-04-27', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6857, 119, 30, 2020, 19, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-05-04', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6858, 119, 30, 2020, 20, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-05-11', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6142, 146, 29, 2020, 9, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-24', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6143, 146, 29, 2020, 10, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-02', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6144, 146, 29, 2020, 11, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-09', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6145, 146, 29, 2020, 12, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-16', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6146, 146, 29, 2020, 13, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-23', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6147, 146, 29, 2020, 14, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-30', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6148, 146, 29, 2020, 15, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-04-06', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6149, 146, 29, 2020, 16, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-04-13', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6770, 115, 30, 2020, 17, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-04-20', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6771, 115, 30, 2020, 18, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-04-27', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6772, 115, 30, 2020, 19, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-05-04', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6941, 109, 30, 2020, 23, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-06-01', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6942, 109, 30, 2020, 24, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-06-08', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6166, 112, 29, 2020, 9, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-24', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6167, 112, 29, 2020, 10, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-02', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6168, 112, 29, 2020, 11, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-09', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6169, 112, 29, 2020, 12, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-16', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6170, 112, 29, 2020, 13, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-23', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6171, 112, 29, 2020, 14, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-30', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6172, 112, 29, 2020, 15, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-04-06', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6173, 112, 29, 2020, 16, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-04-13', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6788, 112, 30, 2020, 19, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-05-04', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6789, 112, 30, 2020, 20, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-05-11', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6790, 112, 30, 2020, 21, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-05-18', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6791, 112, 30, 2020, 22, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-05-25', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7236, 109, 31, 2020, 28, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-07-06', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7237, 109, 31, 2020, 29, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-07-13', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7241, 118, 31, 2020, 25, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-06-15', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7242, 118, 31, 2020, 26, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-06-22', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6186, 135, 29, 2020, 13, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-23', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6187, 135, 29, 2020, 14, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-30', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6188, 135, 29, 2020, 15, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-04-06', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6189, 135, 29, 2020, 16, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-04-13', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6190, 127, 29, 2020, 9, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-24', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6191, 127, 29, 2020, 10, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-02', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6192, 127, 29, 2020, 11, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-09', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6193, 127, 29, 2020, 12, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-16', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6194, 127, 29, 2020, 13, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-23', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6195, 127, 29, 2020, 14, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-30', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6196, 127, 29, 2020, 15, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-04-06', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6206, 103, 29, 2020, 9, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-24', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6207, 103, 29, 2020, 10, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-02', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6208, 103, 29, 2020, 11, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-09', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6209, 103, 29, 2020, 12, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-16', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6210, 103, 29, 2020, 13, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-23', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6211, 103, 29, 2020, 14, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-30', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6212, 103, 29, 2020, 15, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-04-06', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6213, 103, 29, 2020, 16, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-04-13', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6813, 127, 30, 2020, 22, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-05-25', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6814, 127, 30, 2020, 23, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-06-01', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6815, 127, 30, 2020, 24, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-06-08', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6816, 149, 30, 2020, 17, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-04-20', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6914, 105, 30, 2020, 20, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-05-11', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6230, 119, 29, 2020, 9, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-24', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6231, 119, 29, 2020, 10, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-02', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6232, 119, 29, 2020, 11, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-09', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6233, 119, 29, 2020, 12, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-16', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6234, 119, 29, 2020, 13, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-23', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6235, 119, 29, 2020, 14, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-30', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6236, 119, 29, 2020, 15, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-04-06', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6237, 119, 29, 2020, 16, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-04-13', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6830, 103, 30, 2020, 23, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-06-01', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6831, 103, 30, 2020, 24, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-06-08', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6917, 105, 30, 2020, 23, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-06-01', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6918, 105, 30, 2020, 24, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-06-08', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6981, 142, 30, 2020, 23, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-06-01', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7243, 118, 31, 2020, 27, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-06-29', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7244, 118, 31, 2020, 28, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-07-06', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7245, 118, 31, 2020, 29, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-07-13', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7246, 118, 31, 2020, 30, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-07-20', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6251, 147, 29, 2020, 14, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-30', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6252, 147, 29, 2020, 15, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-04-06', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6253, 147, 29, 2020, 16, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-04-13', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6254, 131, 29, 2020, 9, '20:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '20:00:00', '2020-02-24', NULL, '40:00:00', 5, 5, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6255, 131, 29, 2020, 10, '20:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '20:00:00', '2020-03-02', NULL, '40:00:00', 5, 5, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6256, 131, 29, 2020, 11, '20:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '20:00:00', '2020-03-09', NULL, '40:00:00', 5, 5, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6257, 131, 29, 2020, 12, '20:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '20:00:00', '2020-03-16', NULL, '40:00:00', 5, 5, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6258, 131, 29, 2020, 13, '20:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '20:00:00', '2020-03-23', NULL, '40:00:00', 5, 5, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6259, 131, 29, 2020, 14, '20:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '20:00:00', '2020-03-30', NULL, '40:00:00', 5, 5, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6260, 131, 29, 2020, 15, '20:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '20:00:00', '2020-04-06', NULL, '40:00:00', 5, 5, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6261, 131, 29, 2020, 16, '20:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '20:00:00', '2020-04-13', NULL, '40:00:00', 5, 5, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6847, 125, 30, 2020, 17, '20:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '20:00:00', '2020-04-20', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6848, 125, 30, 2020, 18, '20:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '20:00:00', '2020-04-27', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6849, 125, 30, 2020, 19, '20:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '20:00:00', '2020-05-04', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7247, 118, 31, 2020, 31, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-07-27', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6270, 151, 29, 2020, 9, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-24', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6271, 151, 29, 2020, 10, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-02', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6272, 151, 29, 2020, 11, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-09', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6273, 151, 29, 2020, 12, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-16', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6274, 151, 29, 2020, 13, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-23', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6275, 151, 29, 2020, 14, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-30', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6276, 151, 29, 2020, 15, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-04-06', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6277, 151, 29, 2020, 16, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-04-13', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6850, 125, 30, 2020, 20, '20:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '20:00:00', '2020-05-11', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6851, 125, 30, 2020, 21, '20:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '20:00:00', '2020-05-18', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6852, 125, 30, 2020, 22, '20:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '20:00:00', '2020-05-25', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6925, 134, 30, 2020, 23, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-06-01', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6926, 134, 30, 2020, 24, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-06-08', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7248, 118, 31, 2020, 32, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-08-03', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7260, 111, 31, 2020, 28, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-07-06', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7261, 111, 31, 2020, 29, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-07-13', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7262, 111, 31, 2020, 30, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-07-20', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6294, 134, 29, 2020, 9, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-24', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6295, 134, 29, 2020, 10, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-02', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6296, 134, 29, 2020, 11, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-09', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6297, 134, 29, 2020, 12, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-16', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6298, 134, 29, 2020, 13, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-23', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6299, 134, 29, 2020, 14, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-30', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6300, 134, 29, 2020, 15, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-04-06', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6301, 134, 29, 2020, 16, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-04-13', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6861, 119, 30, 2020, 23, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-06-01', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6862, 119, 30, 2020, 24, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-06-08', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6316, 109, 29, 2020, 9, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-24', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6317, 109, 29, 2020, 10, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-02', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6318, 109, 29, 2020, 11, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-09', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6319, 109, 29, 2020, 12, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-16', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6320, 109, 29, 2020, 13, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-23', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6321, 109, 29, 2020, 14, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-30', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6322, 109, 29, 2020, 15, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-04-06', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6323, 109, 29, 2020, 16, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-04-13', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6879, 131, 30, 2020, 17, '20:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '20:00:00', '2020-04-20', NULL, '40:00:00', 5, 5, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6880, 131, 30, 2020, 18, '20:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '20:00:00', '2020-04-27', NULL, '40:00:00', 5, 5, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6881, 131, 30, 2020, 19, '20:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '20:00:00', '2020-05-04', NULL, '40:00:00', 5, 5, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6882, 131, 30, 2020, 20, '20:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '20:00:00', '2020-05-11', NULL, '40:00:00', 5, 5, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6894, 104, 30, 2020, 24, '30:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '10:00:00', '2020-06-08', NULL, '40:00:00', 5, 5, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7263, 111, 31, 2020, 31, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-07-27', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7264, 111, 31, 2020, 32, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-08-03', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7267, 128, 31, 2020, 27, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-06-29', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7268, 128, 31, 2020, 28, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-07-06', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6337, 133, 29, 2020, 14, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-30', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6338, 133, 29, 2020, 15, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-04-06', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6339, 133, 29, 2020, 16, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-04-13', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6340, 111, 29, 2020, 9, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-24', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6341, 111, 29, 2020, 10, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-02', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6342, 111, 29, 2020, 11, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-09', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6343, 111, 29, 2020, 12, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-16', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6344, 111, 29, 2020, 13, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-23', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6345, 111, 29, 2020, 14, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-30', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6346, 111, 29, 2020, 15, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-04-06', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6347, 111, 29, 2020, 16, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-04-13', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7005, 141, 30, 2020, 23, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-06-01', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7006, 141, 30, 2020, 24, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-06-08', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6356, 142, 29, 2020, 9, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-24', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6357, 142, 29, 2020, 10, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-02', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6358, 142, 29, 2020, 11, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-09', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6359, 142, 29, 2020, 12, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-16', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6360, 142, 29, 2020, 13, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-23', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6361, 142, 29, 2020, 14, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-30', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6362, 142, 29, 2020, 15, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-04-06', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6363, 142, 29, 2020, 16, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-04-13', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6911, 105, 30, 2020, 17, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-04-20', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6912, 105, 30, 2020, 18, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-04-27', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6913, 105, 30, 2020, 19, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-05-04', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6966, 111, 30, 2020, 24, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-06-08', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7269, 128, 31, 2020, 29, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-07-13', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7270, 128, 31, 2020, 30, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-07-20', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7288, 136, 31, 2020, 32, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-08-03', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7289, 139, 31, 2020, 25, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-06-15', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6380, 141, 29, 2020, 9, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-24', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6381, 141, 29, 2020, 10, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-02', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6382, 141, 29, 2020, 11, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-09', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6383, 141, 29, 2020, 12, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-16', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6384, 141, 29, 2020, 13, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-23', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6385, 141, 29, 2020, 14, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-30', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6386, 141, 29, 2020, 15, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-04-06', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6387, 141, 29, 2020, 16, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-04-13', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6919, 134, 30, 2020, 17, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-04-20', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6982, 142, 30, 2020, 24, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-06-08', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6402, 106, 29, 2020, 15, '12:30:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '27:30:00', '2020-04-06', NULL, '40:00:00', 4, 3, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6403, 106, 29, 2020, 16, '12:30:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '27:30:00', '2020-04-13', NULL, '40:00:00', 4, 3, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6404, 110, 29, 2020, 9, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-24', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6405, 110, 29, 2020, 10, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-02', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6406, 110, 29, 2020, 11, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-09', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6407, 110, 29, 2020, 12, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-16', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6408, 110, 29, 2020, 13, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-23', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6409, 110, 29, 2020, 14, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-30', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6410, 110, 29, 2020, 15, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-04-06', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6411, 110, 29, 2020, 16, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-04-13', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6990, 136, 30, 2020, 24, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-06-08', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6999, 141, 30, 2020, 17, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-04-20', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7000, 141, 30, 2020, 18, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-04-27', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7063, 143, 30, 2020, 17, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-04-20', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7297, 141, 31, 2020, 25, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-06-15', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6421, 148, 29, 2020, 10, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-02', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6422, 148, 29, 2020, 11, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-09', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6423, 148, 29, 2020, 12, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-16', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6424, 148, 29, 2020, 13, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-23', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6425, 148, 29, 2020, 14, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-30', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6426, 148, 29, 2020, 15, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-04-06', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6427, 148, 29, 2020, 16, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-04-13', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6945, 118, 30, 2020, 19, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-05-04', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6946, 118, 30, 2020, 20, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-05-11', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6947, 118, 30, 2020, 21, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-05-18', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7003, 141, 30, 2020, 21, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-05-18', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7004, 141, 30, 2020, 22, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-05-25', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7064, 143, 30, 2020, 18, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-04-27', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6444, 143, 29, 2020, 9, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-24', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6445, 143, 29, 2020, 10, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-02', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6446, 143, 29, 2020, 11, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-09', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6447, 143, 29, 2020, 12, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-16', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6448, 143, 29, 2020, 13, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-23', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6449, 143, 29, 2020, 14, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-30', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6450, 143, 29, 2020, 15, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-04-06', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6451, 143, 29, 2020, 16, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-04-13', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6975, 142, 30, 2020, 17, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-04-20', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6976, 142, 30, 2020, 18, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-04-27', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6977, 142, 30, 2020, 19, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-05-04', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7025, 110, 30, 2020, 19, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-05-04', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7026, 110, 30, 2020, 20, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-05-11', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7027, 110, 30, 2020, 21, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-05-18', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7298, 141, 31, 2020, 26, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-06-22', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6777, 115, 30, 2020, 24, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-06-08', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6778, 114, 30, 2020, 17, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-04-20', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6779, 114, 30, 2020, 18, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-04-27', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6780, 114, 30, 2020, 19, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-05-04', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6781, 114, 30, 2020, 20, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-05-11', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6782, 114, 30, 2020, 21, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-05-18', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6783, 114, 30, 2020, 22, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-05-25', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6784, 114, 30, 2020, 23, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-06-01', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6785, 114, 30, 2020, 24, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-06-08', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6798, 108, 30, 2020, 23, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-06-01', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6799, 108, 30, 2020, 24, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-06-08', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6800, 135, 30, 2020, 17, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-04-20', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6801, 135, 30, 2020, 18, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-04-27', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6802, 135, 30, 2020, 19, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-05-04', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6803, 135, 30, 2020, 20, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-05-11', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6804, 135, 30, 2020, 21, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-05-18', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6805, 135, 30, 2020, 22, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-05-25', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6806, 135, 30, 2020, 23, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-06-01', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6807, 135, 30, 2020, 24, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-06-08', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7052, 130, 30, 2020, 22, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-05-25', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7053, 130, 30, 2020, 23, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-06-01', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7054, 130, 30, 2020, 24, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-06-08', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6817, 149, 30, 2020, 18, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-04-27', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6818, 149, 30, 2020, 19, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-05-04', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6819, 149, 30, 2020, 20, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-05-11', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6820, 149, 30, 2020, 21, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-05-18', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6821, 149, 30, 2020, 22, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-05-25', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6822, 149, 30, 2020, 23, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-06-01', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6823, 149, 30, 2020, 24, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-06-08', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7007, 122, 30, 2020, 17, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-04-20', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7008, 122, 30, 2020, 18, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-04-27', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7009, 122, 30, 2020, 19, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-05-04', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7010, 122, 30, 2020, 20, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-05-11', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7011, 122, 30, 2020, 21, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-05-18', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7067, 143, 30, 2020, 21, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-05-18', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7068, 143, 30, 2020, 22, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-05-25', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7299, 141, 31, 2020, 27, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-06-29', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6840, 117, 30, 2020, 18, '40:00:00', '08:00:00', '00:00:00', '00:00:00', '00:00:00', '-32:00:00', '2020-04-27', NULL, '08:00:00', 2, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6841, 117, 30, 2020, 19, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-05-04', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6842, 117, 30, 2020, 20, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-05-11', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6843, 117, 30, 2020, 21, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-05-18', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6844, 117, 30, 2020, 22, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-05-25', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6845, 117, 30, 2020, 23, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-06-01', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6846, 117, 30, 2020, 24, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-06-08', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7028, 110, 30, 2020, 22, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-05-25', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7029, 110, 30, 2020, 23, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-06-01', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7030, 110, 30, 2020, 24, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-06-08', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7031, 145, 30, 2020, 17, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-04-20', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7107, 135, 31, 2020, 29, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-07-13', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7108, 135, 31, 2020, 30, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-07-20', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7300, 141, 31, 2020, 28, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-07-06', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6863, 113, 30, 2020, 17, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-04-20', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6864, 113, 30, 2020, 18, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-04-27', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6865, 113, 30, 2020, 19, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-05-04', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6866, 113, 30, 2020, 20, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-05-11', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6867, 113, 30, 2020, 21, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-05-18', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6868, 113, 30, 2020, 22, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-05-25', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6869, 113, 30, 2020, 23, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-06-01', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6870, 113, 30, 2020, 24, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-06-08', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7047, 130, 30, 2020, 17, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-04-20', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7048, 130, 30, 2020, 18, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-04-27', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7049, 130, 30, 2020, 19, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-05-04', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7088, 114, 31, 2020, 26, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-06-22', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7089, 114, 31, 2020, 27, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-06-29', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6883, 131, 30, 2020, 21, '20:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '20:00:00', '2020-05-18', NULL, '40:00:00', 5, 5, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6884, 131, 30, 2020, 22, '20:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '20:00:00', '2020-05-25', NULL, '40:00:00', 5, 5, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6885, 131, 30, 2020, 23, '20:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '20:00:00', '2020-06-01', NULL, '40:00:00', 5, 5, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6886, 131, 30, 2020, 24, '20:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '20:00:00', '2020-06-08', NULL, '40:00:00', 5, 5, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6887, 104, 30, 2020, 17, '30:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '10:00:00', '2020-04-20', NULL, '40:00:00', 5, 5, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6888, 104, 30, 2020, 18, '30:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '10:00:00', '2020-04-27', NULL, '40:00:00', 5, 5, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6889, 104, 30, 2020, 19, '30:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '10:00:00', '2020-05-04', NULL, '40:00:00', 5, 5, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6890, 104, 30, 2020, 20, '30:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '10:00:00', '2020-05-11', NULL, '40:00:00', 5, 5, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6891, 104, 30, 2020, 21, '30:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '10:00:00', '2020-05-18', NULL, '40:00:00', 5, 5, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6892, 104, 30, 2020, 22, '30:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '10:00:00', '2020-05-25', NULL, '40:00:00', 5, 5, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6893, 104, 30, 2020, 23, '30:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '10:00:00', '2020-06-01', NULL, '40:00:00', 5, 5, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7092, 114, 31, 2020, 30, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-07-20', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7093, 114, 31, 2020, 31, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-07-27', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6903, 138, 30, 2020, 17, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-04-20', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6904, 138, 30, 2020, 18, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-04-27', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6905, 138, 30, 2020, 19, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-05-04', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6906, 138, 30, 2020, 20, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-05-11', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6907, 138, 30, 2020, 21, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-05-18', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6908, 138, 30, 2020, 22, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-05-25', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6909, 138, 30, 2020, 23, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-06-01', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6910, 138, 30, 2020, 24, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-06-08', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7069, 143, 30, 2020, 23, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-06-01', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7070, 143, 30, 2020, 24, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-06-08', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7104, 135, 31, 2020, 26, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-06-22', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7105, 135, 31, 2020, 27, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-06-29', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7106, 135, 31, 2020, 28, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-07-06', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6927, 102, 30, 2020, 17, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-04-20', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6928, 102, 30, 2020, 18, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-04-27', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6929, 102, 30, 2020, 19, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-05-04', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6930, 102, 30, 2020, 20, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-05-11', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6931, 102, 30, 2020, 21, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-05-18', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6932, 102, 30, 2020, 22, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-05-25', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6933, 102, 30, 2020, 23, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-06-01', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6934, 102, 30, 2020, 24, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-06-08', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7087, 114, 31, 2020, 25, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-06-15', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7130, 103, 31, 2020, 28, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-07-06', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7133, 103, 31, 2020, 31, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-07-27', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7134, 103, 31, 2020, 32, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-08-03', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6948, 118, 30, 2020, 22, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-05-25', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6949, 118, 30, 2020, 23, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-06-01', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6950, 118, 30, 2020, 24, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-06-08', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6951, 133, 30, 2020, 17, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-04-20', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6952, 133, 30, 2020, 18, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-04-27', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6953, 133, 30, 2020, 19, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-05-04', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6954, 133, 30, 2020, 20, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-05-11', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6955, 133, 30, 2020, 21, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-05-18', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6956, 133, 30, 2020, 22, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-05-25', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6957, 133, 30, 2020, 23, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-06-01', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6958, 133, 30, 2020, 24, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-06-08', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7131, 103, 31, 2020, 29, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-07-13', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7132, 103, 31, 2020, 30, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-07-20', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6967, 128, 30, 2020, 17, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-04-20', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6968, 128, 30, 2020, 18, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-04-27', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6969, 128, 30, 2020, 19, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-05-04', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6970, 128, 30, 2020, 20, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-05-11', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6971, 128, 30, 2020, 21, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-05-18', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6972, 128, 30, 2020, 22, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-05-25', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6973, 128, 30, 2020, 23, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-06-01', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6974, 128, 30, 2020, 24, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-06-08', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7109, 135, 31, 2020, 31, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-07-27', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7110, 135, 31, 2020, 32, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-08-03', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7152, 125, 31, 2020, 27, '20:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '20:00:00', '2020-06-29', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6991, 139, 30, 2020, 17, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-04-20', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6992, 139, 30, 2020, 18, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-04-27', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6993, 139, 30, 2020, 19, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-05-04', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6994, 139, 30, 2020, 20, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-05-11', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6995, 139, 30, 2020, 21, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-05-18', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6996, 139, 30, 2020, 22, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-05-25', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6997, 139, 30, 2020, 23, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-06-01', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6998, 139, 30, 2020, 24, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-06-08', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7127, 103, 31, 2020, 25, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-06-15', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7128, 103, 31, 2020, 26, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-06-22', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7129, 103, 31, 2020, 27, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-06-29', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7013, 122, 30, 2020, 23, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-06-01', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7014, 122, 30, 2020, 24, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-06-08', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7015, 106, 30, 2020, 17, '12:30:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '27:30:00', '2020-04-20', NULL, '40:00:00', 4, 3, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7016, 106, 30, 2020, 18, '12:30:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '27:30:00', '2020-04-27', NULL, '40:00:00', 4, 3, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7017, 106, 30, 2020, 19, '12:30:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '27:30:00', '2020-05-04', NULL, '40:00:00', 4, 3, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7018, 106, 30, 2020, 20, '12:30:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '27:30:00', '2020-05-11', NULL, '40:00:00', 4, 3, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7019, 106, 30, 2020, 21, '12:30:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '27:30:00', '2020-05-18', NULL, '40:00:00', 4, 3, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7020, 106, 30, 2020, 22, '12:30:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '27:30:00', '2020-05-25', NULL, '40:00:00', 4, 3, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7021, 106, 30, 2020, 23, '12:30:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '27:30:00', '2020-06-01', NULL, '40:00:00', 4, 3, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7022, 106, 30, 2020, 24, '12:30:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '27:30:00', '2020-06-08', NULL, '40:00:00', 4, 3, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7158, 119, 31, 2020, 25, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-06-15', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7159, 119, 31, 2020, 26, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-06-22', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7160, 119, 31, 2020, 27, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-06-29', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7161, 119, 31, 2020, 28, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-07-06', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7305, 122, 31, 2020, 25, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-06-15', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7032, 145, 30, 2020, 18, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-04-27', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7033, 145, 30, 2020, 19, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-05-04', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7034, 145, 30, 2020, 20, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-05-11', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7035, 145, 30, 2020, 21, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-05-18', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7036, 145, 30, 2020, 22, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-05-25', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7037, 145, 30, 2020, 23, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-06-01', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7038, 145, 30, 2020, 24, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-06-08', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7150, 125, 31, 2020, 25, '20:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '20:00:00', '2020-06-15', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7151, 125, 31, 2020, 26, '20:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '20:00:00', '2020-06-22', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7179, 147, 31, 2020, 30, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-07-20', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7180, 147, 31, 2020, 31, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-07-27', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7181, 147, 31, 2020, 32, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-08-03', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7055, 129, 30, 2020, 17, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-04-20', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7056, 129, 30, 2020, 18, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-04-27', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7057, 129, 30, 2020, 19, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-05-04', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7058, 129, 30, 2020, 20, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-05-11', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7059, 129, 30, 2020, 21, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-05-18', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7060, 129, 30, 2020, 22, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-05-25', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7061, 129, 30, 2020, 23, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-06-01', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7062, 129, 30, 2020, 24, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-06-08', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7162, 119, 31, 2020, 29, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-07-13', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7195, 104, 31, 2020, 30, '30:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '10:00:00', '2020-07-20', NULL, '40:00:00', 5, 5, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7196, 104, 31, 2020, 31, '30:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '10:00:00', '2020-07-27', NULL, '40:00:00', 5, 5, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7197, 104, 31, 2020, 32, '30:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '10:00:00', '2020-08-03', NULL, '40:00:00', 5, 5, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7078, 146, 31, 2020, 32, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-08-03', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7079, 115, 31, 2020, 25, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-06-15', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7080, 115, 31, 2020, 26, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-06-22', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7081, 115, 31, 2020, 27, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-06-29', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7082, 115, 31, 2020, 28, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-07-06', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7083, 115, 31, 2020, 29, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-07-13', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7084, 115, 31, 2020, 30, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-07-20', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7085, 115, 31, 2020, 31, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-07-27', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7086, 115, 31, 2020, 32, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-08-03', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7217, 134, 31, 2020, 25, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-06-15', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7218, 134, 31, 2020, 26, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-06-22', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7221, 134, 31, 2020, 29, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-07-13', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7222, 134, 31, 2020, 30, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-07-20', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7306, 122, 31, 2020, 26, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-06-22', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7307, 122, 31, 2020, 27, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-06-29', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7308, 122, 31, 2020, 28, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-07-06', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7309, 122, 31, 2020, 29, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-07-13', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7097, 108, 31, 2020, 27, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-06-29', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7098, 108, 31, 2020, 28, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-07-06', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7099, 108, 31, 2020, 29, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-07-13', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7100, 108, 31, 2020, 30, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-07-20', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7101, 108, 31, 2020, 31, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-07-27', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7102, 108, 31, 2020, 32, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-08-03', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7103, 135, 31, 2020, 25, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-06-15', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7198, 151, 31, 2020, 25, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-06-15', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7199, 151, 31, 2020, 26, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-06-22', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7200, 151, 31, 2020, 27, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-06-29', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7201, 151, 31, 2020, 28, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-07-06', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7119, 149, 31, 2020, 25, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-06-15', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7120, 149, 31, 2020, 26, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-06-22', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7121, 149, 31, 2020, 27, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-06-29', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7122, 149, 31, 2020, 28, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-07-06', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7123, 149, 31, 2020, 29, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-07-13', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7124, 149, 31, 2020, 30, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-07-20', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7125, 149, 31, 2020, 31, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-07-27', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7126, 149, 31, 2020, 32, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-08-03', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7219, 134, 31, 2020, 27, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-06-29', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7220, 134, 31, 2020, 28, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-07-06', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7142, 117, 31, 2020, 25, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-06-15', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7143, 117, 31, 2020, 26, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-06-22', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7144, 117, 31, 2020, 27, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-06-29', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7145, 117, 31, 2020, 28, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-07-06', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7146, 117, 31, 2020, 29, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-07-13', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7147, 117, 31, 2020, 30, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-07-20', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7148, 117, 31, 2020, 31, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-07-27', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7149, 117, 31, 2020, 32, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-08-03', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7238, 109, 31, 2020, 30, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-07-20', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7239, 109, 31, 2020, 31, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-07-27', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7240, 109, 31, 2020, 32, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-08-03', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7163, 119, 31, 2020, 30, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-07-20', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7164, 119, 31, 2020, 31, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-07-27', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7165, 119, 31, 2020, 32, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-08-03', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7166, 113, 31, 2020, 25, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-06-15', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7167, 113, 31, 2020, 26, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-06-22', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7168, 113, 31, 2020, 27, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-06-29', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7169, 113, 31, 2020, 28, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-07-06', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7170, 113, 31, 2020, 29, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-07-13', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7171, 113, 31, 2020, 30, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-07-20', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7172, 113, 31, 2020, 31, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-07-27', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7173, 113, 31, 2020, 32, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-08-03', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7257, 111, 31, 2020, 25, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-06-15', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7258, 111, 31, 2020, 26, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-06-22', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7310, 122, 31, 2020, 30, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-07-20', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7311, 122, 31, 2020, 31, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-07-27', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7312, 122, 31, 2020, 32, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-08-03', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7325, 110, 31, 2020, 29, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-07-13', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7182, 131, 31, 2020, 25, '20:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '20:00:00', '2020-06-15', NULL, '40:00:00', 5, 5, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7183, 131, 31, 2020, 26, '20:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '20:00:00', '2020-06-22', NULL, '40:00:00', 5, 5, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7184, 131, 31, 2020, 27, '20:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '20:00:00', '2020-06-29', NULL, '40:00:00', 5, 5, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7185, 131, 31, 2020, 28, '20:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '20:00:00', '2020-07-06', NULL, '40:00:00', 5, 5, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7186, 131, 31, 2020, 29, '20:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '20:00:00', '2020-07-13', NULL, '40:00:00', 5, 5, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7187, 131, 31, 2020, 30, '20:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '20:00:00', '2020-07-20', NULL, '40:00:00', 5, 5, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7188, 131, 31, 2020, 31, '20:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '20:00:00', '2020-07-27', NULL, '40:00:00', 5, 5, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7189, 131, 31, 2020, 32, '20:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '20:00:00', '2020-08-03', NULL, '40:00:00', 5, 5, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7259, 111, 31, 2020, 27, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-06-29', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7265, 128, 31, 2020, 25, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-06-15', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7266, 128, 31, 2020, 26, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-06-22', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7206, 138, 31, 2020, 25, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-06-15', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7207, 138, 31, 2020, 26, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-06-22', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7208, 138, 31, 2020, 27, '40:00:00', '16:00:00', '00:00:00', '00:00:00', '00:00:00', '-24:00:00', '2020-06-29', NULL, '16:00:00', 2, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7209, 105, 31, 2020, 25, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-06-15', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7210, 105, 31, 2020, 26, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-06-22', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7211, 105, 31, 2020, 27, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-06-29', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7212, 105, 31, 2020, 28, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-07-06', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7213, 105, 31, 2020, 29, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-07-13', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7214, 105, 31, 2020, 30, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-07-20', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7215, 105, 31, 2020, 31, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-07-27', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7216, 105, 31, 2020, 32, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-08-03', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7281, 136, 31, 2020, 25, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-06-15', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7282, 136, 31, 2020, 26, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-06-22', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7283, 136, 31, 2020, 27, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-06-29', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7326, 110, 31, 2020, 30, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-07-20', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7225, 102, 31, 2020, 25, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-06-15', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7226, 102, 31, 2020, 26, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-06-22', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7227, 102, 31, 2020, 27, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-06-29', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7228, 102, 31, 2020, 28, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-07-06', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7229, 102, 31, 2020, 29, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-07-13', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7230, 102, 31, 2020, 30, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-07-20', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7231, 102, 31, 2020, 31, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-07-27', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7232, 102, 31, 2020, 32, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-08-03', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7284, 136, 31, 2020, 28, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-07-06', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7285, 136, 31, 2020, 29, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-07-13', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7286, 136, 31, 2020, 30, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-07-20', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7287, 136, 31, 2020, 31, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-07-27', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7249, 133, 31, 2020, 25, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-06-15', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7250, 133, 31, 2020, 26, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-06-22', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7251, 133, 31, 2020, 27, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-06-29', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7252, 133, 31, 2020, 28, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-07-06', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7253, 133, 31, 2020, 29, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-07-13', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7254, 133, 31, 2020, 30, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-07-20', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7255, 133, 31, 2020, 31, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-07-27', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7256, 133, 31, 2020, 32, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-08-03', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7301, 141, 31, 2020, 29, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-07-13', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7302, 141, 31, 2020, 30, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-07-20', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7303, 141, 31, 2020, 31, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-07-27', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7304, 141, 31, 2020, 32, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-08-03', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7327, 110, 31, 2020, 31, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-07-27', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7328, 110, 31, 2020, 32, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-08-03', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7329, 145, 31, 2020, 25, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-06-15', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7330, 145, 31, 2020, 26, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-06-22', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7271, 128, 31, 2020, 31, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-07-27', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7272, 128, 31, 2020, 32, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-08-03', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7273, 142, 31, 2020, 25, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-06-15', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7274, 142, 31, 2020, 26, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-06-22', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7275, 142, 31, 2020, 27, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-06-29', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7276, 142, 31, 2020, 28, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-07-06', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7277, 142, 31, 2020, 29, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-07-13', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7278, 142, 31, 2020, 30, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-07-20', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7279, 142, 31, 2020, 31, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-07-27', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7280, 142, 31, 2020, 32, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-08-03', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7290, 139, 31, 2020, 26, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-06-22', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7291, 139, 31, 2020, 27, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-06-29', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7292, 139, 31, 2020, 28, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-07-06', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7293, 139, 31, 2020, 29, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-07-13', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7294, 139, 31, 2020, 30, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-07-20', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7295, 139, 31, 2020, 31, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-07-27', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7296, 139, 31, 2020, 32, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-08-03', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7321, 110, 31, 2020, 25, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-06-15', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7322, 110, 31, 2020, 26, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-06-22', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7323, 110, 31, 2020, 27, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-06-29', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7324, 110, 31, 2020, 28, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-07-06', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7313, 106, 31, 2020, 25, '12:30:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '27:30:00', '2020-06-15', NULL, '40:00:00', 4, 3, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7314, 106, 31, 2020, 26, '12:30:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '27:30:00', '2020-06-22', NULL, '40:00:00', 4, 3, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7315, 106, 31, 2020, 27, '12:30:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '27:30:00', '2020-06-29', NULL, '40:00:00', 4, 3, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7316, 106, 31, 2020, 28, '12:30:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '27:30:00', '2020-07-06', NULL, '40:00:00', 4, 3, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7317, 106, 31, 2020, 29, '12:30:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '27:30:00', '2020-07-13', NULL, '40:00:00', 4, 3, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7318, 106, 31, 2020, 30, '12:30:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '27:30:00', '2020-07-20', NULL, '40:00:00', 4, 3, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7319, 106, 31, 2020, 31, '12:30:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '27:30:00', '2020-07-27', NULL, '40:00:00', 4, 3, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7320, 106, 31, 2020, 32, '12:30:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '27:30:00', '2020-08-03', NULL, '40:00:00', 4, 3, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7331, 145, 31, 2020, 27, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-06-29', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7332, 145, 31, 2020, 28, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-07-06', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7333, 145, 31, 2020, 29, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-07-13', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7334, 145, 31, 2020, 30, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-07-20', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7335, 145, 31, 2020, 31, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-07-27', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7336, 145, 31, 2020, 32, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-08-03', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7337, 148, 31, 2020, 25, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-06-15', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7338, 148, 31, 2020, 26, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-06-22', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7339, 148, 31, 2020, 27, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-06-29', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7340, 148, 31, 2020, 28, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-07-06', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7341, 148, 31, 2020, 29, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-07-13', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7342, 148, 31, 2020, 30, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-07-20', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7343, 148, 31, 2020, 31, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-07-27', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7344, 148, 31, 2020, 32, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-08-03', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7345, 130, 31, 2020, 25, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-06-15', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7346, 130, 31, 2020, 26, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-06-22', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7347, 130, 31, 2020, 27, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-06-29', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7348, 130, 31, 2020, 28, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-07-06', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7349, 130, 31, 2020, 29, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-07-13', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7350, 130, 31, 2020, 30, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-07-20', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7351, 130, 31, 2020, 31, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-07-27', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7352, 130, 31, 2020, 32, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-08-03', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7353, 129, 31, 2020, 25, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-06-15', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7354, 129, 31, 2020, 26, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-06-22', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7355, 129, 31, 2020, 27, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-06-29', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7356, 129, 31, 2020, 28, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-07-06', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7357, 129, 31, 2020, 29, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-07-13', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7358, 129, 31, 2020, 30, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-07-20', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7359, 129, 31, 2020, 31, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-07-27', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7360, 129, 31, 2020, 32, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-08-03', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7361, 143, 31, 2020, 25, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-06-15', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7362, 143, 31, 2020, 26, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-06-22', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7363, 143, 31, 2020, 27, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-06-29', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7364, 143, 31, 2020, 28, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-07-06', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7365, 143, 31, 2020, 29, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-07-13', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7366, 143, 31, 2020, 30, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-07-20', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7367, 143, 31, 2020, 31, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-07-27', NULL, '40:00:00', 6, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (7368, 143, 31, 2020, 32, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-08-03', NULL, '40:00:00', 6, 6, NULL); -- @@ -5202,6 +10192,39 @@ INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, cal -- Data for Name: vacancydays; Type: TABLE DATA; Schema: portanova; Owner: - -- +INSERT INTO portanova.vacancydays (id, daydate, vacancyname) VALUES (1, '2020-01-01', 'Nouvel An'); +INSERT INTO portanova.vacancydays (id, daydate, vacancyname) VALUES (2, '2020-04-13', 'Lundi de Pâques'); +INSERT INTO portanova.vacancydays (id, daydate, vacancyname) VALUES (3, '2020-05-01', 'Premier.05'); +INSERT INTO portanova.vacancydays (id, daydate, vacancyname) VALUES (4, '2020-05-09', 'Journée de l''Europe'); +INSERT INTO portanova.vacancydays (id, daydate, vacancyname) VALUES (5, '2020-05-21', 'Ascension'); +INSERT INTO portanova.vacancydays (id, daydate, vacancyname) VALUES (6, '2020-06-01', 'Lundi de Pentecôte'); +INSERT INTO portanova.vacancydays (id, daydate, vacancyname) VALUES (7, '2020-06-23', 'Célébration de l''anniversaire du Grand-Duc'); +INSERT INTO portanova.vacancydays (id, daydate, vacancyname) VALUES (8, '2020-08-15', 'Assomption'); +INSERT INTO portanova.vacancydays (id, daydate, vacancyname) VALUES (9, '2020-11-01', 'Toussaint'); +INSERT INTO portanova.vacancydays (id, daydate, vacancyname) VALUES (10, '2020-12-25', 'Noël'); +INSERT INTO portanova.vacancydays (id, daydate, vacancyname) VALUES (11, '2020-12-26', 'Deuxième jour de Noël'); +INSERT INTO portanova.vacancydays (id, daydate, vacancyname) VALUES (12, '2021-01-01', 'Nouvel An'); +INSERT INTO portanova.vacancydays (id, daydate, vacancyname) VALUES (13, '2021-04-05', 'Lundi de Pâques'); +INSERT INTO portanova.vacancydays (id, daydate, vacancyname) VALUES (14, '2021-05-01', 'Premier.05'); +INSERT INTO portanova.vacancydays (id, daydate, vacancyname) VALUES (15, '2021-05-09', 'Journée de l''Europe'); +INSERT INTO portanova.vacancydays (id, daydate, vacancyname) VALUES (16, '2021-05-13', 'Ascension'); +INSERT INTO portanova.vacancydays (id, daydate, vacancyname) VALUES (17, '2021-05-24', 'Lundi de Pentecôte'); +INSERT INTO portanova.vacancydays (id, daydate, vacancyname) VALUES (18, '2021-06-23', 'Célébration de l''anniversaire du Grand-Duc'); +INSERT INTO portanova.vacancydays (id, daydate, vacancyname) VALUES (19, '2021-08-15', 'Assomption'); +INSERT INTO portanova.vacancydays (id, daydate, vacancyname) VALUES (20, '2021-11-01', 'Toussaint'); +INSERT INTO portanova.vacancydays (id, daydate, vacancyname) VALUES (21, '2021-12-25', 'Noël'); +INSERT INTO portanova.vacancydays (id, daydate, vacancyname) VALUES (22, '2021-12-26', 'Deuxième jour de Noël'); +INSERT INTO portanova.vacancydays (id, daydate, vacancyname) VALUES (23, '2022-01-01', 'Nouvel An'); +INSERT INTO portanova.vacancydays (id, daydate, vacancyname) VALUES (24, '2022-04-18', 'Lundi de Pâques'); +INSERT INTO portanova.vacancydays (id, daydate, vacancyname) VALUES (25, '2022-05-01', 'Premier.05'); +INSERT INTO portanova.vacancydays (id, daydate, vacancyname) VALUES (26, '2022-05-09', 'Journée de l''Europe'); +INSERT INTO portanova.vacancydays (id, daydate, vacancyname) VALUES (27, '2022-05-26', 'Ascension'); +INSERT INTO portanova.vacancydays (id, daydate, vacancyname) VALUES (28, '2022-06-06', 'Lundi de Pentecôte'); +INSERT INTO portanova.vacancydays (id, daydate, vacancyname) VALUES (29, '2022-06-23', 'Célébration de l''anniversaire du Grand-Duc'); +INSERT INTO portanova.vacancydays (id, daydate, vacancyname) VALUES (30, '2022-08-15', 'Assomption'); +INSERT INTO portanova.vacancydays (id, daydate, vacancyname) VALUES (31, '2022-11-01', 'Toussaint'); +INSERT INTO portanova.vacancydays (id, daydate, vacancyname) VALUES (32, '2022-12-25', 'Noël'); +INSERT INTO portanova.vacancydays (id, daydate, vacancyname) VALUES (33, '2022-12-26', 'Deuxième jour de Noël'); -- @@ -5221,99 +10244,45 @@ INSERT INTO portanova.vacancytypes (id, vacancyname, isworktime, isfreetime, col -- Data for Name: workplans; Type: TABLE DATA; Schema: portanova; Owner: - -- -INSERT INTO portanova.workplans (id, workplan, mon_timestart1, mon_timeend1, mon_timestart2, mon_timeend2, mon_timepause, tue_timestart1, tue_timeend1, tue_timestart2, tue_timeend2, tue_timepause, wed_timestart1, wed_timeend1, wed_timestart2, wed_timeend2, wed_timepause, thu_timestart1, thu_timeend1, thu_timestart2, thu_timeend2, thu_timepause, fri_timestart1, fri_timeend1, fri_timestart2, fri_timeend2, fri_timepause, sat_timestart1, sat_timeend1, sat_timestart2, sat_timeend2, sat_timepause, sun_timestart1, sun_timeend1, sun_timestart2, sun_timeend2, sun_timepause) VALUES (6, 'Cuisine 1 (40h) ', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); -INSERT INTO portanova.workplans (id, workplan, mon_timestart1, mon_timeend1, mon_timestart2, mon_timeend2, mon_timepause, tue_timestart1, tue_timeend1, tue_timestart2, tue_timeend2, tue_timepause, wed_timestart1, wed_timeend1, wed_timestart2, wed_timeend2, wed_timepause, thu_timestart1, thu_timeend1, thu_timestart2, thu_timeend2, thu_timepause, fri_timestart1, fri_timeend1, fri_timestart2, fri_timeend2, fri_timepause, sat_timestart1, sat_timeend1, sat_timestart2, sat_timeend2, sat_timepause, sun_timestart1, sun_timeend1, sun_timestart2, sun_timeend2, sun_timepause) VALUES (1, 'Standard', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); +INSERT INTO portanova.workplans (id, workplan, mon_timestart1, mon_timeend1, mon_timestart2, mon_timeend2, mon_timepause, tue_timestart1, tue_timeend1, tue_timestart2, tue_timeend2, tue_timepause, wed_timestart1, wed_timeend1, wed_timestart2, wed_timeend2, wed_timepause, thu_timestart1, thu_timeend1, thu_timestart2, thu_timeend2, thu_timepause, fri_timestart1, fri_timeend1, fri_timestart2, fri_timeend2, fri_timepause, sat_timestart1, sat_timeend1, sat_timestart2, sat_timeend2, sat_timepause, sun_timestart1, sun_timeend1, sun_timestart2, sun_timeend2, sun_timepause, weekhours, weekdays, weekdayslist) VALUES (6, 'Cuisine 1 (40h) ', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); +INSERT INTO portanova.workplans (id, workplan, mon_timestart1, mon_timeend1, mon_timestart2, mon_timeend2, mon_timepause, tue_timestart1, tue_timeend1, tue_timestart2, tue_timeend2, tue_timepause, wed_timestart1, wed_timeend1, wed_timestart2, wed_timeend2, wed_timepause, thu_timestart1, thu_timeend1, thu_timestart2, thu_timeend2, thu_timepause, fri_timestart1, fri_timeend1, fri_timestart2, fri_timeend2, fri_timepause, sat_timestart1, sat_timeend1, sat_timestart2, sat_timeend2, sat_timepause, sun_timestart1, sun_timeend1, sun_timestart2, sun_timeend2, sun_timepause, weekhours, weekdays, weekdayslist) VALUES (1, 'Standard', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); -- --- Data for Name: zzold_staffreportperiodsums; Type: TABLE DATA; Schema: portanova; Owner: - +-- Data for Name: workplandays; Type: TABLE DATA; Schema: portanova; Owner: - -- -INSERT INTO portanova.zzold_staffreportperiodsums (id, id_staff, id_reportperiod, plannedhours, contracthours, trackedhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (18, 135, 18, '328:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', NULL); -INSERT INTO portanova.zzold_staffreportperiodsums (id, id_staff, id_reportperiod, plannedhours, contracthours, trackedhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (56, 141, 9, '304:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', NULL); -INSERT INTO portanova.zzold_staffreportperiodsums (id, id_staff, id_reportperiod, plannedhours, contracthours, trackedhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (57, 142, 9, '320:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', NULL); -INSERT INTO portanova.zzold_staffreportperiodsums (id, id_staff, id_reportperiod, plannedhours, contracthours, trackedhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (58, 138, 9, '304:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', NULL); -INSERT INTO portanova.zzold_staffreportperiodsums (id, id_staff, id_reportperiod, plannedhours, contracthours, trackedhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (2, 141, 10, '320:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', NULL); -INSERT INTO portanova.zzold_staffreportperiodsums (id, id_staff, id_reportperiod, plannedhours, contracthours, trackedhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (3, 142, 10, '320:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', NULL); -INSERT INTO portanova.zzold_staffreportperiodsums (id, id_staff, id_reportperiod, plannedhours, contracthours, trackedhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (19, 133, 18, '328:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', NULL); -INSERT INTO portanova.zzold_staffreportperiodsums (id, id_staff, id_reportperiod, plannedhours, contracthours, trackedhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (20, 141, 18, '328:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', NULL); -INSERT INTO portanova.zzold_staffreportperiodsums (id, id_staff, id_reportperiod, plannedhours, contracthours, trackedhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (21, 142, 18, '328:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', NULL); -INSERT INTO portanova.zzold_staffreportperiodsums (id, id_staff, id_reportperiod, plannedhours, contracthours, trackedhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (22, 127, 18, '328:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', NULL); -INSERT INTO portanova.zzold_staffreportperiodsums (id, id_staff, id_reportperiod, plannedhours, contracthours, trackedhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (23, 136, 18, '328:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', NULL); -INSERT INTO portanova.zzold_staffreportperiodsums (id, id_staff, id_reportperiod, plannedhours, contracthours, trackedhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (24, 138, 18, '328:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', NULL); -INSERT INTO portanova.zzold_staffreportperiodsums (id, id_staff, id_reportperiod, plannedhours, contracthours, trackedhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (25, 139, 18, '328:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', NULL); -INSERT INTO portanova.zzold_staffreportperiodsums (id, id_staff, id_reportperiod, plannedhours, contracthours, trackedhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (26, 134, 18, '328:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', NULL); -INSERT INTO portanova.zzold_staffreportperiodsums (id, id_staff, id_reportperiod, plannedhours, contracthours, trackedhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (27, 131, 18, '328:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', NULL); -INSERT INTO portanova.zzold_staffreportperiodsums (id, id_staff, id_reportperiod, plannedhours, contracthours, trackedhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (28, 129, 18, '328:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', NULL); -INSERT INTO portanova.zzold_staffreportperiodsums (id, id_staff, id_reportperiod, plannedhours, contracthours, trackedhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (29, 128, 18, '328:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', NULL); -INSERT INTO portanova.zzold_staffreportperiodsums (id, id_staff, id_reportperiod, plannedhours, contracthours, trackedhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (30, 130, 18, '328:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', NULL); -INSERT INTO portanova.zzold_staffreportperiodsums (id, id_staff, id_reportperiod, plannedhours, contracthours, trackedhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (31, 143, 18, '328:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', NULL); -INSERT INTO portanova.zzold_staffreportperiodsums (id, id_staff, id_reportperiod, plannedhours, contracthours, trackedhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (33, 103, 19, '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', NULL); -INSERT INTO portanova.zzold_staffreportperiodsums (id, id_staff, id_reportperiod, plannedhours, contracthours, trackedhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (35, 125, 19, '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', NULL); -INSERT INTO portanova.zzold_staffreportperiodsums (id, id_staff, id_reportperiod, plannedhours, contracthours, trackedhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (32, 102, 19, '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', NULL); -INSERT INTO portanova.zzold_staffreportperiodsums (id, id_staff, id_reportperiod, plannedhours, contracthours, trackedhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (34, 104, 19, '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', NULL); -INSERT INTO portanova.zzold_staffreportperiodsums (id, id_staff, id_reportperiod, plannedhours, contracthours, trackedhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (36, 122, 20, '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', NULL); -INSERT INTO portanova.zzold_staffreportperiodsums (id, id_staff, id_reportperiod, plannedhours, contracthours, trackedhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (38, 117, 20, '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', NULL); -INSERT INTO portanova.zzold_staffreportperiodsums (id, id_staff, id_reportperiod, plannedhours, contracthours, trackedhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (37, 121, 20, '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', NULL); -INSERT INTO portanova.zzold_staffreportperiodsums (id, id_staff, id_reportperiod, plannedhours, contracthours, trackedhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (39, 115, 20, '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', NULL); -INSERT INTO portanova.zzold_staffreportperiodsums (id, id_staff, id_reportperiod, plannedhours, contracthours, trackedhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (40, 114, 20, '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', NULL); -INSERT INTO portanova.zzold_staffreportperiodsums (id, id_staff, id_reportperiod, plannedhours, contracthours, trackedhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (41, 119, 20, '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', NULL); -INSERT INTO portanova.zzold_staffreportperiodsums (id, id_staff, id_reportperiod, plannedhours, contracthours, trackedhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (42, 113, 20, '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', NULL); -INSERT INTO portanova.zzold_staffreportperiodsums (id, id_staff, id_reportperiod, plannedhours, contracthours, trackedhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (43, 146, 20, '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', NULL); -INSERT INTO portanova.zzold_staffreportperiodsums (id, id_staff, id_reportperiod, plannedhours, contracthours, trackedhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (44, 112, 20, '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', NULL); -INSERT INTO portanova.zzold_staffreportperiodsums (id, id_staff, id_reportperiod, plannedhours, contracthours, trackedhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (45, 108, 20, '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', NULL); -INSERT INTO portanova.zzold_staffreportperiodsums (id, id_staff, id_reportperiod, plannedhours, contracthours, trackedhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (46, 109, 20, '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', NULL); -INSERT INTO portanova.zzold_staffreportperiodsums (id, id_staff, id_reportperiod, plannedhours, contracthours, trackedhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (47, 147, 20, '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', NULL); -INSERT INTO portanova.zzold_staffreportperiodsums (id, id_staff, id_reportperiod, plannedhours, contracthours, trackedhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (48, 105, 20, '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', NULL); -INSERT INTO portanova.zzold_staffreportperiodsums (id, id_staff, id_reportperiod, plannedhours, contracthours, trackedhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (49, 118, 20, '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', NULL); -INSERT INTO portanova.zzold_staffreportperiodsums (id, id_staff, id_reportperiod, plannedhours, contracthours, trackedhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (59, 131, 9, '320:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', NULL); -INSERT INTO portanova.zzold_staffreportperiodsums (id, id_staff, id_reportperiod, plannedhours, contracthours, trackedhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (60, 135, 9, '320:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', NULL); -INSERT INTO portanova.zzold_staffreportperiodsums (id, id_staff, id_reportperiod, plannedhours, contracthours, trackedhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (61, 132, 9, '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', NULL); -INSERT INTO portanova.zzold_staffreportperiodsums (id, id_staff, id_reportperiod, plannedhours, contracthours, trackedhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (62, 133, 9, '320:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', NULL); -INSERT INTO portanova.zzold_staffreportperiodsums (id, id_staff, id_reportperiod, plannedhours, contracthours, trackedhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (63, 127, 9, '304:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', NULL); -INSERT INTO portanova.zzold_staffreportperiodsums (id, id_staff, id_reportperiod, plannedhours, contracthours, trackedhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (64, 136, 9, '320:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', NULL); -INSERT INTO portanova.zzold_staffreportperiodsums (id, id_staff, id_reportperiod, plannedhours, contracthours, trackedhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (65, 140, 9, '184:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', NULL); -INSERT INTO portanova.zzold_staffreportperiodsums (id, id_staff, id_reportperiod, plannedhours, contracthours, trackedhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (66, 139, 9, '304:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', NULL); -INSERT INTO portanova.zzold_staffreportperiodsums (id, id_staff, id_reportperiod, plannedhours, contracthours, trackedhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (67, 134, 9, '304:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', NULL); -INSERT INTO portanova.zzold_staffreportperiodsums (id, id_staff, id_reportperiod, plannedhours, contracthours, trackedhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (68, 129, 9, '320:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', NULL); -INSERT INTO portanova.zzold_staffreportperiodsums (id, id_staff, id_reportperiod, plannedhours, contracthours, trackedhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (69, 144, 9, '304:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', NULL); -INSERT INTO portanova.zzold_staffreportperiodsums (id, id_staff, id_reportperiod, plannedhours, contracthours, trackedhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (70, 128, 9, '24:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', NULL); -INSERT INTO portanova.zzold_staffreportperiodsums (id, id_staff, id_reportperiod, plannedhours, contracthours, trackedhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (71, 130, 9, '320:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', NULL); -INSERT INTO portanova.zzold_staffreportperiodsums (id, id_staff, id_reportperiod, plannedhours, contracthours, trackedhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (72, 143, 9, '304:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', NULL); -INSERT INTO portanova.zzold_staffreportperiodsums (id, id_staff, id_reportperiod, plannedhours, contracthours, trackedhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (4, 138, 10, '320:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', NULL); -INSERT INTO portanova.zzold_staffreportperiodsums (id, id_staff, id_reportperiod, plannedhours, contracthours, trackedhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (5, 131, 10, '320:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', NULL); -INSERT INTO portanova.zzold_staffreportperiodsums (id, id_staff, id_reportperiod, plannedhours, contracthours, trackedhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (6, 135, 10, '320:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', NULL); -INSERT INTO portanova.zzold_staffreportperiodsums (id, id_staff, id_reportperiod, plannedhours, contracthours, trackedhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (7, 133, 10, '320:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', NULL); -INSERT INTO portanova.zzold_staffreportperiodsums (id, id_staff, id_reportperiod, plannedhours, contracthours, trackedhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (8, 127, 10, '320:00:00', '00:00:00', '00:00:00', '08:00:00', '00:00:00', '00:00:00', NULL); -INSERT INTO portanova.zzold_staffreportperiodsums (id, id_staff, id_reportperiod, plannedhours, contracthours, trackedhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (9, 136, 10, '320:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', NULL); -INSERT INTO portanova.zzold_staffreportperiodsums (id, id_staff, id_reportperiod, plannedhours, contracthours, trackedhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (10, 139, 10, '320:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', NULL); -INSERT INTO portanova.zzold_staffreportperiodsums (id, id_staff, id_reportperiod, plannedhours, contracthours, trackedhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (11, 134, 10, '320:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', NULL); -INSERT INTO portanova.zzold_staffreportperiodsums (id, id_staff, id_reportperiod, plannedhours, contracthours, trackedhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (12, 129, 10, '320:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', NULL); -INSERT INTO portanova.zzold_staffreportperiodsums (id, id_staff, id_reportperiod, plannedhours, contracthours, trackedhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (13, 144, 10, '218:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', NULL); -INSERT INTO portanova.zzold_staffreportperiodsums (id, id_staff, id_reportperiod, plannedhours, contracthours, trackedhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (14, 128, 10, '320:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', NULL); -INSERT INTO portanova.zzold_staffreportperiodsums (id, id_staff, id_reportperiod, plannedhours, contracthours, trackedhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (15, 130, 10, '320:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', NULL); -INSERT INTO portanova.zzold_staffreportperiodsums (id, id_staff, id_reportperiod, plannedhours, contracthours, trackedhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (16, 143, 10, '320:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', NULL); -INSERT INTO portanova.zzold_staffreportperiodsums (id, id_staff, id_reportperiod, plannedhours, contracthours, trackedhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (102, 151, 19, '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', NULL); -INSERT INTO portanova.zzold_staffreportperiodsums (id, id_staff, id_reportperiod, plannedhours, contracthours, trackedhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (50, 106, 20, '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', NULL); -INSERT INTO portanova.zzold_staffreportperiodsums (id, id_staff, id_reportperiod, plannedhours, contracthours, trackedhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (51, 111, 20, '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', NULL); -INSERT INTO portanova.zzold_staffreportperiodsums (id, id_staff, id_reportperiod, plannedhours, contracthours, trackedhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (52, 110, 20, '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', NULL); -INSERT INTO portanova.zzold_staffreportperiodsums (id, id_staff, id_reportperiod, plannedhours, contracthours, trackedhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (53, 145, 20, '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', NULL); -INSERT INTO portanova.zzold_staffreportperiodsums (id, id_staff, id_reportperiod, plannedhours, contracthours, trackedhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (54, 148, 20, '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', NULL); -INSERT INTO portanova.zzold_staffreportperiodsums (id, id_staff, id_reportperiod, plannedhours, contracthours, trackedhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (55, 149, 20, '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', NULL); +INSERT INTO portanova.workplandays (id, id_workplan, weekday, start1, end1, start2, end2, pause) VALUES (1, 6, 2, '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00'); +INSERT INTO portanova.workplandays (id, id_workplan, weekday, start1, end1, start2, end2, pause) VALUES (2, 6, 5, '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00'); +INSERT INTO portanova.workplandays (id, id_workplan, weekday, start1, end1, start2, end2, pause) VALUES (3, 1, 1, '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00'); +INSERT INTO portanova.workplandays (id, id_workplan, weekday, start1, end1, start2, end2, pause) VALUES (4, 6, 4, '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00'); +INSERT INTO portanova.workplandays (id, id_workplan, weekday, start1, end1, start2, end2, pause) VALUES (5, 1, 4, '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00'); +INSERT INTO portanova.workplandays (id, id_workplan, weekday, start1, end1, start2, end2, pause) VALUES (6, 1, 3, '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00'); +INSERT INTO portanova.workplandays (id, id_workplan, weekday, start1, end1, start2, end2, pause) VALUES (7, 6, 3, '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00'); +INSERT INTO portanova.workplandays (id, id_workplan, weekday, start1, end1, start2, end2, pause) VALUES (9, 1, 2, '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00'); +INSERT INTO portanova.workplandays (id, id_workplan, weekday, start1, end1, start2, end2, pause) VALUES (10, 1, 5, '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00'); +INSERT INTO portanova.workplandays (id, id_workplan, weekday, start1, end1, start2, end2, pause) VALUES (11, 1, 6, NULL, NULL, NULL, NULL, NULL); +INSERT INTO portanova.workplandays (id, id_workplan, weekday, start1, end1, start2, end2, pause) VALUES (12, 1, 7, NULL, NULL, NULL, NULL, NULL); +INSERT INTO portanova.workplandays (id, id_workplan, weekday, start1, end1, start2, end2, pause) VALUES (13, 6, 6, NULL, NULL, NULL, NULL, NULL); +INSERT INTO portanova.workplandays (id, id_workplan, weekday, start1, end1, start2, end2, pause) VALUES (14, 6, 7, NULL, NULL, NULL, NULL, NULL); +INSERT INTO portanova.workplandays (id, id_workplan, weekday, start1, end1, start2, end2, pause) VALUES (8, 6, 1, '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00'); -- --- Name: editlog_id_seq; Type: SEQUENCE SET; Schema: portanova; Owner: - +-- Data for Name: worktimes; Type: TABLE DATA; Schema: portanova; Owner: - -- -SELECT pg_catalog.setval('portanova.editlog_id_seq', 1, false); +INSERT INTO portanova.worktimes (id, startdate, enddate, defaultdayhours, maxdayhours, defaultweekhours, maxweekhours, maxinterruptionhours, isdefault) VALUES (1, NULL, NULL, '08:00:00', '10:00:00', '40:00:00', '48:00:00', '03:00:00', true); +INSERT INTO portanova.worktimes (id, startdate, enddate, defaultdayhours, maxdayhours, defaultweekhours, maxweekhours, maxinterruptionhours, isdefault) VALUES (3, '2020-12-23', '2021-01-02', '08:00:00', '12:00:00', '40:00:00', '51:00:00', '03:00:00', NULL); +INSERT INTO portanova.worktimes (id, startdate, enddate, defaultdayhours, maxdayhours, defaultweekhours, maxweekhours, maxinterruptionhours, isdefault) VALUES (4, '2020-04-04', '2020-04-19', '08:00:00', '12:00:00', '40:00:00', '51:00:00', '03:00:00', NULL); +INSERT INTO portanova.worktimes (id, startdate, enddate, defaultdayhours, maxdayhours, defaultweekhours, maxweekhours, maxinterruptionhours, isdefault) VALUES (2, '2020-06-01', '2020-09-30', '08:00:00', '12:00:00', '40:00:00', '51:00:00', '03:00:00', NULL); -- -- Name: reportperiod_id_seq; Type: SEQUENCE SET; Schema: portanova; Owner: - -- -SELECT pg_catalog.setval('portanova.reportperiod_id_seq', 29, true); +SELECT pg_catalog.setval('portanova.reportperiod_id_seq', 31, true); -- @@ -5334,21 +10303,14 @@ SELECT pg_catalog.setval('portanova.staffgroups_id_seq', 8, true); -- Name: staffperiodbase_id_seq; Type: SEQUENCE SET; Schema: portanova; Owner: - -- -SELECT pg_catalog.setval('portanova.staffperiodbase_id_seq', 172, true); +SELECT pg_catalog.setval('portanova.staffperiodbase_id_seq', 173, true); -- -- Name: staffreportperiod_id_seq; Type: SEQUENCE SET; Schema: portanova; Owner: - -- -SELECT pg_catalog.setval('portanova.staffreportperiod_id_seq', 1151, true); - - --- --- Name: staffreportperiodsums_id_seq; Type: SEQUENCE SET; Schema: portanova; Owner: - --- - -SELECT pg_catalog.setval('portanova.staffreportperiodsums_id_seq', 126, true); +SELECT pg_catalog.setval('portanova.staffreportperiod_id_seq', 2525, true); -- @@ -5362,21 +10324,28 @@ SELECT pg_catalog.setval('portanova.staffvacancy_id_seq', 1, false); -- Name: staffweeksums_id_seq; Type: SEQUENCE SET; Schema: portanova; Owner: - -- -SELECT pg_catalog.setval('portanova.staffweeksums_id_seq', 6761, true); +SELECT pg_catalog.setval('portanova.staffweeksums_id_seq', 17525, true); -- -- Name: staffworkplan_id_seq; Type: SEQUENCE SET; Schema: portanova; Owner: - -- -SELECT pg_catalog.setval('portanova.staffworkplan_id_seq', 1083489, true); +SELECT pg_catalog.setval('portanova.staffworkplan_id_seq', 1158302, true); -- -- Name: vacancydays_id_seq; Type: SEQUENCE SET; Schema: portanova; Owner: - -- -SELECT pg_catalog.setval('portanova.vacancydays_id_seq', 1, false); +SELECT pg_catalog.setval('portanova.vacancydays_id_seq', 33, true); + + +-- +-- Name: workplandays_id_seq; Type: SEQUENCE SET; Schema: portanova; Owner: - +-- + +SELECT pg_catalog.setval('portanova.workplandays_id_seq', 14, true); -- @@ -5386,6 +10355,13 @@ SELECT pg_catalog.setval('portanova.vacancydays_id_seq', 1, false); SELECT pg_catalog.setval('portanova.workplans_id_seq', 6, true); +-- +-- Name: worktimes_id_seq; Type: SEQUENCE SET; Schema: portanova; Owner: - +-- + +SELECT pg_catalog.setval('portanova.worktimes_id_seq', 4, true); + + -- -- Name: worktypes_id_seq; Type: SEQUENCE SET; Schema: portanova; Owner: - -- diff --git a/dev/db/potlu_db.portanova.pg.full.sql b/dev/db/potlu_db.portanova.pg.full.sql index d444c0e5..7deedeb0 100644 --- a/dev/db/potlu_db.portanova.pg.full.sql +++ b/dev/db/potlu_db.portanova.pg.full.sql @@ -60,7 +60,7 @@ ALTER FUNCTION portanova.add_reportperiod() OWNER TO potlu_user; -- Name: getperiod_staffcontract(integer); Type: FUNCTION; Schema: portanova; Owner: potlu_user -- -CREATE FUNCTION portanova.getperiod_staffcontract(pid integer) RETURNS TABLE(id integer, id_staff integer, startdate date, enddate date, weekhours interval, weekdays integer, id_workplan integer) +CREATE FUNCTION portanova.getperiod_staffcontract(pid integer) RETURNS TABLE(id integer, id_staff integer, startdate date, enddate date, weekhours interval, weekdays integer, id_workplan integer, defaultfreedays json) LANGUAGE plpgsql AS $$ declare @@ -69,11 +69,11 @@ CREATE FUNCTION portanova.getperiod_staffcontract(pid integer) RETURNS TABLE(id begin select prd.startdate as prdstart,prd.enddate as prdend into pstart,pend from portanova.reportperiod prd where prd.id=pid; return QUERY -select sc.id,sc.id_staff, -case when sc.startdate < pstart then pstart else sc.startdate end as startdate, +select sc.id,sc.id_staff, +case when sc.startdate < pstart then pstart else sc.startdate end as startdate, case when sc.enddate is null then pend when sc.enddate > pend then pend else sc.enddate end as enddate, -sc.weekhours,sc.weekdays,sc.id_workplan -from portanova.staffcontract sc where sc.startdate<= pend and (sc.enddate is null or sc.enddate >= pstart) +sc.weekhours,sc.weekdays,sc.id_workplan,sc.defaultfreedays +from portanova.staffcontract sc where sc.startdate<= pend and (sc.enddate is null or sc.enddate >= pstart) order by sc.id_staff,sc.startdate,sc.enddate; END; $$; @@ -125,6 +125,27 @@ $$; ALTER FUNCTION portanova.onchange_reportperiod(pid_period integer) OWNER TO potlu_user; +-- +-- Name: refresh_periods(); Type: FUNCTION; Schema: portanova; Owner: potlu_user +-- + +CREATE FUNCTION portanova.refresh_periods() RETURNS boolean + LANGUAGE plpgsql + AS $$ + declare + prds record; + begin + for prds in select id from portanova.reportperiod order by startdate,enddate + loop + perform portanova.update_all_staff_in_period(prds.id); + end loop; + RETURN true; + END; +$$; + + +ALTER FUNCTION portanova.refresh_periods() OWNER TO potlu_user; + -- -- Name: set_periodday_sums(bigint); Type: FUNCTION; Schema: portanova; Owner: potlu_user -- @@ -228,23 +249,37 @@ CREATE FUNCTION portanova.set_staffperiodweek_sums(pid_reportperiod integer, pid declare wkcon record; tmpcontrhours interval; + freedays int4 := 0; begin -- INSERT Contract data into Week -for wkcon in select srpw.id,psc.weekhours,psc.weekdays,srpw.contractdays,srpw.caldays,srpw.diffhours,srpw.contracthours,srpw.totalhours +for wkcon in select srpw.id,srpw.calweek,srpw.weekstart,srpw.calyear,rp.startdate as periodstart,psc.startdate,rp.enddate as periodend,psc.enddate,psc.weekhours,psc.weekdays,srpw.contractdays,srpw.caldays,srpw.diffhours,srpw.contracthours,srpw.totalhours,psc.defaultfreedays from portanova.staffreportperiodweeks srpw -left join (select xa.id_staff,xa.startdate,xa.enddate,xa.weekhours,xa.weekdays from portanova.getperiod_staffcontract(pid_reportperiod) xa where xa.id_staff=pid_staff) psc +left join (select xa.id_staff,xa.startdate,xa.enddate,xa.weekhours,xa.weekdays,xa.defaultfreedays from portanova.getperiod_staffcontract(pid_reportperiod) xa where xa.id_staff=pid_staff) psc on (srpw.weekstart between date_trunc('week',psc.startdate) and psc.enddate) +left join portanova.reportperiod rp on (srpw.id_reportperiod =rp.id) where srpw.id_reportperiod=pid_reportperiod and srpw.id_staff=pid_staff loop --raise notice 'id=%',wkcon; - --raise notice 'id=%',wkcon.contractdays; + if wkcon.defaultfreedays is not null then + freedays = json_array_length(wkcon.defaultfreedays); + end if; wkcon.contracthours=wkcon.weekhours; wkcon.contractdays=wkcon.weekdays; - if wkcon.caldays < wkcon.contractdays then - wkcon.contractdays = wkcon.caldays; - wkcon.contracthours = (wkcon.weekhours/wkcon.weekdays) * wkcon.contractdays; + if wkcon.calweek= date_part('week',wkcon.periodstart)::int4 and wkcon.calyear= date_part('isoyear',wkcon.periodstart)::int4 then + wkcon.contracthours = wkcon.contracthours - ((wkcon.weekhours/wkcon.weekdays) * (wkcon.startdate-wkcon.periodstart)::int4); end if; + --if wkcon.startdate > wkcon.periodstart then + -- wkcon.contractdays = wkcon.contractdays-(wkcon.startdate-wkcon.periodstart)::int4; + -- wkcon.contracthours = (wkcon.weekhours/wkcon.weekdays) * wkcon.contractdays; + --end if; + --if wkcon.enddate < wkcon.periodend then + -- wkcon.contractdays = wkcon.contractdays-(wkcon.periodend-wkcon.enddate)::int4; + -- wkcon.contracthours = (wkcon.weekhours/wkcon.weekdays) * wkcon.contractdays; + --end if; + + wkcon.diffhours = wkcon.totalhours-wkcon.contracthours; + raise notice 'contractdays: % contracthours: % totalhours: % diffhours: %',wkcon.contractdays,wkcon.contracthours,wkcon.totalhours,wkcon.diffhours; --raise notice 'id=% cdays=% chours=% diffhours=%',wkcon.id,wkcon.contractdays,wkcon.contracthours,wkcon.diffhours; update portanova.staffreportperiodweeks set contracthours=wkcon.contracthours,contractdays=wkcon.contractdays,diffhours=wkcon.diffhours where id=wkcon.id; @@ -271,8 +306,10 @@ declare cdate date; edate date; wday text; + wdaynum int4; wdayplan record; cid_staffworkplan int8; + cdaytime interval; begin select * into prd from portanova.reportperiod where id= pid_period; for cont in select * from portanova.getperiod_staffcontract(pid_period) where id_staff=pid_staff @@ -280,16 +317,24 @@ begin cdate := cont.startdate; while cdate <= cont.enddate loop if cdate between prd.startdate and prd.enddate then + wdaynum = date_part('isodow',cdate)::INT4; + cdaytime := null; + + if position('"' || wdaynum || '"' in cont.defaultfreedays::text) = 0 then + cdaytime := cont.weekhours/cont.weekdays; + end if; + raise notice 'wday % => % => %',wdaynum,position('"' || wdaynum || '"' in cont.defaultfreedays::text),cdaytime; if (cont.id_workplan is not null) then wday := substr(to_char(cdate,'day'),1,3); execute 'select ' || wday || '_timestart1 as ts1,' || wday || '_timeend1 as te1,' || wday || '_timestart2 as ts2,' || wday ||'_timeend2 as te2,'|| wday ||'_timepause as tp from portanova.workplans where id=' || cont.id_workplan || ';' into wdayplan; - insert into portanova.staffreportperioddays (id_staff,daydate,id_reportperiod,timestart1,timeend1,timestart2,timeend2,timepause,contracthours) - values (pid_staff,cdate,pid_period,wdayplan.ts1,wdayplan.te1,wdayplan.ts2,wdayplan.te2,wdayplan.tp,cont.weekhours/cont.weekdays) - on conflict on constraint uniq_staffworplan_staffday do update set contracthours=cont.weekhours/cont.weekdays + + insert into portanova.staffreportperioddays (id_staff,daydate,id_reportperiod,timestart1,timeend1,timestart2,timeend2,timepause,contracthours,wdcontracthours) + values (pid_staff,cdate,pid_period,wdayplan.ts1,wdayplan.te1,wdayplan.ts2,wdayplan.te2,wdayplan.tp,cont.weekhours/cont.weekdays,cdaytime) + on conflict on constraint uniq_staffworplan_staffday do update set contracthours=cont.weekhours/cont.weekdays,wdcontracthours=cdaytime returning id into cid_staffworkplan; else - insert into portanova.staffreportperioddays (id_staff,daydate,id_reportperiod,contracthours,id_staffgrou) values ( pid_staff , cdate , pid_period,cont.weekhours/cont.weekdays) - on conflict on constraint uniq_staffworplan_staffday do update set contracthours=cont.weekhours/cont.weekdays + insert into portanova.staffreportperioddays (id_staff,daydate,id_reportperiod,contracthours,wdcontracthours) values ( pid_staff , cdate , pid_period,cont.weekhours/cont.weekdays,cdaytime) + on conflict on constraint uniq_staffworplan_staffday do update set contracthours=cont.weekhours/cont.weekdays,wdcontracthours=cdaytime returning id into cid_staffworkplan; end if; end if; @@ -323,7 +368,8 @@ coalesce(sum(workhours),'00:00:00') as workhours , coalesce(sum(vacancyhours),'00:00:00') as vacancyhours , coalesce(sum(recuperationhours) ,'00:00:00' ) as recuperationhours , coalesce(sum(dayhours),'00:00:00') as totalhours, -count(id) as caldays +coalesce(sum(contracthours),'00:00:00') as contracthours, +count(wdcontracthours) as caldays from ( select swp.id,swp.id_reportperiod,swp.id_staff, date_part('isoyear',swp.daydate) as calyear, @@ -333,14 +379,15 @@ swp.workhours, swp.contracthours, swp.recuperationhours, swp.dayhours, -swp.vacancyhours +swp.vacancyhours, +swp.wdcontracthours from portanova.staffreportperioddays swp where swp.id_reportperiod= pid_reportperiod and swp.id_staff=pid_staff) wkwp group by id_staff,id_reportperiod,calyear,calweek,weekstart loop --raise notice 'id_staff: % id_period: % calweek: % calyear: %',pid_staff,pid_reportperiod,wkpd.calweek,wkpd.calyear; - insert into portanova.staffreportperiodweeks (id_staff, id_reportperiod, calyear, calweek, workhours,vacancyhours, recuperationhours, weekstart,totalhours,caldays) - VALUES(wkpd.id_staff, wkpd.id_reportperiod, wkpd.calyear, wkpd.calweek, wkpd.workhours, wkpd.vacancyhours, wkpd.recuperationhours, wkpd.weekstart,wkpd.totalhours,wkpd.caldays) - on conflict on constraint uniq_staffweekplan_cal do update set workhours=wkpd.workhours, vacancyhours=wkpd.vacancyhours, recuperationhours=wkpd.recuperationhours,totalhours=wkpd.totalhours,caldays=wkpd.caldays; + insert into portanova.staffreportperiodweeks (id_staff, id_reportperiod, calyear, calweek, workhours,vacancyhours, recuperationhours, weekstart,totalhours,caldays,contracthours,diffhours) + VALUES(wkpd.id_staff, wkpd.id_reportperiod, wkpd.calyear, wkpd.calweek, wkpd.workhours, wkpd.vacancyhours, wkpd.recuperationhours, wkpd.weekstart,wkpd.totalhours,wkpd.caldays,wkpd.contracthours,wkpd.contracthours-wkpd.totalhours) + on conflict on constraint uniq_staffweekplan_cal do update set workhours=wkpd.workhours, vacancyhours=wkpd.vacancyhours, recuperationhours=wkpd.recuperationhours,totalhours=wkpd.totalhours,caldays=wkpd.caldays,contracthours=wkpd.contracthours,diffhours=wkpd.contracthours-wkpd.totalhours; end loop; perform portanova.set_staffperiodweek_sums(pid_reportperiod, pid_staff); @@ -565,27 +612,6 @@ $$; ALTER FUNCTION portanova.zzold_onchange_reportperiod(pid_period integer) OWNER TO potlu_user; --- --- Name: zzold_refreshperiods(); Type: FUNCTION; Schema: portanova; Owner: potlu_user --- - -CREATE FUNCTION portanova.zzold_refreshperiods() RETURNS boolean - LANGUAGE plpgsql - AS $$ - declare - prds record; - begin - for prds in select id from portanova.reportperiod where isvalidated != true - loop - perform portanova.onchange_reportperiod(prds.id); - end loop; - RETURN false; - END; -$$; - - -ALTER FUNCTION portanova.zzold_refreshperiods() OWNER TO potlu_user; - -- -- Name: zzold_set_staffperiod(integer); Type: FUNCTION; Schema: portanova; Owner: potlu_user -- @@ -619,43 +645,6 @@ SET default_tablespace = ''; SET default_with_oids = false; --- --- Name: editlog; Type: TABLE; Schema: portanova; Owner: potlu_user --- - -CREATE TABLE portanova.editlog ( - id bigint NOT NULL, - id_user integer, - tblname text, - tblfields json, - modified timestamp without time zone DEFAULT CURRENT_TIMESTAMP, - created timestamp without time zone DEFAULT CURRENT_TIMESTAMP -); - - -ALTER TABLE portanova.editlog OWNER TO potlu_user; - --- --- Name: editlog_id_seq; Type: SEQUENCE; Schema: portanova; Owner: potlu_user --- - -CREATE SEQUENCE portanova.editlog_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; - - -ALTER TABLE portanova.editlog_id_seq OWNER TO potlu_user; - --- --- Name: editlog_id_seq; Type: SEQUENCE OWNED BY; Schema: portanova; Owner: potlu_user --- - -ALTER SEQUENCE portanova.editlog_id_seq OWNED BY portanova.editlog.id; - - -- -- Name: reportperiod; Type: TABLE; Schema: portanova; Owner: potlu_user -- @@ -751,7 +740,8 @@ CREATE TABLE portanova.staffcontract ( weekdays integer, enddate date, id_workplan integer, - weekhours interval + weekhours interval, + defaultfreedays json ); @@ -830,7 +820,8 @@ CREATE TABLE portanova.staffreportperiod ( vacancyhours interval, recuperationhours interval, hoursdiff interval, - hoursrestbefore interval + payedhours interval, + diffhourspayed interval ); @@ -882,54 +873,13 @@ CREATE TABLE portanova.staffreportperioddays ( id_reportperiod integer, dayhours time without time zone, id_recuperationtype integer, - interruptionhours time without time zone + interruptionhours time without time zone, + wdcontracthours time without time zone ); ALTER TABLE portanova.staffreportperioddays OWNER TO potlu_user; --- --- Name: zzold_staffreportperiodsums; Type: TABLE; Schema: portanova; Owner: potlu_user --- - -CREATE TABLE portanova.zzold_staffreportperiodsums ( - id integer NOT NULL, - id_staff integer, - id_reportperiod integer, - plannedhours interval DEFAULT '00:00:00'::interval, - contracthours interval DEFAULT '00:00:00'::interval, - trackedhours interval DEFAULT '00:00:00'::interval, - vacancyhours interval DEFAULT '00:00:00'::interval, - recuperationhours interval DEFAULT '00:00:00'::interval, - hoursdiff interval DEFAULT '00:00:00'::interval, - hoursrestbefore interval -); - - -ALTER TABLE portanova.zzold_staffreportperiodsums OWNER TO potlu_user; - --- --- Name: staffreportperiodsums_id_seq; Type: SEQUENCE; Schema: portanova; Owner: potlu_user --- - -CREATE SEQUENCE portanova.staffreportperiodsums_id_seq - AS integer - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; - - -ALTER TABLE portanova.staffreportperiodsums_id_seq OWNER TO potlu_user; - --- --- Name: staffreportperiodsums_id_seq; Type: SEQUENCE OWNED BY; Schema: portanova; Owner: potlu_user --- - -ALTER SEQUENCE portanova.staffreportperiodsums_id_seq OWNED BY portanova.zzold_staffreportperiodsums.id; - - -- -- Name: staffreportperiodweeks; Type: TABLE; Schema: portanova; Owner: potlu_user -- @@ -1130,7 +1080,8 @@ CREATE VIEW portanova.vw_staffcontractdata AS staffcontract.id_staffgroup, staffcontract.enddate, staffcontract.id AS id_staffcontract, - staffcontract.id_workplan + staffcontract.id_workplan, + staffcontract.defaultfreedays FROM portanova.staffcontract; @@ -1177,7 +1128,10 @@ CREATE TABLE portanova.workplans ( sun_timeend1 time without time zone, sun_timestart2 time without time zone, sun_timeend2 time without time zone, - sun_timepause time without time zone + sun_timepause time without time zone, + weekhours interval, + weekdays integer, + weekdayslist json ); @@ -1198,10 +1152,16 @@ CREATE VIEW portanova.vw_staffcontractlist AS sg.groupcolor, sc.enddate, sc.id_workplan, + ddf.defaultfreedays, wp.workplan - FROM ((portanova.staffcontract sc + FROM (((portanova.staffcontract sc LEFT JOIN portanova.staffgroups sg ON ((sc.id_staffgroup = sg.id))) LEFT JOIN portanova.workplans wp ON ((sc.id_workplan = wp.id))) + LEFT JOIN ( SELECT dfd.id, + replace(replace(replace(replace(replace(replace(replace(dfd.defaultfreedays, '7'::text, 'di'::text), '6'::text, 'sa'::text), '5'::text, 've'::text), '4'::text, 'je'::text), '3'::text, 'me'::text), '2'::text, 'ma'::text), '1'::text, 'lu'::text) AS defaultfreedays + FROM ( SELECT staffcontract.id, + json_array_elements_text(staffcontract.defaultfreedays) AS defaultfreedays + FROM portanova.staffcontract) dfd) ddf ON ((sc.id = ddf.id))) ORDER BY sc.startdate DESC, sc.enddate DESC; @@ -1252,7 +1212,6 @@ ALTER TABLE portanova.vw_staffgroupsdata OWNER TO potlu_user; CREATE VIEW portanova.vw_staffgroupslist AS SELECT staffgroups.id, staffgroups.groupname, - staffgroups.groupcolor, staffgroups.isdefault FROM portanova.staffgroups; @@ -1271,293 +1230,19 @@ CREATE VIEW portanova.vw_stafflist AS st.job, st.birthdate, ((st.surname || ' '::text) || st.prename) AS dspname, - stg.groupname - FROM (portanova.staff st + stg.groupname, + stentry.entrydate + FROM ((portanova.staff st LEFT JOIN portanova.staffgroups stg ON ((st.id_staffgroup = stg.id))) + LEFT JOIN ( SELECT staffcontract.id_staff, + min(staffcontract.startdate) AS entrydate + FROM portanova.staffcontract + GROUP BY staffcontract.id_staff) stentry ON ((st.id = stentry.id_staff))) ORDER BY st.surname, st.prename; ALTER TABLE portanova.vw_stafflist OWNER TO potlu_user; --- --- Name: vw_staffplanned_dayweektotals; Type: VIEW; Schema: portanova; Owner: potlu_user --- - -CREATE VIEW portanova.vw_staffplanned_dayweektotals AS - SELECT stw2.calweek, - stw2.caldate AS dates, - stw2.id_staff, - max( - CASE - WHEN (stw2.isodow = (1)::double precision) THEN stw2.id - ELSE NULL::bigint - END) AS mon_id, - max( - CASE - WHEN (stw2.isodow = (1)::double precision) THEN to_char((stw2.timestart1)::interval, 'HH24:MI'::text) - ELSE NULL::text - END) AS mon_start1, - max( - CASE - WHEN (stw2.isodow = (1)::double precision) THEN to_char((stw2.timeend1)::interval, 'HH24:MI'::text) - ELSE NULL::text - END) AS mon_end1, - max( - CASE - WHEN (stw2.isodow = (1)::double precision) THEN to_char((stw2.timestart2)::interval, 'HH24:MI'::text) - ELSE NULL::text - END) AS mon_start2, - max( - CASE - WHEN (stw2.isodow = (1)::double precision) THEN to_char((stw2.timeend2)::interval, 'HH24:MI'::text) - ELSE NULL::text - END) AS mon_end2, - max( - CASE - WHEN (stw2.isodow = (1)::double precision) THEN to_char((stw2.timepause)::interval, 'HH24:MI'::text) - ELSE NULL::text - END) AS mon_pause, - to_char(max( - CASE - WHEN (stw2.isodow = (1)::double precision) THEN ((stw2.time1 + stw2.time2) - (stw2.timepause)::interval) - ELSE NULL::interval - END), 'HH24:MI'::text) AS mon_timetotal, - max( - CASE - WHEN (stw2.isodow = (2)::double precision) THEN stw2.id - ELSE NULL::bigint - END) AS tue_id, - max( - CASE - WHEN (stw2.isodow = (2)::double precision) THEN to_char((stw2.timestart1)::interval, 'HH24:MI'::text) - ELSE NULL::text - END) AS tue_start1, - max( - CASE - WHEN (stw2.isodow = (2)::double precision) THEN to_char((stw2.timeend1)::interval, 'HH24:MI'::text) - ELSE NULL::text - END) AS tue_end1, - max( - CASE - WHEN (stw2.isodow = (2)::double precision) THEN to_char((stw2.timestart2)::interval, 'HH24:MI'::text) - ELSE NULL::text - END) AS tue_start2, - max( - CASE - WHEN (stw2.isodow = (2)::double precision) THEN to_char((stw2.timeend2)::interval, 'HH24:MI'::text) - ELSE NULL::text - END) AS tue_end2, - max( - CASE - WHEN (stw2.isodow = (2)::double precision) THEN to_char((stw2.timepause)::interval, 'HH24:MI'::text) - ELSE NULL::text - END) AS tue_pause, - to_char(max( - CASE - WHEN (stw2.isodow = (2)::double precision) THEN ((stw2.time1 + stw2.time2) - (stw2.timepause)::interval) - ELSE NULL::interval - END), 'HH24:MI'::text) AS tue_timetotal, - max( - CASE - WHEN (stw2.isodow = (3)::double precision) THEN stw2.id - ELSE NULL::bigint - END) AS wed_id, - max( - CASE - WHEN (stw2.isodow = (3)::double precision) THEN to_char((stw2.timestart1)::interval, 'HH24:MI'::text) - ELSE NULL::text - END) AS wed_start1, - max( - CASE - WHEN (stw2.isodow = (3)::double precision) THEN to_char((stw2.timeend1)::interval, 'HH24:MI'::text) - ELSE NULL::text - END) AS wed_end1, - max( - CASE - WHEN (stw2.isodow = (3)::double precision) THEN to_char((stw2.timestart2)::interval, 'HH24:MI'::text) - ELSE NULL::text - END) AS wed_start2, - max( - CASE - WHEN (stw2.isodow = (3)::double precision) THEN to_char((stw2.timeend2)::interval, 'HH24:MI'::text) - ELSE NULL::text - END) AS wed_end2, - max( - CASE - WHEN (stw2.isodow = (3)::double precision) THEN to_char((stw2.timepause)::interval, 'HH24:MI'::text) - ELSE NULL::text - END) AS wed_pause, - to_char(max( - CASE - WHEN (stw2.isodow = (3)::double precision) THEN ((stw2.time1 + stw2.time2) - (stw2.timepause)::interval) - ELSE NULL::interval - END), 'HH24:MI'::text) AS wed_timetotal, - max( - CASE - WHEN (stw2.isodow = (4)::double precision) THEN stw2.id - ELSE NULL::bigint - END) AS thu_id, - max( - CASE - WHEN (stw2.isodow = (4)::double precision) THEN to_char((stw2.timestart1)::interval, 'HH24:MI'::text) - ELSE NULL::text - END) AS thu_start1, - max( - CASE - WHEN (stw2.isodow = (4)::double precision) THEN to_char((stw2.timeend1)::interval, 'HH24:MI'::text) - ELSE NULL::text - END) AS thu_end1, - max( - CASE - WHEN (stw2.isodow = (4)::double precision) THEN to_char((stw2.timestart2)::interval, 'HH24:MI'::text) - ELSE NULL::text - END) AS thu_start2, - max( - CASE - WHEN (stw2.isodow = (4)::double precision) THEN to_char((stw2.timeend2)::interval, 'HH24:MI'::text) - ELSE NULL::text - END) AS thu_end2, - max( - CASE - WHEN (stw2.isodow = (4)::double precision) THEN to_char((stw2.timepause)::interval, 'HH24:MI'::text) - ELSE NULL::text - END) AS thu_pause, - to_char(max( - CASE - WHEN (stw2.isodow = (4)::double precision) THEN ((stw2.time1 + stw2.time2) - (stw2.timepause)::interval) - ELSE NULL::interval - END), 'HH24:MI'::text) AS thu_timetotal, - max( - CASE - WHEN (stw2.isodow = (5)::double precision) THEN stw2.id - ELSE NULL::bigint - END) AS fri_id, - max( - CASE - WHEN (stw2.isodow = (5)::double precision) THEN to_char((stw2.timestart1)::interval, 'HH24:MI'::text) - ELSE NULL::text - END) AS fri_start1, - max( - CASE - WHEN (stw2.isodow = (5)::double precision) THEN to_char((stw2.timeend1)::interval, 'HH24:MI'::text) - ELSE NULL::text - END) AS fri_end1, - max( - CASE - WHEN (stw2.isodow = (5)::double precision) THEN to_char((stw2.timestart2)::interval, 'HH24:MI'::text) - ELSE NULL::text - END) AS fri_start2, - max( - CASE - WHEN (stw2.isodow = (5)::double precision) THEN to_char((stw2.timeend2)::interval, 'HH24:MI'::text) - ELSE NULL::text - END) AS fri_end2, - max( - CASE - WHEN (stw2.isodow = (5)::double precision) THEN to_char((stw2.timepause)::interval, 'HH24:MI'::text) - ELSE NULL::text - END) AS fri_pause, - to_char(max( - CASE - WHEN (stw2.isodow = (5)::double precision) THEN ((stw2.time1 + stw2.time2) - (stw2.timepause)::interval) - ELSE NULL::interval - END), 'HH24:MI'::text) AS fri_timetotal, - max( - CASE - WHEN (stw2.isodow = (6)::double precision) THEN stw2.id - ELSE NULL::bigint - END) AS sat_id, - max( - CASE - WHEN (stw2.isodow = (6)::double precision) THEN to_char((stw2.timestart1)::interval, 'HH24:MI'::text) - ELSE NULL::text - END) AS sat_start1, - max( - CASE - WHEN (stw2.isodow = (6)::double precision) THEN to_char((stw2.timeend1)::interval, 'HH24:MI'::text) - ELSE NULL::text - END) AS sat_end1, - max( - CASE - WHEN (stw2.isodow = (6)::double precision) THEN to_char((stw2.timestart2)::interval, 'HH24:MI'::text) - ELSE NULL::text - END) AS sat_start2, - max( - CASE - WHEN (stw2.isodow = (6)::double precision) THEN to_char((stw2.timeend2)::interval, 'HH24:MI'::text) - ELSE NULL::text - END) AS sat_end2, - max( - CASE - WHEN (stw2.isodow = (6)::double precision) THEN to_char((stw2.timepause)::interval, 'HH24:MI'::text) - ELSE NULL::text - END) AS sat_pause, - to_char(max( - CASE - WHEN (stw2.isodow = (6)::double precision) THEN ((stw2.time1 + stw2.time2) - (stw2.timepause)::interval) - ELSE NULL::interval - END), 'HH24:MI'::text) AS sat_timetotal, - max( - CASE - WHEN (stw2.isodow = (7)::double precision) THEN stw2.id - ELSE NULL::bigint - END) AS sun_id, - max( - CASE - WHEN (stw2.isodow = (7)::double precision) THEN to_char((stw2.timestart1)::interval, 'HH24:MI'::text) - ELSE NULL::text - END) AS sun_start1, - max( - CASE - WHEN (stw2.isodow = (7)::double precision) THEN to_char((stw2.timeend1)::interval, 'HH24:MI'::text) - ELSE NULL::text - END) AS sun_end1, - max( - CASE - WHEN (stw2.isodow = (7)::double precision) THEN to_char((stw2.timestart2)::interval, 'HH24:MI'::text) - ELSE NULL::text - END) AS sun_start2, - max( - CASE - WHEN (stw2.isodow = (7)::double precision) THEN to_char((stw2.timeend2)::interval, 'HH24:MI'::text) - ELSE NULL::text - END) AS sun_end2, - max( - CASE - WHEN (stw2.isodow = (7)::double precision) THEN to_char((stw2.timepause)::interval, 'HH24:MI'::text) - ELSE NULL::text - END) AS sun_pause, - to_char(max( - CASE - WHEN (stw2.isodow = (7)::double precision) THEN ((stw2.time1 + stw2.time2) - (stw2.timepause)::interval) - ELSE NULL::interval - END), 'HH24:MI'::text) AS sun_timetotal, - to_char(sum(((stw2.time1 + stw2.time2) - (stw2.timepause)::interval)), 'HH24:MI'::text) AS week_timetotal - FROM ( SELECT staffreportperioddays.daydate, - date_part('week'::text, staffreportperioddays.daydate) AS calweek, - (date_trunc('week'::text, (staffreportperioddays.daydate)::timestamp with time zone))::date AS caldate, - date_part('isodow'::text, staffreportperioddays.daydate) AS isodow, - staffreportperioddays.id, - staffreportperioddays.id_staff, - staffreportperioddays.timestart1, - staffreportperioddays.timeend1, - CASE - WHEN (staffreportperioddays.timestart1 > staffreportperioddays.timeend1) THEN ('24:00:00'::time without time zone - ((staffreportperioddays.timestart1 - staffreportperioddays.timeend1))::time without time zone) - ELSE (staffreportperioddays.timeend1 - staffreportperioddays.timestart1) - END AS time1, - staffreportperioddays.timestart2, - staffreportperioddays.timeend2, - CASE - WHEN (staffreportperioddays.timestart2 > staffreportperioddays.timeend2) THEN ('24:00:00'::time without time zone - ((staffreportperioddays.timestart2 - staffreportperioddays.timeend2))::time without time zone) - ELSE (staffreportperioddays.timeend2 - staffreportperioddays.timestart2) - END AS time2, - staffreportperioddays.timepause - FROM portanova.staffreportperioddays) stw2 - GROUP BY stw2.calweek, stw2.caldate, stw2.id_staff; - - -ALTER TABLE portanova.vw_staffplanned_dayweektotals OWNER TO potlu_user; - -- -- Name: vw_staffreportperioddays; Type: VIEW; Schema: portanova; Owner: potlu_user -- @@ -1603,6 +1288,8 @@ CREATE VIEW portanova.vw_staffreportperioddays AS END)::interval, 'HH24:MI'::text) AS interruptionhours, pw.id AS id_week, (((((((pw.calyear || '-'::text) || lpad((pw.calweek)::text, 2, '0'::text)) || '('::text) || to_char((pw.weekstart)::timestamp with time zone, 'DD.MM.YYYY'::text)) || ' - '::text) || to_char((date((pw.weekstart + '6 days'::interval)))::timestamp with time zone, 'DD.MM.YYYY'::text)) || ')'::text) AS dspweek, + ((((((((((((to_char((pw.weekstart)::timestamp with time zone, 'DD.MM.YYYY'::text) || ','::text) || to_char((date((pw.weekstart + '1 day'::interval)))::timestamp with time zone, 'DD.MM.YYYY'::text)) || ','::text) || to_char((date((pw.weekstart + '2 days'::interval)))::timestamp with time zone, 'DD.MM.YYYY'::text)) || ','::text) || to_char((date((pw.weekstart + '3 days'::interval)))::timestamp with time zone, 'DD.MM.YYYY'::text)) || ','::text) || to_char((date((pw.weekstart + '4 days'::interval)))::timestamp with time zone, 'DD.MM.YYYY'::text)) || ','::text) || to_char((date((pw.weekstart + '5 days'::interval)))::timestamp with time zone, 'DD.MM.YYYY'::text)) || ','::text) || to_char((date((pw.weekstart + '6 days'::interval)))::timestamp with time zone, 'DD.MM.YYYY'::text)) AS dspweekdates, + ((((((((((((pw.weekstart || ','::text) || date((pw.weekstart + '1 day'::interval))) || ','::text) || date((pw.weekstart + '2 days'::interval))) || ','::text) || date((pw.weekstart + '3 days'::interval))) || ','::text) || date((pw.weekstart + '4 days'::interval))) || ','::text) || date((pw.weekstart + '5 days'::interval))) || ','::text) || date((pw.weekstart + '6 days'::interval))) AS weekdates, to_char(pw.contracthours, 'HH24:MI'::text) AS week_contracthours, to_char(pw.workhours, 'HH24:MI'::text) AS week_workhours, to_char(pw.vacancyhours, 'HH24:MI'::text) AS week_vacancyhours, @@ -1611,7 +1298,8 @@ CREATE VIEW portanova.vw_staffreportperioddays AS CASE WHEN (pw.diffhours < '00:00:00'::interval) THEN ('-'::text || replace(to_char(pw.diffhours, 'HH24:MI'::text), '-'::text, ''::text)) ELSE to_char(pw.diffhours, 'HH24:MI'::text) - END AS week_diffhours + END AS week_diffhours, + ((pw.calyear || '-'::text) || lpad((pw.calweek)::text, 2, '0'::text)) AS weekident FROM (portanova.staffreportperiodweeks pw LEFT JOIN portanova.staffreportperioddays pd ON (((pw.weekstart = date_trunc('week'::text, (pd.daydate)::timestamp with time zone)) AND (pw.id_staff = pd.id_staff) AND (pw.id_reportperiod = pd.id_reportperiod)))) ORDER BY pd.id_reportperiod, pd.id_staff, pd.daydate; @@ -1631,8 +1319,8 @@ CREATE VIEW portanova.vw_staffreportperiodlist AS to_char(srp.vacancyhours, 'HH24:MI'::text) AS vacancyhours, to_char(srp.recuperationhours, 'HH24:MI'::text) AS recuperationhours, CASE - WHEN (srp.hoursdiff < '00:00:00'::interval) THEN ('-'::text || replace(to_char(srp.hoursdiff, 'HH24:MI'::text), '-'::text, ''::text)) - ELSE to_char(srp.hoursdiff, 'HH24:MI'::text) + WHEN (srp.hoursdiff < '00:00:00'::interval) THEN ('-'::text || replace(to_char((srp.hoursdiff - COALESCE(srp.payedhours, '00:00:00'::interval)), 'HH24:MI'::text), '-'::text, ''::text)) + ELSE to_char((srp.hoursdiff - COALESCE(srp.payedhours, '00:00:00'::interval)), 'HH24:MI'::text) END AS hoursdiff, to_char(srp.totalhours, 'HH24:MI'::text) AS totalhours, srp.id_reportperiod, @@ -1642,579 +1330,87 @@ CREATE VIEW portanova.vw_staffreportperiodlist AS rp.enddate, ((st.surname || ' '::text) || st.prename) AS staffname, st.id_staffgroup, - sgr.groupname + sgr.groupname, + to_char(srp.payedhours, 'HH24:MI'::text) AS payedhours FROM (((portanova.staffreportperiod srp LEFT JOIN portanova.staff st ON ((srp.id_staff = st.id))) LEFT JOIN portanova.reportperiod rp ON ((srp.id_reportperiod = rp.id))) LEFT JOIN portanova.staffgroups sgr ON ((st.id_staffgroup = sgr.id))) - ORDER BY sgr.groupname, st.surname, st.prename, srp.id_staff, rp.startdate, rp.enddate; + ORDER BY st.surname, st.prename, srp.id_staff, rp.startdate, rp.enddate; ALTER TABLE portanova.vw_staffreportperiodlist OWNER TO potlu_user; -- --- Name: vw_staffworkplan_dailylist; Type: VIEW; Schema: portanova; Owner: potlu_user +-- Name: vw_vacancylist; Type: VIEW; Schema: portanova; Owner: potlu_user -- -CREATE VIEW portanova.vw_staffworkplan_dailylist AS - SELECT staffreportperioddays.id, - staffreportperioddays.id_staff, - staffreportperioddays.daydate, - staffreportperioddays.timestart1, - staffreportperioddays.timeend1, - staffreportperioddays.timestart2, - staffreportperioddays.timeend2, - staffreportperioddays.timepause, - staffreportperioddays.interruptionhours, - staffreportperioddays.workhours, - staffreportperioddays.id_recuperationtype, - staffreportperioddays.recuperationhours, - staffreportperioddays.id_vacancytype, - staffreportperioddays.vacancyhours, - staffreportperioddays.trackedhours, - staffreportperioddays.daytype, - staffreportperioddays.contracthours, - staffreportperioddays.id_reportperiod - FROM portanova.staffreportperioddays - ORDER BY staffreportperioddays.id_staff, staffreportperioddays.daydate, staffreportperioddays.id_reportperiod; +CREATE VIEW portanova.vw_vacancylist AS + SELECT vacancytypes.id, + vacancytypes.vacancyname, + vacancytypes.isworktime + FROM portanova.vacancytypes; -ALTER TABLE portanova.vw_staffworkplan_dailylist OWNER TO potlu_user; +ALTER TABLE portanova.vw_vacancylist OWNER TO potlu_user; -- --- Name: vw_staffworkplan_weekly; Type: VIEW; Schema: portanova; Owner: potlu_user +-- Name: workplandays; Type: TABLE; Schema: portanova; Owner: potlu_user -- -CREATE VIEW portanova.vw_staffworkplan_weekly AS - SELECT stw2.calweek, - to_char((stw2.caldate)::timestamp with time zone, 'YYYY'::text) AS calyear, - stw2.caldate AS weekbegin, - public.getdateslist(stw2.caldate, 7) AS dates, - stw2.id_staff, - max( - CASE - WHEN (stw2.isodow = (1)::double precision) THEN stw2.id - ELSE NULL::bigint - END) AS mon_id, - max( - CASE - WHEN (stw2.isodow = (1)::double precision) THEN to_char((stw2.timestart1)::interval, 'HH24:MI'::text) - ELSE NULL::text - END) AS mon_timestart1, - max( - CASE - WHEN (stw2.isodow = (1)::double precision) THEN to_char((stw2.timeend1)::interval, 'HH24:MI'::text) - ELSE NULL::text - END) AS mon_timeend1, - max( - CASE - WHEN (stw2.isodow = (1)::double precision) THEN to_char((stw2.timestart2)::interval, 'HH24:MI'::text) - ELSE NULL::text - END) AS mon_timestart2, - max( - CASE - WHEN (stw2.isodow = (1)::double precision) THEN to_char((stw2.timeend2)::interval, 'HH24:MI'::text) - ELSE NULL::text - END) AS mon_timeend2, - max( - CASE - WHEN (stw2.isodow = (1)::double precision) THEN to_char((stw2.timepause)::interval, 'HH24:MI'::text) - ELSE NULL::text - END) AS mon_timepause, - max( - CASE - WHEN (stw2.isodow = (1)::double precision) THEN to_char((stw2.vacancyhours)::interval, 'HH24:MI'::text) - ELSE NULL::text - END) AS mon_vacancyhours, - max( - CASE - WHEN (stw2.isodow = (1)::double precision) THEN stw2.vacancyname - ELSE NULL::text - END) AS mon_vacancyname, - max( - CASE - WHEN (stw2.isodow = (1)::double precision) THEN stw2.color - ELSE NULL::text - END) AS mon_color, - max( - CASE - WHEN (stw2.isodow = (1)::double precision) THEN stw2.id_vacancytype - ELSE NULL::integer - END) AS mon_vacancytype, - max( - CASE - WHEN (stw2.isodow = (1)::double precision) THEN stw2.daytype - ELSE NULL::integer - END) AS mon_daytype, - to_char(max( - CASE - WHEN (stw2.isodow = (1)::double precision) THEN ((stw2.time1 + stw2.time2) - (stw2.timepause)::interval) - ELSE NULL::interval - END), 'HH24:MI'::text) AS mon_timetotal, - max( - CASE - WHEN (stw2.isodow = (2)::double precision) THEN stw2.id - ELSE NULL::bigint - END) AS tue_id, - max( - CASE - WHEN (stw2.isodow = (2)::double precision) THEN to_char((stw2.timestart1)::interval, 'HH24:MI'::text) - ELSE NULL::text - END) AS tue_timestart1, - max( - CASE - WHEN (stw2.isodow = (2)::double precision) THEN to_char((stw2.timeend1)::interval, 'HH24:MI'::text) - ELSE NULL::text - END) AS tue_timeend1, - max( - CASE - WHEN (stw2.isodow = (2)::double precision) THEN to_char((stw2.timestart2)::interval, 'HH24:MI'::text) - ELSE NULL::text - END) AS tue_timestart2, - max( - CASE - WHEN (stw2.isodow = (2)::double precision) THEN to_char((stw2.timeend2)::interval, 'HH24:MI'::text) - ELSE NULL::text - END) AS tue_timeend2, - max( - CASE - WHEN (stw2.isodow = (2)::double precision) THEN to_char((stw2.timepause)::interval, 'HH24:MI'::text) - ELSE NULL::text - END) AS tue_timepause, - max( - CASE - WHEN (stw2.isodow = (2)::double precision) THEN to_char((stw2.vacancyhours)::interval, 'HH24:MI'::text) - ELSE NULL::text - END) AS tue_vacancyhours, - max( - CASE - WHEN (stw2.isodow = (2)::double precision) THEN stw2.id_vacancytype - ELSE NULL::integer - END) AS tue_vacancytype, - max( - CASE - WHEN (stw2.isodow = (2)::double precision) THEN stw2.vacancyname - ELSE NULL::text - END) AS tue_vacancyname, - max( - CASE - WHEN (stw2.isodow = (2)::double precision) THEN stw2.color - ELSE NULL::text - END) AS tue_color, - max( - CASE - WHEN (stw2.isodow = (2)::double precision) THEN stw2.daytype - ELSE NULL::integer - END) AS tue_daytype, - to_char(max( - CASE - WHEN (stw2.isodow = (2)::double precision) THEN ((stw2.time1 + stw2.time2) - (stw2.timepause)::interval) - ELSE NULL::interval - END), 'HH24:MI'::text) AS tue_timetotal, - max( - CASE - WHEN (stw2.isodow = (3)::double precision) THEN stw2.id - ELSE NULL::bigint - END) AS wed_id, - max( - CASE - WHEN (stw2.isodow = (3)::double precision) THEN to_char((stw2.timestart1)::interval, 'HH24:MI'::text) - ELSE NULL::text - END) AS wed_timestart1, - max( - CASE - WHEN (stw2.isodow = (3)::double precision) THEN to_char((stw2.timeend1)::interval, 'HH24:MI'::text) - ELSE NULL::text - END) AS wed_timeend1, - max( - CASE - WHEN (stw2.isodow = (3)::double precision) THEN to_char((stw2.timestart2)::interval, 'HH24:MI'::text) - ELSE NULL::text - END) AS wed_timestart2, - max( - CASE - WHEN (stw2.isodow = (3)::double precision) THEN to_char((stw2.timeend2)::interval, 'HH24:MI'::text) - ELSE NULL::text - END) AS wed_timeend2, - max( - CASE - WHEN (stw2.isodow = (3)::double precision) THEN to_char((stw2.timepause)::interval, 'HH24:MI'::text) - ELSE NULL::text - END) AS wed_timepause, - max( - CASE - WHEN (stw2.isodow = (3)::double precision) THEN to_char((stw2.vacancyhours)::interval, 'HH24:MI'::text) - ELSE NULL::text - END) AS wed_vacancyhours, - max( - CASE - WHEN (stw2.isodow = (3)::double precision) THEN stw2.id_vacancytype - ELSE NULL::integer - END) AS wed_vacancytype, - max( - CASE - WHEN (stw2.isodow = (3)::double precision) THEN stw2.vacancyname - ELSE NULL::text - END) AS wed_vacancyname, - max( - CASE - WHEN (stw2.isodow = (3)::double precision) THEN stw2.color - ELSE NULL::text - END) AS wed_color, - max( - CASE - WHEN (stw2.isodow = (3)::double precision) THEN stw2.daytype - ELSE NULL::integer - END) AS wed_daytype, - to_char(max( - CASE - WHEN (stw2.isodow = (3)::double precision) THEN ((stw2.time1 + stw2.time2) - (stw2.timepause)::interval) - ELSE NULL::interval - END), 'HH24:MI'::text) AS wed_timetotal, - max( - CASE - WHEN (stw2.isodow = (4)::double precision) THEN stw2.id - ELSE NULL::bigint - END) AS thu_id, - max( - CASE - WHEN (stw2.isodow = (4)::double precision) THEN to_char((stw2.timestart1)::interval, 'HH24:MI'::text) - ELSE NULL::text - END) AS thu_timestart1, - max( - CASE - WHEN (stw2.isodow = (4)::double precision) THEN to_char((stw2.timeend1)::interval, 'HH24:MI'::text) - ELSE NULL::text - END) AS thu_timeend1, - max( - CASE - WHEN (stw2.isodow = (4)::double precision) THEN to_char((stw2.timestart2)::interval, 'HH24:MI'::text) - ELSE NULL::text - END) AS thu_timestart2, - max( - CASE - WHEN (stw2.isodow = (4)::double precision) THEN to_char((stw2.timeend2)::interval, 'HH24:MI'::text) - ELSE NULL::text - END) AS thu_timeend2, - max( - CASE - WHEN (stw2.isodow = (4)::double precision) THEN to_char((stw2.timepause)::interval, 'HH24:MI'::text) - ELSE NULL::text - END) AS thu_timepause, - max( - CASE - WHEN (stw2.isodow = (4)::double precision) THEN to_char((stw2.vacancyhours)::interval, 'HH24:MI'::text) - ELSE NULL::text - END) AS thu_vacancyhours, - max( - CASE - WHEN (stw2.isodow = (4)::double precision) THEN stw2.id_vacancytype - ELSE NULL::integer - END) AS thu_vacancytype, - max( - CASE - WHEN (stw2.isodow = (4)::double precision) THEN stw2.vacancyname - ELSE NULL::text - END) AS thu_vacancyname, - max( - CASE - WHEN (stw2.isodow = (4)::double precision) THEN stw2.color - ELSE NULL::text - END) AS thu_color, - max( - CASE - WHEN (stw2.isodow = (4)::double precision) THEN stw2.daytype - ELSE NULL::integer - END) AS thu_daytype, - to_char(max( - CASE - WHEN (stw2.isodow = (4)::double precision) THEN ((stw2.time1 + stw2.time2) - (stw2.timepause)::interval) - ELSE NULL::interval - END), 'HH24:MI'::text) AS thu_timetotal, - max( - CASE - WHEN (stw2.isodow = (5)::double precision) THEN stw2.id - ELSE NULL::bigint - END) AS fri_id, - max( - CASE - WHEN (stw2.isodow = (5)::double precision) THEN to_char((stw2.timestart1)::interval, 'HH24:MI'::text) - ELSE NULL::text - END) AS fri_timestart1, - max( - CASE - WHEN (stw2.isodow = (5)::double precision) THEN to_char((stw2.timeend1)::interval, 'HH24:MI'::text) - ELSE NULL::text - END) AS fri_timeend1, - max( - CASE - WHEN (stw2.isodow = (5)::double precision) THEN to_char((stw2.timestart2)::interval, 'HH24:MI'::text) - ELSE NULL::text - END) AS fri_timestart2, - max( - CASE - WHEN (stw2.isodow = (5)::double precision) THEN to_char((stw2.timeend2)::interval, 'HH24:MI'::text) - ELSE NULL::text - END) AS fri_timeend2, - max( - CASE - WHEN (stw2.isodow = (5)::double precision) THEN to_char((stw2.timepause)::interval, 'HH24:MI'::text) - ELSE NULL::text - END) AS fri_timepause, - max( - CASE - WHEN (stw2.isodow = (5)::double precision) THEN to_char((stw2.vacancyhours)::interval, 'HH24:MI'::text) - ELSE NULL::text - END) AS fri_vacancyhours, - max( - CASE - WHEN (stw2.isodow = (5)::double precision) THEN stw2.id_vacancytype - ELSE NULL::integer - END) AS fri_vacancytype, - max( - CASE - WHEN (stw2.isodow = (5)::double precision) THEN stw2.vacancyname - ELSE NULL::text - END) AS fri_vacancyname, - max( - CASE - WHEN (stw2.isodow = (5)::double precision) THEN stw2.color - ELSE NULL::text - END) AS fri_color, - max( - CASE - WHEN (stw2.isodow = (5)::double precision) THEN stw2.daytype - ELSE NULL::integer - END) AS fri_daytype, - to_char(max( - CASE - WHEN (stw2.isodow = (5)::double precision) THEN ((stw2.time1 + stw2.time2) - (stw2.timepause)::interval) - ELSE NULL::interval - END), 'HH24:MI'::text) AS fri_timetotal, - max( - CASE - WHEN (stw2.isodow = (6)::double precision) THEN stw2.id - ELSE NULL::bigint - END) AS sat_id, - max( - CASE - WHEN (stw2.isodow = (6)::double precision) THEN to_char((stw2.timestart1)::interval, 'HH24:MI'::text) - ELSE NULL::text - END) AS sat_timestart1, - max( - CASE - WHEN (stw2.isodow = (6)::double precision) THEN to_char((stw2.timeend1)::interval, 'HH24:MI'::text) - ELSE NULL::text - END) AS sat_timeend1, - max( - CASE - WHEN (stw2.isodow = (6)::double precision) THEN to_char((stw2.timestart2)::interval, 'HH24:MI'::text) - ELSE NULL::text - END) AS sat_timestart2, - max( - CASE - WHEN (stw2.isodow = (6)::double precision) THEN to_char((stw2.timeend2)::interval, 'HH24:MI'::text) - ELSE NULL::text - END) AS sat_timeend2, - max( - CASE - WHEN (stw2.isodow = (6)::double precision) THEN to_char((stw2.timepause)::interval, 'HH24:MI'::text) - ELSE NULL::text - END) AS sat_timepause, - max( - CASE - WHEN (stw2.isodow = (6)::double precision) THEN to_char((stw2.vacancyhours)::interval, 'HH24:MI'::text) - ELSE NULL::text - END) AS sat_vacancyhours, - max( - CASE - WHEN (stw2.isodow = (6)::double precision) THEN stw2.id_vacancytype - ELSE NULL::integer - END) AS sat_vacancytype, - max( - CASE - WHEN (stw2.isodow = (6)::double precision) THEN stw2.vacancyname - ELSE NULL::text - END) AS sat_vacancyname, - max( - CASE - WHEN (stw2.isodow = (6)::double precision) THEN stw2.color - ELSE NULL::text - END) AS sat_color, - max( - CASE - WHEN (stw2.isodow = (6)::double precision) THEN stw2.daytype - ELSE NULL::integer - END) AS sat_daytype, - to_char(max( - CASE - WHEN (stw2.isodow = (6)::double precision) THEN ((stw2.time1 + stw2.time2) - (stw2.timepause)::interval) - ELSE NULL::interval - END), 'HH24:MI'::text) AS sat_timetotal, - max( - CASE - WHEN (stw2.isodow = (7)::double precision) THEN stw2.id - ELSE NULL::bigint - END) AS sun_id, - max( - CASE - WHEN (stw2.isodow = (7)::double precision) THEN to_char((stw2.timestart1)::interval, 'HH24:MI'::text) - ELSE NULL::text - END) AS sun_timestart1, - max( - CASE - WHEN (stw2.isodow = (7)::double precision) THEN to_char((stw2.timeend1)::interval, 'HH24:MI'::text) - ELSE NULL::text - END) AS sun_timeend1, - max( - CASE - WHEN (stw2.isodow = (7)::double precision) THEN to_char((stw2.timestart2)::interval, 'HH24:MI'::text) - ELSE NULL::text - END) AS sun_timestart2, - max( - CASE - WHEN (stw2.isodow = (7)::double precision) THEN to_char((stw2.timeend2)::interval, 'HH24:MI'::text) - ELSE NULL::text - END) AS sun_timeend2, - max( - CASE - WHEN (stw2.isodow = (7)::double precision) THEN to_char((stw2.timepause)::interval, 'HH24:MI'::text) - ELSE NULL::text - END) AS sun_timepause, - max( - CASE - WHEN (stw2.isodow = (7)::double precision) THEN to_char((stw2.vacancyhours)::interval, 'HH24:MI'::text) - ELSE NULL::text - END) AS sun_vacancyhours, - max( - CASE - WHEN (stw2.isodow = (7)::double precision) THEN stw2.id_vacancytype - ELSE NULL::integer - END) AS sun_vacancytype, - max( - CASE - WHEN (stw2.isodow = (7)::double precision) THEN stw2.vacancyname - ELSE NULL::text - END) AS sun_vacancyname, - max( - CASE - WHEN (stw2.isodow = (7)::double precision) THEN stw2.color - ELSE NULL::text - END) AS sun_color, - max( - CASE - WHEN (stw2.isodow = (7)::double precision) THEN stw2.daytype - ELSE NULL::integer - END) AS sun_daytype, - to_char(max( - CASE - WHEN (stw2.isodow = (7)::double precision) THEN ((stw2.time1 + stw2.time2) - (stw2.timepause)::interval) - ELSE NULL::interval - END), 'HH24:MI'::text) AS sun_timetotal, - to_char(sum(((stw2.time1 + stw2.time2) - (stw2.timepause)::interval)), 'HH24:MI'::text) AS week_timetotal, - CASE - WHEN ((stw2.calweek IS NOT NULL) AND (stw2.id_staff IS NOT NULL)) THEN public.weekvacancy('portanova'::text, stw2.calweek, stw2.id_staff) - ELSE NULL::text - END AS week_vacancy, - stw2.staffname AS dspstaffname - FROM ( SELECT stw.daydate, - date_part('week'::text, stw.daydate) AS calweek, - (date_trunc('week'::text, (stw.daydate)::timestamp with time zone))::date AS caldate, - date_part('isodow'::text, stw.daydate) AS isodow, - stw.id, - stw.id_staff, - ((st.surname || ' '::text) || st.prename) AS staffname, - stw.timestart1, - stw.timeend1, - stw.vacancyhours, - stw.id_vacancytype, - vt.color, - vt.vacancyname, - stw.daytype, - CASE - WHEN (stw.timestart1 > stw.timeend1) THEN ('24:00:00'::time without time zone - ((stw.timestart1 - stw.timeend1))::time without time zone) - ELSE (stw.timeend1 - stw.timestart1) - END AS time1, - stw.timestart2, - stw.timeend2, - CASE - WHEN (stw.timestart2 > stw.timeend2) THEN ('24:00:00'::time without time zone - ((stw.timestart2 - stw.timeend2))::time without time zone) - ELSE (stw.timeend2 - stw.timestart2) - END AS time2, - stw.timepause - FROM ((portanova.staffreportperioddays stw - LEFT JOIN portanova.staff st ON ((stw.id_staff = st.id))) - LEFT JOIN portanova.vacancytypes vt ON ((stw.id_vacancytype = vt.id)))) stw2 - GROUP BY stw2.calweek, stw2.caldate, stw2.id_staff, stw2.staffname; - - -ALTER TABLE portanova.vw_staffworkplan_weekly OWNER TO potlu_user; - --- --- Name: vw_staffworkplandata; Type: VIEW; Schema: portanova; Owner: potlu_user --- - -CREATE VIEW portanova.vw_staffworkplandata AS - SELECT date_part('isoyear'::text, swp.daydate) AS calyear, - date_part('week'::text, swp.daydate) AS calweek, - to_char((swp.daydate)::timestamp with time zone, 'dy'::text) AS weekday, - swp.id, - swp.id_staff, - swp.daydate, - ((st.surname || ' '::text) || st.prename) AS staffname, - to_char((swp.timestart1)::interval, 'HH24:MI'::text) AS timestart1, - to_char((swp.timeend1)::interval, 'HH24:MI'::text) AS timeend1, - to_char((swp.timestart2)::interval, 'HH24:MI'::text) AS timestart2, - to_char((swp.timeend2)::interval, 'HH24:MI'::text) AS timeend2, - to_char((swp.timepause)::interval, 'HH24:MI'::text) AS timepause, - to_char((swp.vacancyhours)::interval, 'HH24:MI'::text) AS vacancyhours, - to_char((swp.contracthours)::interval, 'HH24:MI'::text) AS contracthours, - to_char((swp.interruptionhours)::interval, 'HH24:MI'::text) AS interruptionhours, - swp.id_staffgroup, - swp.id_vacancytype, - swp.id_recuperationtype, - swp.daytype, - to_char((swp.workhours)::interval, 'HH24:MI'::text) AS totalhours, - to_char((swp.recuperationhours)::interval, 'HH24:MI'::text) AS recuperationhours, - to_char((swp.trackedhours)::interval, 'HH24:MI'::text) AS trackedhours, - swp.id_reportperiod - FROM (portanova.staffreportperioddays swp - JOIN portanova.staff st ON ((swp.id_staff = st.id))); - - -ALTER TABLE portanova.vw_staffworkplandata OWNER TO potlu_user; - --- --- Name: vw_staffworkplanstafflist; Type: VIEW; Schema: portanova; Owner: potlu_user --- - -CREATE VIEW portanova.vw_staffworkplanstafflist AS - SELECT sc.id AS id_staffcontract, - st.id AS id_staff, - ((st.surname || ' '::text) || st.prename) AS staffname, - sc.startdate, - sc.enddate, - sc.id_staffgroup, - sc.weekhours, - sc.weekdays - FROM (portanova.staff st - LEFT JOIN portanova.staffcontract sc ON ((st.id = sc.id_staff))); +CREATE TABLE portanova.workplandays ( + id integer NOT NULL, + id_workplan integer, + weekday integer, + start1 time without time zone, + end1 time without time zone, + start2 time without time zone, + end2 time without time zone, + pause time without time zone +); -ALTER TABLE portanova.vw_staffworkplanstafflist OWNER TO potlu_user; +ALTER TABLE portanova.workplandays OWNER TO potlu_user; -- --- Name: vw_vacancylist; Type: VIEW; Schema: portanova; Owner: potlu_user +-- Name: vw_workplandaysdata; Type: VIEW; Schema: portanova; Owner: potlu_user -- -CREATE VIEW portanova.vw_vacancylist AS - SELECT vacancytypes.id, - vacancytypes.vacancyname, - vacancytypes.isworktime - FROM portanova.vacancytypes; +CREATE VIEW portanova.vw_workplandaysdata AS + SELECT workplandays.id, + workplandays.id_workplan, + workplandays.weekday, + workplandays.start1, + workplandays.end1, + workplandays.start2, + workplandays.end2, + workplandays.pause + FROM portanova.workplandays; -ALTER TABLE portanova.vw_vacancylist OWNER TO potlu_user; +ALTER TABLE portanova.vw_workplandaysdata OWNER TO potlu_user; + +-- +-- Name: vw_workplandayslist; Type: VIEW; Schema: portanova; Owner: potlu_user +-- + +CREATE VIEW portanova.vw_workplandayslist AS +SELECT + NULL::text AS workplan, + NULL::text AS weekhours, + NULL::integer AS id, + NULL::integer AS id_workplan, + NULL::integer AS weekday, + NULL::text AS start1, + NULL::text AS end1, + NULL::text AS start2, + NULL::text AS end2, + NULL::text AS pause, + NULL::text AS dayhours, + NULL::bigint AS staffcount; + + +ALTER TABLE portanova.vw_workplandayslist OWNER TO potlu_user; -- -- Name: vw_workplanlist; Type: VIEW; Schema: portanova; Owner: potlu_user @@ -2229,143 +1425,65 @@ CREATE VIEW portanova.vw_workplanlist AS ALTER TABLE portanova.vw_workplanlist OWNER TO potlu_user; -- --- Name: vw_workplansdata; Type: VIEW; Schema: portanova; Owner: potlu_user +-- Name: worktimes; Type: TABLE; Schema: portanova; Owner: potlu_user -- -CREATE VIEW portanova.vw_workplansdata AS - SELECT workplans.id, - workplans.workplan, - to_char(((((((COALESCE(( - CASE - WHEN (workplans.mon_timeend2 IS NOT NULL) THEN ((workplans.mon_timeend2 - workplans.mon_timestart1) - (workplans.mon_timestart2 - workplans.mon_timeend1)) - ELSE (workplans.mon_timeend1 - workplans.mon_timestart1) - END - COALESCE((workplans.mon_timepause)::interval, '00:00:00'::interval)), '00:00:00'::interval) + COALESCE(( - CASE - WHEN (workplans.tue_timeend2 IS NOT NULL) THEN ((workplans.tue_timeend2 - workplans.tue_timestart1) - (workplans.tue_timestart2 - workplans.tue_timeend1)) - ELSE (workplans.tue_timeend1 - workplans.tue_timestart1) - END - COALESCE((workplans.tue_timepause)::interval, '00:00:00'::interval)), '00:00:00'::interval)) + COALESCE(( - CASE - WHEN (workplans.wed_timeend2 IS NOT NULL) THEN ((workplans.wed_timeend2 - workplans.wed_timestart1) - (workplans.wed_timestart2 - workplans.wed_timeend1)) - ELSE (workplans.wed_timeend1 - workplans.wed_timestart1) - END - COALESCE((workplans.wed_timepause)::interval, '00:00:00'::interval)), '00:00:00'::interval)) + COALESCE(( - CASE - WHEN (workplans.thu_timeend2 IS NOT NULL) THEN ((workplans.thu_timeend2 - workplans.thu_timestart1) - (workplans.thu_timestart2 - workplans.thu_timeend1)) - ELSE (workplans.thu_timeend1 - workplans.thu_timestart1) - END - COALESCE((workplans.thu_timepause)::interval, '00:00:00'::interval)), '00:00:00'::interval)) + COALESCE(( - CASE - WHEN (workplans.fri_timeend2 IS NOT NULL) THEN ((workplans.fri_timeend2 - workplans.fri_timestart1) - (workplans.fri_timestart2 - workplans.fri_timeend1)) - ELSE (workplans.fri_timeend1 - workplans.fri_timestart1) - END - COALESCE((workplans.fri_timepause)::interval, '00:00:00'::interval)), '00:00:00'::interval)) + COALESCE(( - CASE - WHEN (workplans.sat_timeend2 IS NOT NULL) THEN ((workplans.sat_timeend2 - workplans.sat_timestart1) - (workplans.sat_timestart2 - workplans.sat_timeend1)) - ELSE (workplans.sat_timeend1 - workplans.sat_timestart1) - END - COALESCE((workplans.sat_timepause)::interval, '00:00:00'::interval)), '00:00:00'::interval)) + COALESCE(( - CASE - WHEN (workplans.sun_timeend2 IS NOT NULL) THEN ((workplans.sun_timeend2 - workplans.sun_timestart1) - (workplans.sun_timestart2 - workplans.sun_timeend1)) - ELSE (workplans.sun_timeend1 - workplans.sun_timestart1) - END - COALESCE((workplans.sun_timepause)::interval, '00:00:00'::interval)), '00:00:00'::interval)), 'HH24:MI'::text) AS weektotal, - to_char((workplans.mon_timestart1)::interval, 'HH24:MI'::text) AS mon_timestart1, - to_char((workplans.mon_timeend1)::interval, 'HH24:MI'::text) AS mon_timeend1, - to_char((workplans.mon_timestart2)::interval, 'HH24:MI'::text) AS mon_timestart2, - to_char((workplans.mon_timeend2)::interval, 'HH24:MI'::text) AS mon_timeend2, - to_char((workplans.mon_timepause)::interval, 'HH24:MI'::text) AS mon_timepause, - to_char((workplans.mon_timestart2 - workplans.mon_timeend1), 'HH24:MI'::text) AS mon_interruption, - to_char(( - CASE - WHEN (workplans.mon_timeend2 IS NOT NULL) THEN ((workplans.mon_timeend2 - workplans.mon_timestart1) - (workplans.mon_timestart2 - workplans.mon_timeend1)) - ELSE (workplans.mon_timeend1 - workplans.mon_timestart1) - END - COALESCE((workplans.mon_timepause)::interval, '00:00:00'::interval)), 'HH24:MI'::text) AS mon_total, - to_char((workplans.tue_timestart1)::interval, 'HH24:MI'::text) AS tue_timestart1, - to_char((workplans.tue_timeend1)::interval, 'HH24:MI'::text) AS tue_timeend1, - to_char((workplans.tue_timestart2)::interval, 'HH24:MI'::text) AS tue_timestart2, - to_char((workplans.tue_timeend2)::interval, 'HH24:MI'::text) AS tue_timeend2, - to_char((workplans.tue_timepause)::interval, 'HH24:MI'::text) AS tue_timepause, - to_char((workplans.tue_timestart2 - workplans.tue_timeend1), 'HH24:MI'::text) AS tue_interruption, - to_char(( - CASE - WHEN (workplans.tue_timeend2 IS NOT NULL) THEN ((workplans.tue_timeend2 - workplans.tue_timestart1) - (workplans.tue_timestart2 - workplans.tue_timeend1)) - ELSE (workplans.tue_timeend1 - workplans.tue_timestart1) - END - COALESCE((workplans.tue_timepause)::interval, '00:00:00'::interval)), 'HH24:MI'::text) AS tue_total, - to_char((workplans.wed_timestart1)::interval, 'HH24:MI'::text) AS wed_timestart1, - to_char((workplans.wed_timeend1)::interval, 'HH24:MI'::text) AS wed_timeend1, - to_char((workplans.wed_timestart2)::interval, 'HH24:MI'::text) AS wed_timestart2, - to_char((workplans.wed_timeend2)::interval, 'HH24:MI'::text) AS wed_timeend2, - to_char((workplans.wed_timepause)::interval, 'HH24:MI'::text) AS wed_timepause, - to_char((workplans.wed_timestart2 - workplans.wed_timeend1), 'HH24:MI'::text) AS wed_interruption, - to_char(( - CASE - WHEN (workplans.wed_timeend2 IS NOT NULL) THEN ((workplans.wed_timeend2 - workplans.wed_timestart1) - (workplans.wed_timestart2 - workplans.wed_timeend1)) - ELSE (workplans.wed_timeend1 - workplans.wed_timestart1) - END - COALESCE((workplans.wed_timepause)::interval, '00:00:00'::interval)), 'HH24:MI'::text) AS wed_total, - to_char((workplans.thu_timestart1)::interval, 'HH24:MI'::text) AS thu_timestart1, - to_char((workplans.thu_timeend1)::interval, 'HH24:MI'::text) AS thu_timeend1, - to_char((workplans.thu_timestart2)::interval, 'HH24:MI'::text) AS thu_timestart2, - to_char((workplans.thu_timeend2)::interval, 'HH24:MI'::text) AS thu_timeend2, - to_char((workplans.thu_timepause)::interval, 'HH24:MI'::text) AS thu_timepause, - to_char((workplans.thu_timestart2 - workplans.thu_timeend1), 'HH24:MI'::text) AS thu_interruption, - to_char(( - CASE - WHEN (workplans.thu_timeend2 IS NOT NULL) THEN ((workplans.thu_timeend2 - workplans.thu_timestart1) - (workplans.thu_timestart2 - workplans.thu_timeend1)) - ELSE (workplans.thu_timeend1 - workplans.thu_timestart1) - END - COALESCE((workplans.thu_timepause)::interval, '00:00:00'::interval)), 'HH24:MI'::text) AS thu_total, - to_char((workplans.fri_timestart1)::interval, 'HH24:MI'::text) AS fri_timestart1, - to_char((workplans.fri_timeend1)::interval, 'HH24:MI'::text) AS fri_timeend1, - to_char((workplans.fri_timestart2)::interval, 'HH24:MI'::text) AS fri_timestart2, - to_char((workplans.fri_timeend2)::interval, 'HH24:MI'::text) AS fri_timeend2, - to_char((workplans.fri_timepause)::interval, 'HH24:MI'::text) AS fri_timepause, - to_char((workplans.fri_timestart2 - workplans.fri_timeend1), 'HH24:MI'::text) AS fri_interruption, - to_char(( - CASE - WHEN (workplans.fri_timeend2 IS NOT NULL) THEN ((workplans.fri_timeend2 - workplans.fri_timestart1) - (workplans.fri_timestart2 - workplans.fri_timeend1)) - ELSE (workplans.fri_timeend1 - workplans.fri_timestart1) - END - COALESCE((workplans.fri_timepause)::interval, '00:00:00'::interval)), 'HH24:MI'::text) AS fri_total, - to_char((workplans.sat_timestart1)::interval, 'HH24:MI'::text) AS sat_timestart1, - to_char((workplans.sat_timeend1)::interval, 'HH24:MI'::text) AS sat_timeend1, - to_char((workplans.sat_timestart2)::interval, 'HH24:MI'::text) AS sat_timestart2, - to_char((workplans.sat_timeend2)::interval, 'HH24:MI'::text) AS sat_timeend2, - to_char((workplans.sat_timepause)::interval, 'HH24:MI'::text) AS sat_timepause, - to_char((workplans.sat_timestart2 - workplans.sat_timeend1), 'HH24:MI'::text) AS sat_interruption, - to_char(( - CASE - WHEN (workplans.sat_timeend2 IS NOT NULL) THEN ((workplans.sat_timeend2 - workplans.sat_timestart1) - (workplans.sat_timestart2 - workplans.sat_timeend1)) - ELSE (workplans.sat_timeend1 - workplans.sat_timestart1) - END - COALESCE((workplans.sat_timepause)::interval, '00:00:00'::interval)), 'HH24:MI'::text) AS sat_total, - to_char((workplans.sun_timestart1)::interval, 'HH24:MI'::text) AS sun_timestart1, - to_char((workplans.sun_timeend1)::interval, 'HH24:MI'::text) AS sun_timeend1, - to_char((workplans.sun_timestart2)::interval, 'HH24:MI'::text) AS sun_timestart2, - to_char((workplans.sun_timeend2)::interval, 'HH24:MI'::text) AS sun_timeend2, - to_char((workplans.sun_timepause)::interval, 'HH24:MI'::text) AS sun_timepause, - to_char((workplans.sun_timestart2 - workplans.sat_timeend1), 'HH24:MI'::text) AS sun_interruption, - to_char(( - CASE - WHEN (workplans.sun_timeend2 IS NOT NULL) THEN ((workplans.sun_timeend2 - workplans.sun_timestart1) - (workplans.sun_timestart2 - workplans.sun_timeend1)) - ELSE (workplans.sun_timeend1 - workplans.sun_timestart1) - END - COALESCE((workplans.sun_timepause)::interval, '00:00:00'::interval)), 'HH24:MI'::text) AS sun_total - FROM portanova.workplans; +CREATE TABLE portanova.worktimes ( + id integer NOT NULL, + startdate date, + enddate date, + defaultdayhours interval, + maxdayhours interval, + defaultweekhours interval, + maxweekhours interval, + maxinterruptionhours interval, + isdefault boolean +); -ALTER TABLE portanova.vw_workplansdata OWNER TO potlu_user; +ALTER TABLE portanova.worktimes OWNER TO potlu_user; -- --- Name: vw_workplans; Type: VIEW; Schema: portanova; Owner: potlu_user +-- Name: vw_worktimeslist; Type: VIEW; Schema: portanova; Owner: potlu_user -- -CREATE VIEW portanova.vw_workplans AS - SELECT workplans.id, - workplans.workplan, - vw_workplansdata.weektotal, - ((((COALESCE(((to_char((workplans.mon_timestart1)::interval, 'HH24:MI'::text) || ' - '::text) || to_char((workplans.mon_timeend1)::interval, 'HH24:MI'::text)), ''::text) || COALESCE(((('
'::text || to_char((workplans.mon_timestart2)::interval, 'HH24:MI'::text)) || ' - '::text) || to_char((workplans.mon_timeend2)::interval, 'HH24:MI'::text)), ''::text)) || COALESCE((('
'::text || 'Pause: '::text) || to_char((workplans.mon_timepause)::interval, 'HH24:MI'::text)), ''::text)) || COALESCE((('
'::text || 'Coupure: '::text) || vw_workplansdata.mon_interruption), ''::text)) || COALESCE((('
'::text || 'Total: '::text) || vw_workplansdata.mon_total), ''::text)) AS dspmontimes, - ((((COALESCE(((to_char((workplans.tue_timestart1)::interval, 'HH24:MI'::text) || ' - '::text) || to_char((workplans.tue_timeend1)::interval, 'HH24:MI'::text)), ''::text) || COALESCE(((('
'::text || to_char((workplans.tue_timestart2)::interval, 'HH24:MI'::text)) || ' - '::text) || to_char((workplans.tue_timeend2)::interval, 'HH24:MI'::text)), ''::text)) || COALESCE((('
'::text || 'Pause: '::text) || to_char((workplans.tue_timepause)::interval, 'HH24:MI'::text)), ''::text)) || COALESCE((('
'::text || 'Coupure: '::text) || vw_workplansdata.tue_interruption), ''::text)) || COALESCE((('
'::text || 'Total: '::text) || vw_workplansdata.tue_total), ''::text)) AS dsptuetimes, - ((((COALESCE(((to_char((workplans.wed_timestart1)::interval, 'HH24:MI'::text) || ' - '::text) || to_char((workplans.wed_timeend1)::interval, 'HH24:MI'::text)), ''::text) || COALESCE(((('
'::text || to_char((workplans.wed_timestart2)::interval, 'HH24:MI'::text)) || ' - '::text) || to_char((workplans.wed_timeend2)::interval, 'HH24:MI'::text)), ''::text)) || COALESCE((('
'::text || 'Pause: '::text) || to_char((workplans.wed_timepause)::interval, 'HH24:MI'::text)), ''::text)) || COALESCE((('
'::text || 'Coupure: '::text) || vw_workplansdata.wed_interruption), ''::text)) || COALESCE((('
'::text || 'Total: '::text) || vw_workplansdata.wed_total), ''::text)) AS dspwedtimes, - ((((COALESCE(((to_char((workplans.thu_timestart1)::interval, 'HH24:MI'::text) || ' - '::text) || to_char((workplans.thu_timeend1)::interval, 'HH24:MI'::text)), ''::text) || COALESCE(((('
'::text || to_char((workplans.thu_timestart2)::interval, 'HH24:MI'::text)) || ' - '::text) || to_char((workplans.thu_timeend2)::interval, 'HH24:MI'::text)), ''::text)) || COALESCE((('
'::text || 'Pause: '::text) || to_char((workplans.thu_timepause)::interval, 'HH24:MI'::text)), ''::text)) || COALESCE((('
'::text || 'Coupure: '::text) || vw_workplansdata.thu_interruption), ''::text)) || COALESCE((('
'::text || 'Total: '::text) || vw_workplansdata.thu_total), ''::text)) AS dspthutimes, - ((((COALESCE(((to_char((workplans.fri_timestart1)::interval, 'HH24:MI'::text) || ' -'::text) || to_char((workplans.fri_timeend1)::interval, 'HH24:MI'::text)), ''::text) || COALESCE(((('
'::text || to_char((workplans.fri_timestart2)::interval, 'HH24:MI'::text)) || ' - '::text) || to_char((workplans.fri_timeend2)::interval, 'HH24:MI'::text)), ''::text)) || COALESCE((('
'::text || 'Pause: '::text) || to_char((workplans.fri_timepause)::interval, 'HH24:MI'::text)), ''::text)) || COALESCE((('
'::text || 'Coupure: '::text) || vw_workplansdata.fri_interruption), ''::text)) || COALESCE((('
'::text || 'Total: '::text) || vw_workplansdata.fri_total), ''::text)) AS dspfritimes, - ((((COALESCE(((to_char((workplans.sat_timestart1)::interval, 'HH24:MI'::text) || ' - '::text) || to_char((workplans.sat_timeend1)::interval, 'HH24:MI'::text)), ''::text) || COALESCE(((('
'::text || to_char((workplans.sat_timestart2)::interval, 'HH24:MI'::text)) || ' - '::text) || to_char((workplans.sat_timeend2)::interval, 'HH24:MI'::text)), ''::text)) || COALESCE((('
'::text || 'Pause: '::text) || to_char((workplans.sat_timepause)::interval, 'HH24:MI'::text)), ''::text)) || COALESCE((('
'::text || 'Coupure: '::text) || vw_workplansdata.sat_interruption), ''::text)) || COALESCE((('
'::text || 'Total: '::text) || vw_workplansdata.sat_total), ''::text)) AS dspsattimes, - ((((COALESCE(((to_char((workplans.sun_timestart1)::interval, 'HH24:MI'::text) || ' - '::text) || to_char((workplans.sun_timeend1)::interval, 'HH24:MI'::text)), ''::text) || COALESCE(((('
'::text || to_char((workplans.sun_timestart2)::interval, 'HH24:MI'::text)) || ' - '::text) || to_char((workplans.sun_timeend2)::interval, 'HH24:MI'::text)), ''::text)) || COALESCE((('
'::text || 'Pause: '::text) || to_char((workplans.sun_timepause)::interval, 'HH24:MI'::text)), ''::text)) || COALESCE((('
'::text || 'Coupure: '::text) || vw_workplansdata.sun_interruption), ''::text)) || COALESCE((('
'::text || 'Total: '::text) || vw_workplansdata.sun_total), ''::text)) AS dspsuntimes - FROM (portanova.workplans - JOIN portanova.vw_workplansdata ON ((workplans.id = vw_workplansdata.id))); +CREATE VIEW portanova.vw_worktimeslist AS + SELECT worktimes.id, + worktimes.startdate, + worktimes.enddate, + worktimes.isdefault, + to_char(worktimes.defaultdayhours, 'HH24:MI'::text) AS defaultdayhours, + to_char(worktimes.maxdayhours, 'HH24:MI'::text) AS maxdayhours, + to_char(worktimes.defaultweekhours, 'HH24:MI'::text) AS defaultweekhours, + to_char(worktimes.maxweekhours, 'HH24:MI'::text) AS maxweekhours, + to_char(worktimes.maxinterruptionhours, 'HH24:MI'::text) AS maxinterruptionhours + FROM portanova.worktimes + ORDER BY worktimes.startdate NULLS FIRST, worktimes.enddate NULLS FIRST; + + +ALTER TABLE portanova.vw_worktimeslist OWNER TO potlu_user; + +-- +-- Name: workplandays_id_seq; Type: SEQUENCE; Schema: portanova; Owner: potlu_user +-- + +CREATE SEQUENCE portanova.workplandays_id_seq + AS integer + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE portanova.workplandays_id_seq OWNER TO potlu_user; + +-- +-- Name: workplandays_id_seq; Type: SEQUENCE OWNED BY; Schema: portanova; Owner: potlu_user +-- +ALTER SEQUENCE portanova.workplandays_id_seq OWNED BY portanova.workplandays.id; -ALTER TABLE portanova.vw_workplans OWNER TO potlu_user; -- -- Name: workplans_id_seq; Type: SEQUENCE; Schema: portanova; Owner: potlu_user @@ -2390,10 +1508,10 @@ ALTER SEQUENCE portanova.workplans_id_seq OWNED BY portanova.workplans.id; -- --- Name: worktypes_id_seq; Type: SEQUENCE; Schema: portanova; Owner: potlu_user +-- Name: worktimes_id_seq; Type: SEQUENCE; Schema: portanova; Owner: potlu_user -- -CREATE SEQUENCE portanova.worktypes_id_seq +CREATE SEQUENCE portanova.worktimes_id_seq AS integer START WITH 1 INCREMENT BY 1 @@ -2402,58 +1520,35 @@ CREATE SEQUENCE portanova.worktypes_id_seq CACHE 1; -ALTER TABLE portanova.worktypes_id_seq OWNER TO potlu_user; +ALTER TABLE portanova.worktimes_id_seq OWNER TO potlu_user; -- --- Name: worktypes_id_seq; Type: SEQUENCE OWNED BY; Schema: portanova; Owner: potlu_user +-- Name: worktimes_id_seq; Type: SEQUENCE OWNED BY; Schema: portanova; Owner: potlu_user -- -ALTER SEQUENCE portanova.worktypes_id_seq OWNED BY portanova.vacancytypes.id; +ALTER SEQUENCE portanova.worktimes_id_seq OWNED BY portanova.worktimes.id; -- --- Name: zzold_vw_staffworkplanlist; Type: VIEW; Schema: portanova; Owner: potlu_user +-- Name: worktypes_id_seq; Type: SEQUENCE; Schema: portanova; Owner: potlu_user -- -CREATE VIEW portanova.zzold_vw_staffworkplanlist AS -SELECT - NULL::double precision AS calweek, - NULL::double precision AS calyear, - NULL::date AS weekstart, - NULL::date AS weekend, - NULL::text AS dates, - NULL::integer AS id_staff, - NULL::text AS dspstaffname, - NULL::integer AS id_staffgroup, - NULL::text AS dspweektotals, - NULL::interval AS contracthours, - NULL::interval AS plannedhours, - NULL::interval AS vacancyhours, - NULL::interval AS recuperationhours, - NULL::interval AS hoursdiff, - NULL::bigint AS mon_id, - NULL::text AS dspmontimes, - NULL::bigint AS tue_id, - NULL::text AS dsptuetimes, - NULL::bigint AS wed_id, - NULL::text AS dspwedtimes, - NULL::bigint AS thu_id, - NULL::text AS dspthutimes, - NULL::bigint AS fri_id, - NULL::text AS dspfritimes, - NULL::bigint AS sat_id, - NULL::text AS dspsattimes, - NULL::bigint AS sun_id, - NULL::text AS dspsuntimes; - - -ALTER TABLE portanova.zzold_vw_staffworkplanlist OWNER TO potlu_user; - --- --- Name: editlog id; Type: DEFAULT; Schema: portanova; Owner: potlu_user --- - -ALTER TABLE ONLY portanova.editlog ALTER COLUMN id SET DEFAULT nextval('portanova.editlog_id_seq'::regclass); +CREATE SEQUENCE portanova.worktypes_id_seq + AS integer + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE portanova.worktypes_id_seq OWNER TO potlu_user; + +-- +-- Name: worktypes_id_seq; Type: SEQUENCE OWNED BY; Schema: portanova; Owner: potlu_user +-- + +ALTER SEQUENCE portanova.worktypes_id_seq OWNED BY portanova.vacancytypes.id; -- @@ -2527,25 +1622,24 @@ ALTER TABLE ONLY portanova.vacancytypes ALTER COLUMN id SET DEFAULT nextval('por -- --- Name: workplans id; Type: DEFAULT; Schema: portanova; Owner: potlu_user +-- Name: workplandays id; Type: DEFAULT; Schema: portanova; Owner: potlu_user -- -ALTER TABLE ONLY portanova.workplans ALTER COLUMN id SET DEFAULT nextval('portanova.workplans_id_seq'::regclass); +ALTER TABLE ONLY portanova.workplandays ALTER COLUMN id SET DEFAULT nextval('portanova.workplandays_id_seq'::regclass); -- --- Name: zzold_staffreportperiodsums id; Type: DEFAULT; Schema: portanova; Owner: potlu_user +-- Name: workplans id; Type: DEFAULT; Schema: portanova; Owner: potlu_user -- -ALTER TABLE ONLY portanova.zzold_staffreportperiodsums ALTER COLUMN id SET DEFAULT nextval('portanova.staffreportperiodsums_id_seq'::regclass); +ALTER TABLE ONLY portanova.workplans ALTER COLUMN id SET DEFAULT nextval('portanova.workplans_id_seq'::regclass); -- --- Data for Name: editlog; Type: TABLE DATA; Schema: portanova; Owner: potlu_user +-- Name: worktimes id; Type: DEFAULT; Schema: portanova; Owner: potlu_user -- -COPY portanova.editlog (id, id_user, tblname, tblfields, modified, created) FROM stdin; -\. +ALTER TABLE ONLY portanova.worktimes ALTER COLUMN id SET DEFAULT nextval('portanova.worktimes_id_seq'::regclass); -- @@ -2555,6 +1649,8 @@ COPY portanova.editlog (id, id_user, tblname, tblfields, modified, created) FROM COPY portanova.reportperiod (id, periodname, startdate, enddate, id_parentreportperiod) FROM stdin; 27 \N 2019-12-30 2020-02-23 \N 29 \N 2020-02-24 2020-04-19 27 +30 \N 2020-04-20 2020-06-14 29 +31 \N 2020-06-15 2020-08-09 30 \. @@ -2620,58 +1716,59 @@ COPY portanova.staff (id, staffnumber, surname, prename, job, birthdate, matricu -- Data for Name: staffcontract; Type: TABLE DATA; Schema: portanova; Owner: potlu_user -- -COPY portanova.staffcontract (id, id_staff, startdate, id_staffgroup, weekdays, enddate, id_workplan, weekhours) FROM stdin; -69 130 2005-01-08 1 6 \N 6 40:00:00 -90 132 2020-01-01 1 6 2020-01-15 6 40:00:00 -71 133 2013-01-07 1 6 \N 6 40:00:00 -85 121 2020-01-01 2 6 2020-07-31 6 40:00:00 -70 131 1995-07-01 1 6 \N 6 20:00:00 -77 108 2020-01-06 2 6 \N 6 40:00:00 -108 129 2019-07-15 1 6 \N 6 40:00:00 -82 117 2020-05-01 2 6 \N 1 40:00:00 -72 135 2006-10-23 1 6 \N 6 40:00:00 -73 136 1992-03-15 1 6 \N 6 40:00:00 -79 111 2020-01-01 2 6 \N 6 40:00:00 -87 126 2020-01-01 1 6 2019-05-31 6 40:00:00 -88 127 2020-01-01 1 6 \N 6 40:00:00 -89 128 2020-01-01 1 6 \N 6 40:00:00 -56 103 2014-03-01 4 6 \N 1 40:00:00 -57 104 2015-11-15 4 6 \N 1 30:00:00 -60 109 2005-04-19 2 6 \N 1 40:00:00 -61 113 2016-05-19 2 6 \N 1 40:00:00 -91 134 2020-01-01 1 6 \N 6 40:00:00 -62 114 2007-08-14 2 6 \N 1 40:00:00 -63 115 2013-05-01 2 6 \N 1 40:00:00 -64 118 2018-02-12 2 6 \N 1 40:00:00 -75 102 2020-01-01 4 6 \N 1 40:00:00 -78 110 2020-01-01 2 6 \N 1 40:00:00 -80 112 2020-01-01 2 6 2020-05-31 1 40:00:00 -81 116 2020-01-01 2 6 2019-02-28 1 40:00:00 -83 119 2020-01-01 2 6 \N 1 40:00:00 -84 120 2020-01-01 2 6 2019-03-31 1 40:00:00 -93 138 2020-01-01 1 6 2020-06-30 6 40:00:00 -66 124 2016-04-01 2 6 2019-05-31 1 12:30:00 -99 145 2020-01-01 2 6 \N 6 40:00:00 -58 105 2011-10-01 2 6 \N 6 40:00:00 -59 106 2015-07-01 2 6 \N 1 12:30:00 -65 122 2015-10-15 2 6 \N 1 40:00:00 -76 107 2020-01-01 2 6 2019-07-31 1 40:00:00 -86 123 2020-01-01 2 6 2017-03-31 1 40:00:00 -100 146 2020-01-01 2 6 \N 1 40:00:00 -101 147 2020-01-01 2 6 2020-08-31 1 40:00:00 -102 148 2020-01-01 2 6 \N 1 40:00:00 -103 149 2020-01-01 2 6 \N 1 40:00:00 -104 150 2020-01-01 2 6 2019-07-31 1 40:00:00 -67 125 2003-10-01 4 6 \N 1 20:00:00 -107 151 2020-02-01 4 6 \N 6 40:00:00 -105 129 2018-11-15 1 6 2019-06-15 6 40:00:00 -94 139 2020-01-01 1 6 2020-09-30 6 40:00:00 -95 140 2020-01-01 1 6 2020-01-31 6 40:00:00 -74 142 2014-04-15 1 6 \N 6 40:00:00 -97 143 2020-01-01 1 6 \N 6 40:00:00 -98 144 2020-01-01 1 6 2020-03-31 6 40:00:00 -96 141 2020-01-01 1 6 2022-08-31 6 40:00:00 -92 137 2020-01-01 1 6 2019-07-31 6 40:00:00 +COPY portanova.staffcontract (id, id_staff, startdate, id_staffgroup, weekdays, enddate, id_workplan, weekhours, defaultfreedays) FROM stdin; +69 130 2005-01-08 1 6 \N 6 40:00:00 ["7"] +90 132 2020-01-01 1 6 2020-01-15 6 40:00:00 ["7"] +71 133 2013-01-07 1 6 \N 6 40:00:00 ["7"] +85 121 2020-01-01 2 6 2020-07-31 6 40:00:00 ["7"] +77 108 2020-01-06 2 6 \N 6 40:00:00 ["7"] +108 129 2019-07-15 1 6 \N 6 40:00:00 ["7"] +82 117 2020-05-01 2 6 \N 1 40:00:00 ["7"] +60 109 2005-04-19 2 6 \N 1 40:00:00 ["7"] +72 135 2006-10-23 1 6 \N 6 40:00:00 ["7"] +73 136 1992-03-15 1 6 \N 6 40:00:00 ["7"] +87 126 2020-01-01 1 6 2019-05-31 6 40:00:00 ["7"] +88 127 2020-01-01 1 6 \N 6 40:00:00 ["7"] +89 128 2020-01-01 1 6 \N 6 40:00:00 ["7"] +56 103 2014-03-01 4 6 \N 1 40:00:00 ["7"] +61 113 2016-05-19 2 6 \N 1 40:00:00 ["7"] +91 134 2020-01-01 1 6 \N 6 40:00:00 ["7"] +62 114 2007-08-14 2 6 \N 1 40:00:00 ["7"] +63 115 2013-05-01 2 6 \N 1 40:00:00 ["7"] +64 118 2018-02-12 2 6 \N 1 40:00:00 ["7"] +75 102 2020-01-01 4 6 \N 1 40:00:00 ["7"] +78 110 2020-01-01 2 6 \N 1 40:00:00 ["7"] +80 112 2020-01-01 2 6 2020-05-31 1 40:00:00 ["7"] +83 119 2020-01-01 2 6 \N 1 40:00:00 ["7"] +84 120 2020-01-01 2 6 2019-03-31 1 40:00:00 ["7"] +70 131 1995-07-01 1 5 \N 6 20:00:00 ["6","7"] +57 104 2015-11-15 4 5 \N 1 30:00:00 ["6","7"] +81 116 2020-01-01 2 6 2020-02-28 1 40:00:00 ["7"] +173 111 2020-04-01 2 6 \N 6 40:00:00 ["7"] +79 111 2020-01-01 2 6 2020-03-31 6 40:00:00 ["7"] +93 138 2020-01-01 1 6 2020-06-30 6 40:00:00 ["7"] +99 145 2020-01-01 2 6 \N 6 40:00:00 ["7"] +58 105 2011-10-01 2 6 \N 6 40:00:00 ["7"] +65 122 2015-10-15 2 6 \N 1 40:00:00 ["7"] +76 107 2020-01-01 2 6 2019-07-31 1 40:00:00 ["7"] +86 123 2020-01-01 2 6 2017-03-31 1 40:00:00 ["7"] +100 146 2020-01-01 2 6 \N 1 40:00:00 ["7"] +101 147 2020-01-01 2 6 2020-08-31 1 40:00:00 ["7"] +102 148 2020-01-01 2 6 \N 1 40:00:00 ["7"] +103 149 2020-01-01 2 6 \N 1 40:00:00 ["7"] +104 150 2020-01-01 2 6 2019-07-31 1 40:00:00 ["7"] +107 151 2020-02-01 4 6 \N 6 40:00:00 ["7"] +105 129 2018-11-15 1 6 2019-06-15 6 40:00:00 ["7"] +94 139 2020-01-01 1 6 2020-09-30 6 40:00:00 ["7"] +95 140 2020-01-01 1 6 2020-01-31 6 40:00:00 ["7"] +74 142 2014-04-15 1 6 \N 6 40:00:00 ["7"] +97 143 2020-01-01 1 6 \N 6 40:00:00 ["7"] +98 144 2020-01-01 1 6 2020-03-31 6 40:00:00 ["7"] +96 141 2020-01-01 1 6 2022-08-31 6 40:00:00 ["7"] +92 137 2020-01-01 1 6 2019-07-31 6 40:00:00 ["7"] +66 124 2016-04-01 2 3 2019-05-31 1 12:30:00 ["5","6","7"] +59 106 2015-07-01 2 3 \N 1 12:30:00 ["5","6","7"] +67 125 2003-10-01 4 6 \N 1 20:00:00 ["7"] \. @@ -2690,87 +1787,167 @@ COPY portanova.staffgroups (id, groupname, groupcolor, editoruser_ids, isdefault -- Data for Name: staffreportperiod; Type: TABLE DATA; Schema: portanova; Owner: potlu_user -- -COPY portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) FROM stdin; -1081 29 149 320:00:00 320:00:00 320:00:00 00:00:00 00:00:00 00:00:00 \N -992 27 146 304:00:00 313:20:00 304:00:00 00:00:00 00:00:00 -09:20:00 \N -1082 29 103 320:00:00 320:00:00 320:00:00 00:00:00 00:00:00 00:00:00 \N -1083 29 121 320:00:00 320:00:00 320:00:00 00:00:00 00:00:00 00:00:00 \N -1084 29 125 320:00:00 160:00:00 320:00:00 00:00:00 00:00:00 160:00:00 \N -1085 29 119 320:00:00 320:00:00 320:00:00 00:00:00 00:00:00 00:00:00 \N -1086 29 113 320:00:00 320:00:00 320:00:00 00:00:00 00:00:00 00:00:00 \N -1087 29 147 320:00:00 320:00:00 320:00:00 00:00:00 00:00:00 00:00:00 \N -1088 29 131 320:00:00 160:00:00 320:00:00 00:00:00 00:00:00 160:00:00 \N -1089 29 104 320:00:00 240:00:00 320:00:00 00:00:00 00:00:00 80:00:00 \N -1090 29 151 320:00:00 320:00:00 320:00:00 00:00:00 00:00:00 00:00:00 \N -1091 29 138 320:00:00 320:00:00 320:00:00 00:00:00 00:00:00 00:00:00 \N -1092 29 105 320:00:00 320:00:00 320:00:00 00:00:00 00:00:00 00:00:00 \N -1093 29 134 320:00:00 320:00:00 320:00:00 00:00:00 00:00:00 00:00:00 \N -993 27 132 88:00:00 93:20:00 88:00:00 00:00:00 00:00:00 -05:20:00 \N -994 27 115 320:00:00 320:00:00 320:00:00 00:00:00 00:00:00 00:00:00 \N -995 27 114 320:00:00 320:00:00 320:00:00 00:00:00 00:00:00 00:00:00 \N -996 27 112 304:00:00 313:20:00 304:00:00 00:00:00 00:00:00 -09:20:00 \N -997 27 108 280:00:00 280:00:00 280:00:00 00:00:00 00:00:00 00:00:00 \N -998 27 135 320:00:00 320:00:00 320:00:00 00:00:00 00:00:00 00:00:00 \N -999 27 127 304:00:00 313:20:00 304:00:00 00:00:00 00:00:00 -09:20:00 \N -1000 27 149 304:00:00 313:20:00 304:00:00 00:00:00 00:00:00 -09:20:00 \N -1001 27 103 320:00:00 320:00:00 320:00:00 00:00:00 00:00:00 00:00:00 \N -1002 27 121 304:00:00 313:20:00 304:00:00 00:00:00 00:00:00 -09:20:00 \N -1003 27 125 320:00:00 160:00:00 320:00:00 00:00:00 00:00:00 160:00:00 \N -1004 27 119 304:00:00 313:20:00 304:00:00 00:00:00 00:00:00 -09:20:00 \N -1005 27 113 320:00:00 320:00:00 320:00:00 00:00:00 00:00:00 00:00:00 \N -1006 27 147 304:00:00 313:20:00 304:00:00 00:00:00 00:00:00 -09:20:00 \N -1007 27 131 320:00:00 160:00:00 320:00:00 00:00:00 00:00:00 160:00:00 \N -1008 27 104 320:00:00 240:00:00 320:00:00 00:00:00 00:00:00 80:00:00 \N -1009 27 151 120:00:00 133:20:00 120:00:00 00:00:00 00:00:00 -13:20:00 \N -1010 27 138 304:00:00 313:20:00 304:00:00 00:00:00 00:00:00 -09:20:00 \N -1011 27 105 320:00:00 320:00:00 320:00:00 00:00:00 00:00:00 00:00:00 \N -1012 27 134 304:00:00 313:20:00 304:00:00 00:00:00 00:00:00 -09:20:00 \N -1013 27 144 304:00:00 313:20:00 304:00:00 00:00:00 00:00:00 -09:20:00 \N -1014 27 102 304:00:00 313:20:00 304:00:00 00:00:00 00:00:00 -09:20:00 \N -1015 27 109 320:00:00 320:00:00 320:00:00 00:00:00 00:00:00 00:00:00 \N -1016 27 118 320:00:00 320:00:00 320:00:00 00:00:00 00:00:00 00:00:00 \N -1017 27 133 320:00:00 320:00:00 320:00:00 00:00:00 00:00:00 00:00:00 \N -1018 27 111 304:00:00 313:20:00 304:00:00 00:00:00 00:00:00 -09:20:00 \N -1019 27 128 304:00:00 313:20:00 304:00:00 00:00:00 00:00:00 -09:20:00 \N -1020 27 142 320:00:00 320:00:00 320:00:00 00:00:00 00:00:00 00:00:00 \N -1021 27 136 320:00:00 320:00:00 320:00:00 00:00:00 00:00:00 00:00:00 \N -1022 27 140 184:00:00 186:40:00 184:00:00 00:00:00 00:00:00 -02:40:00 \N -1023 27 139 304:00:00 313:20:00 304:00:00 00:00:00 00:00:00 -09:20:00 \N -1024 27 141 304:00:00 313:20:00 304:00:00 00:00:00 00:00:00 -09:20:00 \N -1025 27 122 320:00:00 320:00:00 320:00:00 00:00:00 00:00:00 00:00:00 \N -1026 27 106 320:00:00 100:00:00 320:00:00 00:00:00 00:00:00 220:00:00 \N -1027 27 110 304:00:00 313:20:00 304:00:00 00:00:00 00:00:00 -09:20:00 \N -1028 27 145 304:00:00 313:20:00 304:00:00 00:00:00 00:00:00 -09:20:00 \N -1029 27 148 304:00:00 313:20:00 304:00:00 00:00:00 00:00:00 -09:20:00 \N -1030 27 130 320:00:00 320:00:00 320:00:00 00:00:00 00:00:00 00:00:00 \N -956 27 129 320:00:00 320:00:00 320:00:00 00:00:00 00:00:00 00:00:00 \N -1032 27 143 304:00:00 313:20:00 304:00:00 00:00:00 00:00:00 -09:20:00 \N -1074 29 146 320:00:00 320:00:00 320:00:00 00:00:00 00:00:00 00:00:00 \N -1075 29 115 320:00:00 320:00:00 320:00:00 00:00:00 00:00:00 00:00:00 \N -1076 29 114 320:00:00 320:00:00 320:00:00 00:00:00 00:00:00 00:00:00 \N -1077 29 112 320:00:00 320:00:00 320:00:00 00:00:00 00:00:00 00:00:00 \N -1078 29 108 320:00:00 320:00:00 320:00:00 00:00:00 00:00:00 00:00:00 \N -1079 29 135 320:00:00 320:00:00 320:00:00 00:00:00 00:00:00 00:00:00 \N -1080 29 127 320:00:00 320:00:00 320:00:00 00:00:00 00:00:00 00:00:00 \N -1094 29 144 216:00:00 213:20:00 216:00:00 00:00:00 00:00:00 02:40:00 \N -1095 29 102 320:00:00 320:00:00 320:00:00 00:00:00 00:00:00 00:00:00 \N -1096 29 109 320:00:00 320:00:00 320:00:00 00:00:00 00:00:00 00:00:00 \N -1097 29 118 320:00:00 320:00:00 320:00:00 00:00:00 00:00:00 00:00:00 \N -1098 29 133 320:00:00 320:00:00 320:00:00 00:00:00 00:00:00 00:00:00 \N -1099 29 111 320:00:00 320:00:00 320:00:00 00:00:00 00:00:00 00:00:00 \N -1100 29 128 320:00:00 320:00:00 320:00:00 00:00:00 00:00:00 00:00:00 \N -1101 29 142 320:00:00 320:00:00 320:00:00 00:00:00 00:00:00 00:00:00 \N -1102 29 136 320:00:00 320:00:00 320:00:00 00:00:00 00:00:00 00:00:00 \N -1103 29 139 320:00:00 320:00:00 320:00:00 00:00:00 00:00:00 00:00:00 \N -1104 29 141 320:00:00 320:00:00 320:00:00 00:00:00 00:00:00 00:00:00 \N -1105 29 122 320:00:00 320:00:00 320:00:00 00:00:00 00:00:00 00:00:00 \N -1106 29 106 320:00:00 100:00:00 320:00:00 00:00:00 00:00:00 220:00:00 \N -1107 29 110 320:00:00 320:00:00 320:00:00 00:00:00 00:00:00 00:00:00 \N -1108 29 145 320:00:00 320:00:00 320:00:00 00:00:00 00:00:00 00:00:00 \N -1109 29 148 320:00:00 320:00:00 320:00:00 00:00:00 00:00:00 00:00:00 \N -1110 29 130 320:00:00 320:00:00 320:00:00 00:00:00 00:00:00 00:00:00 \N -1111 29 129 320:00:00 320:00:00 320:00:00 00:00:00 00:00:00 00:00:00 \N -1112 29 143 320:00:00 320:00:00 320:00:00 00:00:00 00:00:00 00:00:00 \N +COPY portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, payedhours, diffhourspayed) FROM stdin; +1730 27 116 304:00:00 306:40:00 304:00:00 00:00:00 00:00:00 -02:40:00 \N \N +992 27 146 304:00:00 306:40:00 304:00:00 00:00:00 00:00:00 -02:40:00 \N \N +993 27 132 88:00:00 106:40:00 88:00:00 00:00:00 00:00:00 -18:40:00 \N \N +994 27 115 320:00:00 320:00:00 320:00:00 00:00:00 00:00:00 00:00:00 \N \N +995 27 114 320:00:00 320:00:00 320:00:00 00:00:00 00:00:00 00:00:00 \N \N +996 27 112 304:00:00 306:40:00 304:00:00 00:00:00 00:00:00 -02:40:00 \N \N +1086 29 113 320:00:00 320:00:00 320:00:00 00:00:00 00:00:00 00:00:00 \N \N +1087 29 147 320:00:00 320:00:00 320:00:00 00:00:00 00:00:00 00:00:00 \N \N +1088 29 131 320:00:00 160:00:00 320:00:00 00:00:00 00:00:00 160:00:00 \N \N +1089 29 104 320:00:00 240:00:00 320:00:00 00:00:00 00:00:00 80:00:00 \N \N +1090 29 151 320:00:00 320:00:00 320:00:00 00:00:00 00:00:00 00:00:00 \N \N +1091 29 138 320:00:00 320:00:00 320:00:00 00:00:00 00:00:00 00:00:00 \N \N +1092 29 105 320:00:00 320:00:00 320:00:00 00:00:00 00:00:00 00:00:00 \N \N +1093 29 134 320:00:00 320:00:00 320:00:00 00:00:00 00:00:00 00:00:00 \N \N +1094 29 144 216:00:00 240:00:00 216:00:00 00:00:00 00:00:00 -24:00:00 \N \N +1095 29 102 320:00:00 320:00:00 320:00:00 00:00:00 00:00:00 00:00:00 \N \N +1096 29 109 320:00:00 320:00:00 320:00:00 00:00:00 00:00:00 00:00:00 \N \N +1097 29 118 320:00:00 320:00:00 320:00:00 00:00:00 00:00:00 00:00:00 \N \N +1098 29 133 320:00:00 320:00:00 320:00:00 00:00:00 00:00:00 00:00:00 \N \N +1099 29 111 320:00:00 320:00:00 320:00:00 00:00:00 00:00:00 00:00:00 \N \N +1100 29 128 320:00:00 320:00:00 320:00:00 00:00:00 00:00:00 00:00:00 \N \N +1101 29 142 320:00:00 320:00:00 320:00:00 00:00:00 00:00:00 00:00:00 \N \N +1102 29 136 320:00:00 320:00:00 320:00:00 00:00:00 00:00:00 00:00:00 \N \N +1103 29 139 320:00:00 320:00:00 320:00:00 00:00:00 00:00:00 00:00:00 \N \N +1104 29 141 320:00:00 320:00:00 320:00:00 00:00:00 00:00:00 00:00:00 \N \N +1105 29 122 320:00:00 320:00:00 320:00:00 00:00:00 00:00:00 00:00:00 \N \N +1106 29 106 320:00:00 100:00:00 320:00:00 00:00:00 00:00:00 220:00:00 \N \N +1107 29 110 320:00:00 320:00:00 320:00:00 00:00:00 00:00:00 00:00:00 \N \N +1108 29 145 320:00:00 320:00:00 320:00:00 00:00:00 00:00:00 00:00:00 \N \N +1109 29 148 320:00:00 320:00:00 320:00:00 00:00:00 00:00:00 00:00:00 \N \N +1110 29 130 320:00:00 320:00:00 320:00:00 00:00:00 00:00:00 00:00:00 \N \N +1111 29 129 320:00:00 320:00:00 320:00:00 00:00:00 00:00:00 00:00:00 \N \N +1112 29 143 320:00:00 320:00:00 320:00:00 00:00:00 00:00:00 00:00:00 \N \N +1152 30 146 320:00:00 320:00:00 320:00:00 00:00:00 00:00:00 00:00:00 \N \N +1153 30 115 320:00:00 320:00:00 320:00:00 00:00:00 00:00:00 00:00:00 \N \N +1154 30 114 320:00:00 320:00:00 320:00:00 00:00:00 00:00:00 00:00:00 \N \N +1166 30 147 320:00:00 320:00:00 320:00:00 00:00:00 00:00:00 00:00:00 \N \N +1178 30 128 320:00:00 320:00:00 320:00:00 00:00:00 00:00:00 00:00:00 \N \N +1179 30 142 320:00:00 320:00:00 320:00:00 00:00:00 00:00:00 00:00:00 \N \N +1180 30 136 320:00:00 320:00:00 320:00:00 00:00:00 00:00:00 00:00:00 \N \N +1181 30 139 320:00:00 320:00:00 320:00:00 00:00:00 00:00:00 00:00:00 \N \N +1182 30 141 320:00:00 320:00:00 320:00:00 00:00:00 00:00:00 00:00:00 \N \N +1183 30 122 320:00:00 320:00:00 320:00:00 00:00:00 00:00:00 00:00:00 \N \N +1184 30 106 320:00:00 100:00:00 320:00:00 00:00:00 00:00:00 220:00:00 \N \N +1185 30 110 320:00:00 320:00:00 320:00:00 00:00:00 00:00:00 00:00:00 \N \N +1186 30 145 320:00:00 320:00:00 320:00:00 00:00:00 00:00:00 00:00:00 \N \N +1187 30 148 320:00:00 320:00:00 320:00:00 00:00:00 00:00:00 00:00:00 \N \N +1545 \N \N \N \N \N \N \N \N 01:00:00 \N +997 27 108 280:00:00 280:00:00 280:00:00 00:00:00 00:00:00 00:00:00 \N \N +998 27 135 320:00:00 320:00:00 320:00:00 00:00:00 00:00:00 00:00:00 \N \N +1006 27 147 304:00:00 306:40:00 304:00:00 00:00:00 00:00:00 -02:40:00 \N \N +1007 27 131 320:00:00 160:00:00 320:00:00 00:00:00 00:00:00 160:00:00 \N \N +1008 27 104 320:00:00 240:00:00 320:00:00 00:00:00 00:00:00 80:00:00 \N \N +1075 29 115 320:00:00 320:00:00 320:00:00 00:00:00 00:00:00 00:00:00 \N \N +1076 29 114 320:00:00 320:00:00 320:00:00 00:00:00 00:00:00 00:00:00 \N \N +1077 29 112 320:00:00 320:00:00 320:00:00 00:00:00 00:00:00 00:00:00 \N \N +1078 29 108 320:00:00 320:00:00 320:00:00 00:00:00 00:00:00 00:00:00 \N \N +1079 29 135 320:00:00 320:00:00 320:00:00 00:00:00 00:00:00 00:00:00 \N \N +1080 29 127 320:00:00 320:00:00 320:00:00 00:00:00 00:00:00 00:00:00 \N \N +1081 29 149 320:00:00 320:00:00 320:00:00 00:00:00 00:00:00 00:00:00 \N \N +1082 29 103 320:00:00 320:00:00 320:00:00 00:00:00 00:00:00 00:00:00 \N \N +1083 29 121 320:00:00 320:00:00 320:00:00 00:00:00 00:00:00 00:00:00 \N \N +1084 29 125 320:00:00 160:00:00 320:00:00 00:00:00 00:00:00 160:00:00 \N \N +1085 29 119 320:00:00 320:00:00 320:00:00 00:00:00 00:00:00 00:00:00 \N \N +1198 31 103 320:00:00 320:00:00 320:00:00 00:00:00 00:00:00 00:00:00 \N \N +1199 31 121 280:00:00 280:00:00 280:00:00 00:00:00 00:00:00 00:00:00 \N \N +1200 31 117 320:00:00 320:00:00 320:00:00 00:00:00 00:00:00 00:00:00 \N \N +1201 31 125 320:00:00 160:00:00 320:00:00 00:00:00 00:00:00 160:00:00 \N \N +1202 31 119 320:00:00 320:00:00 320:00:00 00:00:00 00:00:00 00:00:00 \N \N +1203 31 113 320:00:00 320:00:00 320:00:00 00:00:00 00:00:00 00:00:00 \N \N +1204 31 147 320:00:00 320:00:00 320:00:00 00:00:00 00:00:00 00:00:00 \N \N +1205 31 131 320:00:00 160:00:00 320:00:00 00:00:00 00:00:00 160:00:00 \N \N +1206 31 104 320:00:00 240:00:00 320:00:00 00:00:00 00:00:00 80:00:00 \N \N +1207 31 151 320:00:00 320:00:00 320:00:00 00:00:00 00:00:00 00:00:00 \N \N +1208 31 138 96:00:00 120:00:00 96:00:00 00:00:00 00:00:00 -24:00:00 \N \N +1209 31 105 320:00:00 320:00:00 320:00:00 00:00:00 00:00:00 00:00:00 \N \N +1009 27 151 120:00:00 160:00:00 120:00:00 00:00:00 00:00:00 -40:00:00 \N \N +1010 27 138 304:00:00 306:40:00 304:00:00 00:00:00 00:00:00 -02:40:00 \N \N +1014 27 102 304:00:00 306:40:00 304:00:00 00:00:00 00:00:00 -02:40:00 \N \N +1015 27 109 320:00:00 320:00:00 320:00:00 00:00:00 00:00:00 00:00:00 \N \N +1016 27 118 320:00:00 320:00:00 320:00:00 00:00:00 00:00:00 00:00:00 \N \N +1017 27 133 320:00:00 320:00:00 320:00:00 00:00:00 00:00:00 00:00:00 \N \N +1018 27 111 306:40:00 306:40:00 306:40:00 00:00:00 00:00:00 00:00:00 \N \N +1019 27 128 304:00:00 306:40:00 304:00:00 00:00:00 00:00:00 -02:40:00 \N \N +1020 27 142 320:00:00 320:00:00 320:00:00 00:00:00 00:00:00 00:00:00 \N \N +1021 27 136 320:00:00 320:00:00 320:00:00 00:00:00 00:00:00 00:00:00 \N \N +1022 27 140 184:00:00 186:40:00 184:00:00 00:00:00 00:00:00 -02:40:00 \N \N +1023 27 139 304:00:00 306:40:00 304:00:00 00:00:00 00:00:00 -02:40:00 \N \N +1024 27 141 304:00:00 306:40:00 304:00:00 00:00:00 00:00:00 -02:40:00 \N \N +1025 27 122 320:00:00 320:00:00 320:00:00 00:00:00 00:00:00 00:00:00 \N \N +1032 27 143 304:00:00 306:40:00 304:00:00 00:00:00 00:00:00 -02:40:00 \N \N +1772 29 116 40:00:00 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 \N \N +1074 29 146 320:00:00 320:00:00 320:00:00 00:00:00 00:00:00 00:00:00 \N \N +999 27 127 304:00:00 306:40:00 304:00:00 00:00:00 00:00:00 -02:40:00 \N \N +1000 27 149 304:00:00 306:40:00 304:00:00 00:00:00 00:00:00 -02:40:00 \N \N +1001 27 103 316:00:00 320:00:00 320:00:00 04:00:00 00:00:00 00:00:00 \N \N +1002 27 121 304:00:00 306:40:00 304:00:00 00:00:00 00:00:00 -02:40:00 \N \N +1003 27 125 160:00:00 160:00:00 160:00:00 00:00:00 00:00:00 00:00:00 \N \N +1004 27 119 304:00:00 306:40:00 304:00:00 00:00:00 00:00:00 -02:40:00 \N \N +1005 27 113 320:00:00 320:00:00 320:00:00 00:00:00 00:00:00 00:00:00 \N \N +1011 27 105 320:00:00 320:00:00 320:00:00 00:00:00 00:00:00 00:00:00 \N \N +1012 27 134 304:00:00 306:40:00 304:00:00 00:00:00 00:00:00 -02:40:00 \N \N +1013 27 144 304:00:00 306:40:00 304:00:00 00:00:00 00:00:00 -02:40:00 \N \N +1026 27 106 320:00:00 100:00:00 320:00:00 00:00:00 00:00:00 220:00:00 \N \N +1027 27 110 304:00:00 306:40:00 304:00:00 00:00:00 00:00:00 -02:40:00 \N \N +1028 27 145 304:00:00 306:40:00 304:00:00 00:00:00 00:00:00 -02:40:00 \N \N +1029 27 148 304:00:00 306:40:00 304:00:00 00:00:00 00:00:00 -02:40:00 \N \N +1030 27 130 320:00:00 320:00:00 320:00:00 00:00:00 00:00:00 00:00:00 \N \N +956 27 129 320:00:00 320:00:00 320:00:00 00:00:00 00:00:00 00:00:00 \N \N +1155 30 112 240:00:00 240:00:00 240:00:00 00:00:00 00:00:00 00:00:00 \N \N +1156 30 108 320:00:00 320:00:00 320:00:00 00:00:00 00:00:00 00:00:00 \N \N +1157 30 135 320:00:00 320:00:00 320:00:00 00:00:00 00:00:00 00:00:00 \N \N +1158 30 127 320:00:00 320:00:00 320:00:00 00:00:00 00:00:00 00:00:00 \N \N +1159 30 149 320:00:00 320:00:00 320:00:00 00:00:00 00:00:00 00:00:00 \N \N +1160 30 103 320:00:00 320:00:00 320:00:00 00:00:00 00:00:00 00:00:00 \N \N +1161 30 121 320:00:00 320:00:00 320:00:00 00:00:00 00:00:00 00:00:00 \N \N +1162 30 117 248:00:00 280:00:00 248:00:00 00:00:00 00:00:00 -32:00:00 \N \N +1163 30 125 320:00:00 160:00:00 320:00:00 00:00:00 00:00:00 160:00:00 \N \N +1164 30 119 320:00:00 320:00:00 320:00:00 00:00:00 00:00:00 00:00:00 \N \N +1165 30 113 320:00:00 320:00:00 320:00:00 00:00:00 00:00:00 00:00:00 \N \N +1188 30 130 320:00:00 320:00:00 320:00:00 00:00:00 00:00:00 00:00:00 \N \N +1189 30 129 320:00:00 320:00:00 320:00:00 00:00:00 00:00:00 00:00:00 \N \N +1190 30 143 320:00:00 320:00:00 320:00:00 00:00:00 00:00:00 00:00:00 \N \N +1191 31 146 320:00:00 320:00:00 320:00:00 00:00:00 00:00:00 00:00:00 \N \N +1192 31 115 320:00:00 320:00:00 320:00:00 00:00:00 00:00:00 00:00:00 \N \N +1193 31 114 320:00:00 320:00:00 320:00:00 00:00:00 00:00:00 00:00:00 \N \N +1194 31 108 320:00:00 320:00:00 320:00:00 00:00:00 00:00:00 00:00:00 \N \N +1195 31 135 320:00:00 320:00:00 320:00:00 00:00:00 00:00:00 00:00:00 \N \N +1196 31 127 320:00:00 320:00:00 320:00:00 00:00:00 00:00:00 00:00:00 \N \N +1197 31 149 320:00:00 320:00:00 320:00:00 00:00:00 00:00:00 00:00:00 \N \N +1167 30 131 320:00:00 160:00:00 320:00:00 00:00:00 00:00:00 160:00:00 \N \N +1168 30 104 320:00:00 240:00:00 320:00:00 00:00:00 00:00:00 80:00:00 \N \N +1169 30 151 320:00:00 320:00:00 320:00:00 00:00:00 00:00:00 00:00:00 \N \N +1170 30 138 320:00:00 320:00:00 320:00:00 00:00:00 00:00:00 00:00:00 \N \N +1171 30 105 320:00:00 320:00:00 320:00:00 00:00:00 00:00:00 00:00:00 \N \N +1172 30 134 320:00:00 320:00:00 320:00:00 00:00:00 00:00:00 00:00:00 \N \N +1173 30 102 320:00:00 320:00:00 320:00:00 00:00:00 00:00:00 00:00:00 \N \N +1174 30 109 320:00:00 320:00:00 320:00:00 00:00:00 00:00:00 00:00:00 \N \N +1175 30 118 320:00:00 320:00:00 320:00:00 00:00:00 00:00:00 00:00:00 \N \N +1176 30 133 320:00:00 320:00:00 320:00:00 00:00:00 00:00:00 00:00:00 \N \N +1177 30 111 320:00:00 320:00:00 320:00:00 00:00:00 00:00:00 00:00:00 \N \N +1210 31 134 320:00:00 320:00:00 320:00:00 00:00:00 00:00:00 00:00:00 \N \N +1211 31 102 320:00:00 320:00:00 320:00:00 00:00:00 00:00:00 00:00:00 \N \N +1212 31 109 320:00:00 320:00:00 320:00:00 00:00:00 00:00:00 00:00:00 \N \N +1213 31 118 320:00:00 320:00:00 320:00:00 00:00:00 00:00:00 00:00:00 \N \N +1214 31 133 320:00:00 320:00:00 320:00:00 00:00:00 00:00:00 00:00:00 \N \N +1215 31 111 320:00:00 320:00:00 320:00:00 00:00:00 00:00:00 00:00:00 \N \N +1216 31 128 320:00:00 320:00:00 320:00:00 00:00:00 00:00:00 00:00:00 \N \N +1217 31 142 320:00:00 320:00:00 320:00:00 00:00:00 00:00:00 00:00:00 \N \N +1218 31 136 320:00:00 320:00:00 320:00:00 00:00:00 00:00:00 00:00:00 \N \N +1219 31 139 320:00:00 320:00:00 320:00:00 00:00:00 00:00:00 00:00:00 \N \N +1220 31 141 320:00:00 320:00:00 320:00:00 00:00:00 00:00:00 00:00:00 \N \N +1221 31 122 320:00:00 320:00:00 320:00:00 00:00:00 00:00:00 00:00:00 \N \N +1222 31 106 320:00:00 100:00:00 320:00:00 00:00:00 00:00:00 220:00:00 \N \N +1223 31 110 320:00:00 320:00:00 320:00:00 00:00:00 00:00:00 00:00:00 \N \N +1224 31 145 320:00:00 320:00:00 320:00:00 00:00:00 00:00:00 00:00:00 \N \N +1225 31 148 320:00:00 320:00:00 320:00:00 00:00:00 00:00:00 00:00:00 \N \N +1226 31 130 320:00:00 320:00:00 320:00:00 00:00:00 00:00:00 00:00:00 \N \N +1227 31 129 320:00:00 320:00:00 320:00:00 00:00:00 00:00:00 00:00:00 \N \N +1228 31 143 320:00:00 320:00:00 320:00:00 00:00:00 00:00:00 00:00:00 \N \N \. @@ -2778,4324 +1955,8621 @@ COPY portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, cont -- Data for Name: staffreportperioddays; Type: TABLE DATA; Schema: portanova; Owner: potlu_user -- -COPY portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) FROM stdin; -988797 146 2020-01-22 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -988798 146 2020-01-23 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -988799 146 2020-01-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -988800 146 2020-01-25 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -988801 146 2020-01-26 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -988802 146 2020-01-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -988803 146 2020-01-28 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -988804 146 2020-01-29 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -988805 146 2020-01-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -993102 115 2020-01-23 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -993103 115 2020-01-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -993104 115 2020-01-25 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -993105 115 2020-01-26 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -993106 115 2020-01-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -993107 115 2020-01-28 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -993131 115 2020-02-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -993132 115 2020-02-22 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -993133 115 2020-02-23 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -995247 114 2020-01-16 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -995248 114 2020-01-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -995249 114 2020-01-18 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -995250 114 2020-01-19 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -995251 114 2020-01-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -995252 114 2020-01-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -995253 114 2020-01-22 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -995254 114 2020-01-23 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -995255 114 2020-01-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -995256 114 2020-01-25 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -995257 114 2020-01-26 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -995258 114 2020-01-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -995259 114 2020-01-28 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -995260 114 2020-01-29 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -995261 114 2020-01-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -995262 114 2020-01-31 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -995263 114 2020-02-01 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -995264 114 2020-02-02 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -995265 114 2020-02-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -995266 114 2020-02-04 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1079166 146 2020-03-01 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1079167 146 2020-03-02 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079168 146 2020-03-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079169 146 2020-03-04 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -995267 114 2020-02-05 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -995268 114 2020-02-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -995269 114 2020-02-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -995270 114 2020-02-08 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -995271 114 2020-02-09 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -995272 114 2020-02-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -995273 114 2020-02-11 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -995274 114 2020-02-12 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -995275 114 2020-02-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -995276 114 2020-02-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -997427 112 2020-02-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -997428 112 2020-02-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -997429 112 2020-02-15 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -997430 112 2020-02-16 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -997431 112 2020-02-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -997432 112 2020-02-18 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -997433 112 2020-02-19 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -997434 112 2020-02-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -997435 112 2020-02-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -997436 112 2020-02-22 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -997437 112 2020-02-23 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -999560 108 2020-01-25 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -999561 108 2020-01-26 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -999562 108 2020-01-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -999563 108 2020-01-28 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -999564 108 2020-01-29 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -999565 108 2020-01-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -999566 108 2020-01-31 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -999567 108 2020-02-01 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -999568 108 2020-02-02 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -999569 108 2020-02-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -999570 108 2020-02-04 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -999571 108 2020-02-05 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -999572 108 2020-02-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -999573 108 2020-02-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1079170 146 2020-03-05 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079171 146 2020-03-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079172 146 2020-03-07 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1079173 146 2020-03-08 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -999574 108 2020-02-08 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -999575 108 2020-02-09 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -999581 108 2020-02-15 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1001724 135 2020-02-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1001725 135 2020-02-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1001726 135 2020-02-08 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1001727 135 2020-02-09 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1001728 135 2020-02-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1001729 135 2020-02-11 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1001730 135 2020-02-12 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1001731 135 2020-02-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1001732 135 2020-02-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1001733 135 2020-02-15 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1001734 135 2020-02-16 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1001735 135 2020-02-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1001736 135 2020-02-18 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1001737 135 2020-02-19 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1001738 135 2020-02-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1001739 135 2020-02-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1001740 135 2020-02-22 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1001741 135 2020-02-23 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1003860 127 2020-01-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1003861 127 2020-01-22 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1003862 127 2020-01-23 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1003863 127 2020-01-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1003864 127 2020-01-25 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1003865 127 2020-01-26 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1003866 127 2020-01-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1003867 127 2020-01-28 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1003868 127 2020-01-29 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1003869 127 2020-01-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1003870 127 2020-01-31 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1003871 127 2020-02-01 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1003872 127 2020-02-02 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1003873 127 2020-02-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1006019 149 2020-01-28 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1006020 149 2020-01-29 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1079174 146 2020-03-09 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079175 146 2020-03-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079176 146 2020-03-11 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079177 146 2020-03-12 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1006021 149 2020-01-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1006022 149 2020-01-31 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1006023 149 2020-02-01 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1006024 149 2020-02-02 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1006025 149 2020-02-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1006026 149 2020-02-04 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1006027 149 2020-02-05 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1006028 149 2020-02-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1006029 149 2020-02-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1006030 149 2020-02-08 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1006031 149 2020-02-09 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1006032 149 2020-02-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1006033 149 2020-02-11 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1006034 149 2020-02-12 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1006035 149 2020-02-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1006036 149 2020-02-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1006037 149 2020-02-15 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1006038 149 2020-02-16 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1006039 149 2020-02-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1006040 149 2020-02-18 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1006041 149 2020-02-19 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1006042 149 2020-02-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1006043 149 2020-02-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1006044 149 2020-02-22 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1006045 149 2020-02-23 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1008165 103 2020-01-22 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1008166 103 2020-01-23 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1008167 103 2020-01-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1008168 103 2020-01-25 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1008169 103 2020-01-26 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1008170 103 2020-01-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1008171 103 2020-01-28 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1008172 103 2020-01-29 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1008173 103 2020-01-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1008174 103 2020-01-31 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1010312 121 2020-01-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1079178 146 2020-03-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079179 146 2020-03-14 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1079180 146 2020-03-15 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1079181 146 2020-03-16 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079182 146 2020-03-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1010313 121 2020-01-18 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1010314 121 2020-01-19 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1010315 121 2020-01-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1010316 121 2020-01-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1010317 121 2020-01-22 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1010318 121 2020-01-23 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1010319 121 2020-01-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1010320 121 2020-01-25 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1010321 121 2020-01-26 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1010322 121 2020-01-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1010323 121 2020-01-28 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1010324 121 2020-01-29 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1010325 121 2020-01-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1010326 121 2020-01-31 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1010327 121 2020-02-01 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1010328 121 2020-02-02 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1010329 121 2020-02-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1010330 121 2020-02-04 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1010331 121 2020-02-05 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1010332 121 2020-02-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1010333 121 2020-02-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1010334 121 2020-02-08 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1010335 121 2020-02-09 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1010336 121 2020-02-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1010337 121 2020-02-11 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1010338 121 2020-02-12 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1010339 121 2020-02-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1010340 121 2020-02-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1010341 121 2020-02-15 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1010342 121 2020-02-16 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1010343 121 2020-02-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1010344 121 2020-02-18 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1010345 121 2020-02-19 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1010346 121 2020-02-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1010347 121 2020-02-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1079183 146 2020-03-18 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079184 146 2020-03-19 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079185 146 2020-03-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079186 146 2020-03-21 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1079187 146 2020-03-22 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1010348 121 2020-02-22 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1010349 121 2020-02-23 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1012469 125 2020-01-22 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1012470 125 2020-01-23 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1012471 125 2020-01-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1012472 125 2020-01-25 \N \N \N \N \N 00:00:00 03:20:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1012473 125 2020-01-26 \N \N \N \N \N 00:00:00 03:20:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1012474 125 2020-01-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1012475 125 2020-01-28 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1012476 125 2020-01-29 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1012477 125 2020-01-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1012478 125 2020-01-31 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1014612 119 2020-01-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1014613 119 2020-01-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1014614 119 2020-01-15 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1014615 119 2020-01-16 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1014616 119 2020-01-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1014617 119 2020-01-18 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1014618 119 2020-01-19 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1014619 119 2020-01-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1014620 119 2020-01-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1014621 119 2020-01-22 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1014622 119 2020-01-23 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1014623 119 2020-01-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1014624 119 2020-01-25 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1014625 119 2020-01-26 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1014626 119 2020-01-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1014627 119 2020-01-28 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1014628 119 2020-01-29 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1014629 119 2020-01-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1014630 119 2020-01-31 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1014631 119 2020-02-01 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1014632 119 2020-02-02 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1014633 119 2020-02-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1014634 119 2020-02-04 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1079188 146 2020-03-23 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079189 146 2020-03-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079190 146 2020-03-25 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079191 146 2020-03-26 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1014635 119 2020-02-05 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1014636 119 2020-02-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1014637 119 2020-02-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1014638 119 2020-02-08 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1014639 119 2020-02-09 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1014640 119 2020-02-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1014641 119 2020-02-11 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1014642 119 2020-02-12 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1014643 119 2020-02-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1014644 119 2020-02-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1014645 119 2020-02-15 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1014646 119 2020-02-16 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1014647 119 2020-02-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1014648 119 2020-02-18 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1014649 119 2020-02-19 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1014650 119 2020-02-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1014651 119 2020-02-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1014652 119 2020-02-22 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1014653 119 2020-02-23 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1016773 113 2020-01-22 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1016774 113 2020-01-23 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1016775 113 2020-01-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1016776 113 2020-01-25 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1016777 113 2020-01-26 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1016778 113 2020-01-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1016779 113 2020-01-28 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1016780 113 2020-01-29 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1016781 113 2020-01-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1016782 113 2020-01-31 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1018917 147 2020-01-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1018918 147 2020-01-15 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1018919 147 2020-01-16 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1018920 147 2020-01-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1018921 147 2020-01-18 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1018922 147 2020-01-19 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1018923 147 2020-01-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1079192 146 2020-03-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079193 146 2020-03-28 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1079194 146 2020-03-29 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1079195 146 2020-03-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079196 146 2020-03-31 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1018924 147 2020-01-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1018925 147 2020-01-22 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1018926 147 2020-01-23 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1018927 147 2020-01-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1018928 147 2020-01-25 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1018929 147 2020-01-26 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1018930 147 2020-01-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1018931 147 2020-01-28 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1018932 147 2020-01-29 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1018933 147 2020-01-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1018934 147 2020-01-31 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1018935 147 2020-02-01 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1018936 147 2020-02-02 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1018937 147 2020-02-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1018938 147 2020-02-04 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1018939 147 2020-02-05 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1018940 147 2020-02-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1018941 147 2020-02-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1018942 147 2020-02-08 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1018943 147 2020-02-09 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1018944 147 2020-02-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1018945 147 2020-02-11 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1018946 147 2020-02-12 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1018947 147 2020-02-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1018948 147 2020-02-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1018949 147 2020-02-15 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1018950 147 2020-02-16 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1018951 147 2020-02-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1018952 147 2020-02-18 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1018953 147 2020-02-19 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1018954 147 2020-02-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1021078 131 2020-01-23 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1021079 131 2020-01-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1021080 131 2020-01-25 \N \N \N \N \N 00:00:00 03:20:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1021081 131 2020-01-26 \N \N \N \N \N 00:00:00 03:20:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1079197 146 2020-04-01 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079198 146 2020-04-02 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079199 146 2020-04-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079200 146 2020-04-04 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1079201 146 2020-04-05 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1021082 131 2020-01-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1021083 131 2020-01-28 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1021107 131 2020-02-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1021108 131 2020-02-22 \N \N \N \N \N 00:00:00 03:20:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1021109 131 2020-02-23 \N \N \N \N \N 00:00:00 03:20:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1023223 104 2020-01-16 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 05:00:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1023224 104 2020-01-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 05:00:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1023225 104 2020-01-18 \N \N \N \N \N 00:00:00 05:00:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1023226 104 2020-01-19 \N \N \N \N \N 00:00:00 05:00:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1023227 104 2020-01-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 05:00:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1023228 104 2020-01-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 05:00:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1023229 104 2020-01-22 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 05:00:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1023230 104 2020-01-23 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 05:00:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1023231 104 2020-01-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 05:00:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1023232 104 2020-01-25 \N \N \N \N \N 00:00:00 05:00:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1023233 104 2020-01-26 \N \N \N \N \N 00:00:00 05:00:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1023234 104 2020-01-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 05:00:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1023235 104 2020-01-28 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 05:00:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1023236 104 2020-01-29 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 05:00:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1023237 104 2020-01-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 05:00:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1023238 104 2020-01-31 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 05:00:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1023239 104 2020-02-01 \N \N \N \N \N 00:00:00 05:00:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1023240 104 2020-02-02 \N \N \N \N \N 00:00:00 05:00:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1023241 104 2020-02-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 05:00:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1023242 104 2020-02-04 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 05:00:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1023243 104 2020-02-05 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 05:00:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1023244 104 2020-02-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 05:00:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1023245 104 2020-02-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 05:00:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1023246 104 2020-02-08 \N \N \N \N \N 00:00:00 05:00:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1023247 104 2020-02-09 \N \N \N \N \N 00:00:00 05:00:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1023248 104 2020-02-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 05:00:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1023249 104 2020-02-11 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 05:00:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1023250 104 2020-02-12 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 05:00:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1023251 104 2020-02-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 05:00:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1023252 104 2020-02-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 05:00:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1027530 138 2020-01-19 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1079202 146 2020-04-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079203 146 2020-04-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079204 146 2020-04-08 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079205 146 2020-04-09 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1027531 138 2020-01-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1027532 138 2020-01-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1027533 138 2020-01-22 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1027534 138 2020-01-23 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1027535 138 2020-01-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1027536 138 2020-01-25 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1027537 138 2020-01-26 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1027538 138 2020-01-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1027539 138 2020-01-28 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1027540 138 2020-01-29 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1027541 138 2020-01-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1027542 138 2020-01-31 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1027543 138 2020-02-01 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1027544 138 2020-02-02 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1027545 138 2020-02-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1027546 138 2020-02-04 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1027547 138 2020-02-05 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1027548 138 2020-02-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1027549 138 2020-02-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1027550 138 2020-02-08 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1027551 138 2020-02-09 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1027557 138 2020-02-15 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1029700 105 2020-02-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1029701 105 2020-02-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1029702 105 2020-02-08 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1029703 105 2020-02-09 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1029704 105 2020-02-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1029705 105 2020-02-11 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1029706 105 2020-02-12 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1029707 105 2020-02-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1029708 105 2020-02-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1029709 105 2020-02-15 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1029710 105 2020-02-16 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1029711 105 2020-02-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1029712 105 2020-02-18 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1029713 105 2020-02-19 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1079206 146 2020-04-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079207 146 2020-04-11 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1079208 146 2020-04-12 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1079209 146 2020-04-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079210 146 2020-04-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1029714 105 2020-02-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1029715 105 2020-02-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1029716 105 2020-02-22 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1029717 105 2020-02-23 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1031836 134 2020-01-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1031837 134 2020-01-22 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1031838 134 2020-01-23 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1031839 134 2020-01-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1031840 134 2020-01-25 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1031841 134 2020-01-26 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1031842 134 2020-01-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1031843 134 2020-01-28 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1031844 134 2020-01-29 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1031845 134 2020-01-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1031846 134 2020-01-31 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1031847 134 2020-02-01 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1031848 134 2020-02-02 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1031849 134 2020-02-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1033995 144 2020-01-28 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1033996 144 2020-01-29 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1033997 144 2020-01-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1033998 144 2020-01-31 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1033999 144 2020-02-01 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1034000 144 2020-02-02 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1034001 144 2020-02-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1034002 144 2020-02-04 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1034003 144 2020-02-05 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1034004 144 2020-02-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1034005 144 2020-02-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1034006 144 2020-02-08 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1034007 144 2020-02-09 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1034008 144 2020-02-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1034009 144 2020-02-11 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1034010 144 2020-02-12 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1034011 144 2020-02-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1079211 146 2020-04-15 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079212 146 2020-04-16 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079213 146 2020-04-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079214 146 2020-04-18 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1079215 146 2020-04-19 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1034012 144 2020-02-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1034013 144 2020-02-15 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1034014 144 2020-02-16 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1034015 144 2020-02-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1034016 144 2020-02-18 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1034017 144 2020-02-19 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1034018 144 2020-02-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1034019 144 2020-02-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1034020 144 2020-02-22 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1034021 144 2020-02-23 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1036141 102 2020-01-22 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1036142 102 2020-01-23 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1036143 102 2020-01-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1036144 102 2020-01-25 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1036145 102 2020-01-26 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1036146 102 2020-01-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1036147 102 2020-01-28 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1036148 102 2020-01-29 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1036149 102 2020-01-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1036150 102 2020-01-31 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1038288 109 2020-01-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1038289 109 2020-01-18 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1038290 109 2020-01-19 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1038291 109 2020-01-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1038292 109 2020-01-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1038293 109 2020-01-22 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1038294 109 2020-01-23 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1038295 109 2020-01-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1038296 109 2020-01-25 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1038297 109 2020-01-26 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1038298 109 2020-01-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1038299 109 2020-01-28 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1038300 109 2020-01-29 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1038301 109 2020-01-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1038302 109 2020-01-31 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1038303 109 2020-02-01 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1038304 109 2020-02-02 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1079216 115 2020-02-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079217 115 2020-02-25 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079218 115 2020-02-26 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079219 115 2020-02-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1038305 109 2020-02-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1038306 109 2020-02-04 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1038307 109 2020-02-05 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1038308 109 2020-02-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1038309 109 2020-02-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1038310 109 2020-02-08 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1038311 109 2020-02-09 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1038312 109 2020-02-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1038313 109 2020-02-11 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1038314 109 2020-02-12 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1038315 109 2020-02-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1038316 109 2020-02-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1038317 109 2020-02-15 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1038318 109 2020-02-16 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1038319 109 2020-02-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1038320 109 2020-02-18 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1038321 109 2020-02-19 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1038322 109 2020-02-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1038323 109 2020-02-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1038324 109 2020-02-22 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1038325 109 2020-02-23 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1040445 118 2020-01-22 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1040446 118 2020-01-23 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1040447 118 2020-01-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1040448 118 2020-01-25 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1040449 118 2020-01-26 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1040450 118 2020-01-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1040451 118 2020-01-28 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1040452 118 2020-01-29 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1040453 118 2020-01-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1040454 118 2020-01-31 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1042588 133 2020-01-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1042589 133 2020-01-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1042590 133 2020-01-15 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1079220 115 2020-02-28 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079221 115 2020-02-29 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1079222 115 2020-03-01 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1079223 115 2020-03-02 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079224 115 2020-03-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1042591 133 2020-01-16 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1042592 133 2020-01-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1042593 133 2020-01-18 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1042594 133 2020-01-19 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1042595 133 2020-01-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1042596 133 2020-01-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1042597 133 2020-01-22 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1042598 133 2020-01-23 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1042599 133 2020-01-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1042600 133 2020-01-25 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1042601 133 2020-01-26 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1042602 133 2020-01-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1042603 133 2020-01-28 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1042604 133 2020-01-29 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1042605 133 2020-01-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1042606 133 2020-01-31 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1042607 133 2020-02-01 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1042608 133 2020-02-02 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1042609 133 2020-02-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1042610 133 2020-02-04 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1042611 133 2020-02-05 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1042612 133 2020-02-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1042613 133 2020-02-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1042614 133 2020-02-08 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1042615 133 2020-02-09 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1042616 133 2020-02-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1042617 133 2020-02-11 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1042618 133 2020-02-12 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1042619 133 2020-02-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1042620 133 2020-02-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1042621 133 2020-02-15 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1042622 133 2020-02-16 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1042623 133 2020-02-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1042624 133 2020-02-18 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1042625 133 2020-02-19 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1079225 115 2020-03-04 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079226 115 2020-03-05 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079227 115 2020-03-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079228 115 2020-03-07 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1079229 115 2020-03-08 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1042626 133 2020-02-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1042627 133 2020-02-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1042628 133 2020-02-22 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1042629 133 2020-02-23 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1044749 111 2020-01-22 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1044750 111 2020-01-23 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1044751 111 2020-01-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1044752 111 2020-01-25 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1044753 111 2020-01-26 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1044754 111 2020-01-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1044755 111 2020-01-28 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1044756 111 2020-01-29 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1044757 111 2020-01-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1044758 111 2020-01-31 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1046893 128 2020-01-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1046894 128 2020-01-15 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1046895 128 2020-01-16 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1046896 128 2020-01-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1046897 128 2020-01-18 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1046898 128 2020-01-19 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1046899 128 2020-01-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1046900 128 2020-01-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1046901 128 2020-01-22 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1046902 128 2020-01-23 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1046903 128 2020-01-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1046904 128 2020-01-25 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1046905 128 2020-01-26 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1046906 128 2020-01-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1046907 128 2020-01-28 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1046908 128 2020-01-29 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1046909 128 2020-01-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1046910 128 2020-01-31 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1046911 128 2020-02-01 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1046912 128 2020-02-02 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1046913 128 2020-02-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1079230 115 2020-03-09 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079231 115 2020-03-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079232 115 2020-03-11 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079233 115 2020-03-12 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1046914 128 2020-02-04 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1046915 128 2020-02-05 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1046916 128 2020-02-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1046917 128 2020-02-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1046918 128 2020-02-08 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1046919 128 2020-02-09 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1046920 128 2020-02-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1046921 128 2020-02-11 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1046922 128 2020-02-12 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1046923 128 2020-02-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1046924 128 2020-02-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1046925 128 2020-02-15 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1046926 128 2020-02-16 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1046927 128 2020-02-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1046928 128 2020-02-18 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1046929 128 2020-02-19 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1046930 128 2020-02-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1049054 142 2020-01-23 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1049055 142 2020-01-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1049056 142 2020-01-25 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1049057 142 2020-01-26 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1049058 142 2020-01-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1049059 142 2020-01-28 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1049083 142 2020-02-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1049084 142 2020-02-22 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1049085 142 2020-02-23 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1051199 136 2020-01-16 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1051200 136 2020-01-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1051201 136 2020-01-18 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1051202 136 2020-01-19 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1051203 136 2020-01-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1051204 136 2020-01-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1051205 136 2020-01-22 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1051206 136 2020-01-23 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1051207 136 2020-01-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1051208 136 2020-01-25 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1051209 136 2020-01-26 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1079234 115 2020-03-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079235 115 2020-03-14 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1079236 115 2020-03-15 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1079237 115 2020-03-16 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1051210 136 2020-01-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1051211 136 2020-01-28 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1051212 136 2020-01-29 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1051213 136 2020-01-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1051214 136 2020-01-31 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1051215 136 2020-02-01 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1051216 136 2020-02-02 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1051217 136 2020-02-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1051218 136 2020-02-04 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1051219 136 2020-02-05 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1051220 136 2020-02-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1051221 136 2020-02-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1051222 136 2020-02-08 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1051223 136 2020-02-09 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1051224 136 2020-02-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1051225 136 2020-02-11 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1051226 136 2020-02-12 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1051227 136 2020-02-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1051228 136 2020-02-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1055506 139 2020-01-19 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1055507 139 2020-01-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1055508 139 2020-01-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1055509 139 2020-01-22 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1055510 139 2020-01-23 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1055511 139 2020-01-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1055512 139 2020-01-25 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1055513 139 2020-01-26 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1055514 139 2020-01-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1055515 139 2020-01-28 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1055516 139 2020-01-29 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1055517 139 2020-01-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1055518 139 2020-01-31 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1055519 139 2020-02-01 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1055520 139 2020-02-02 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1079238 115 2020-03-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079239 115 2020-03-18 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079240 115 2020-03-19 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079241 115 2020-03-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079242 115 2020-03-21 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1079243 115 2020-03-22 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1055521 139 2020-02-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1055522 139 2020-02-04 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1055523 139 2020-02-05 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1055524 139 2020-02-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1055525 139 2020-02-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1055526 139 2020-02-08 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1055527 139 2020-02-09 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1055533 139 2020-02-15 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1057676 141 2020-02-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1057677 141 2020-02-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1057678 141 2020-02-08 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1057679 141 2020-02-09 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1057680 141 2020-02-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1057681 141 2020-02-11 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1057682 141 2020-02-12 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1057683 141 2020-02-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1057684 141 2020-02-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1057685 141 2020-02-15 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1057686 141 2020-02-16 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1057687 141 2020-02-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1057688 141 2020-02-18 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1057689 141 2020-02-19 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1057690 141 2020-02-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1057691 141 2020-02-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1057692 141 2020-02-22 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1057693 141 2020-02-23 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1059812 122 2020-01-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1059813 122 2020-01-22 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1059814 122 2020-01-23 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1059815 122 2020-01-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1059816 122 2020-01-25 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1059817 122 2020-01-26 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1059818 122 2020-01-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1059819 122 2020-01-28 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1059820 122 2020-01-29 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1059821 122 2020-01-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1059822 122 2020-01-31 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1079244 115 2020-03-23 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079245 115 2020-03-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079246 115 2020-03-25 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079247 115 2020-03-26 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1059823 122 2020-02-01 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1059824 122 2020-02-02 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1059825 122 2020-02-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1061971 106 2020-01-28 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 02:05:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1061972 106 2020-01-29 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 02:05:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1061973 106 2020-01-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 02:05:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1061974 106 2020-01-31 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 02:05:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1061975 106 2020-02-01 \N \N \N \N \N 00:00:00 02:05:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1061976 106 2020-02-02 \N \N \N \N \N 00:00:00 02:05:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1061977 106 2020-02-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 02:05:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1061978 106 2020-02-04 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 02:05:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1061979 106 2020-02-05 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 02:05:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1061980 106 2020-02-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 02:05:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1061981 106 2020-02-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 02:05:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1061982 106 2020-02-08 \N \N \N \N \N 00:00:00 02:05:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1061983 106 2020-02-09 \N \N \N \N \N 00:00:00 02:05:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1061984 106 2020-02-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 02:05:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1061985 106 2020-02-11 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 02:05:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1061986 106 2020-02-12 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 02:05:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1061987 106 2020-02-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 02:05:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1061988 106 2020-02-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 02:05:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1061989 106 2020-02-15 \N \N \N \N \N 00:00:00 02:05:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1061990 106 2020-02-16 \N \N \N \N \N 00:00:00 02:05:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1061991 106 2020-02-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 02:05:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1061992 106 2020-02-18 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 02:05:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1061993 106 2020-02-19 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 02:05:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1061994 106 2020-02-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 02:05:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1061995 106 2020-02-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 02:05:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1061996 106 2020-02-22 \N \N \N \N \N 00:00:00 02:05:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1061997 106 2020-02-23 \N \N \N \N \N 00:00:00 02:05:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1064117 110 2020-01-22 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1064118 110 2020-01-23 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1064119 110 2020-01-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1064120 110 2020-01-25 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1064121 110 2020-01-26 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1064122 110 2020-01-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1079248 115 2020-03-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079249 115 2020-03-28 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1079250 115 2020-03-29 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1079251 115 2020-03-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079252 115 2020-03-31 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1064123 110 2020-01-28 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1064124 110 2020-01-29 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1064125 110 2020-01-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1064126 110 2020-01-31 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1066264 145 2020-01-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1066265 145 2020-01-18 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1066266 145 2020-01-19 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1066267 145 2020-01-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1066268 145 2020-01-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1066269 145 2020-01-22 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1066270 145 2020-01-23 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1066271 145 2020-01-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1066272 145 2020-01-25 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1066273 145 2020-01-26 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1066274 145 2020-01-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1066275 145 2020-01-28 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1066276 145 2020-01-29 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1066277 145 2020-01-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1066278 145 2020-01-31 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1066279 145 2020-02-01 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1066280 145 2020-02-02 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1066281 145 2020-02-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1066282 145 2020-02-04 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1066283 145 2020-02-05 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1066284 145 2020-02-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1066285 145 2020-02-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1066286 145 2020-02-08 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1066287 145 2020-02-09 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1066288 145 2020-02-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1066289 145 2020-02-11 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1066290 145 2020-02-12 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1066291 145 2020-02-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1066292 145 2020-02-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1066293 145 2020-02-15 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1066294 145 2020-02-16 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1079253 115 2020-04-01 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079254 115 2020-04-02 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079255 115 2020-04-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079256 115 2020-04-04 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1066295 145 2020-02-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1066296 145 2020-02-18 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1066297 145 2020-02-19 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1066298 145 2020-02-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1066299 145 2020-02-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1066300 145 2020-02-22 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1066301 145 2020-02-23 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1068421 148 2020-01-22 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1068422 148 2020-01-23 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1068423 148 2020-01-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1068424 148 2020-01-25 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1068425 148 2020-01-26 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1068426 148 2020-01-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1068427 148 2020-01-28 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1068428 148 2020-01-29 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1068429 148 2020-01-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1068430 148 2020-01-31 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1070564 130 2020-01-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1070565 130 2020-01-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1070566 130 2020-01-15 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1070567 130 2020-01-16 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1070568 130 2020-01-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1070569 130 2020-01-18 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1070570 130 2020-01-19 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1070571 130 2020-01-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1070572 130 2020-01-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1070573 130 2020-01-22 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1070574 130 2020-01-23 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1070575 130 2020-01-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1070576 130 2020-01-25 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1070577 130 2020-01-26 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1070578 130 2020-01-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1070579 130 2020-01-28 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1070580 130 2020-01-29 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1070581 130 2020-01-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1079257 115 2020-04-05 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1079258 115 2020-04-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079259 115 2020-04-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079260 115 2020-04-08 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079261 115 2020-04-09 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1070582 130 2020-01-31 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1070583 130 2020-02-01 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1070584 130 2020-02-02 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1070585 130 2020-02-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1070586 130 2020-02-04 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1070587 130 2020-02-05 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1070588 130 2020-02-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1070589 130 2020-02-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1070590 130 2020-02-08 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1070591 130 2020-02-09 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1070592 130 2020-02-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1070593 130 2020-02-11 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1070594 130 2020-02-12 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1070595 130 2020-02-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1070596 130 2020-02-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1070597 130 2020-02-15 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1070598 130 2020-02-16 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1070599 130 2020-02-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1070600 130 2020-02-18 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1070601 130 2020-02-19 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1070602 130 2020-02-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1070603 130 2020-02-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1070604 130 2020-02-22 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1070605 130 2020-02-23 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -914490 129 2020-01-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -914491 129 2020-01-28 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -914492 129 2020-01-29 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -914493 129 2020-01-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -914494 129 2020-01-31 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -914495 129 2020-02-01 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -914496 129 2020-02-02 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -914497 129 2020-02-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -914498 129 2020-02-04 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -914499 129 2020-02-05 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1079262 115 2020-04-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079263 115 2020-04-11 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1079264 115 2020-04-12 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1079265 115 2020-04-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079266 115 2020-04-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -914500 129 2020-02-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -914501 129 2020-02-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -914502 129 2020-02-08 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -914503 129 2020-02-09 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -914504 129 2020-02-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -914505 129 2020-02-11 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -914506 129 2020-02-12 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -914507 129 2020-02-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -914508 129 2020-02-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -914509 129 2020-02-15 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -914510 129 2020-02-16 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -914511 129 2020-02-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -914512 129 2020-02-18 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -914513 129 2020-02-19 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -914514 129 2020-02-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -914515 129 2020-02-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -914516 129 2020-02-22 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1074877 143 2020-01-22 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1074878 143 2020-01-23 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1074879 143 2020-01-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1074880 143 2020-01-25 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1074881 143 2020-01-26 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1074882 143 2020-01-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1074883 143 2020-01-28 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1074884 143 2020-01-29 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1074885 143 2020-01-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1074886 143 2020-01-31 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1079160 146 2020-02-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079161 146 2020-02-25 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079162 146 2020-02-26 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079163 146 2020-02-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079164 146 2020-02-28 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079165 146 2020-02-29 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1079267 115 2020-04-15 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079268 115 2020-04-16 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079269 115 2020-04-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079270 115 2020-04-18 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1079271 115 2020-04-19 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1079272 114 2020-02-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079273 114 2020-02-25 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079274 114 2020-02-26 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079275 114 2020-02-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079276 114 2020-02-28 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079277 114 2020-02-29 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1079278 114 2020-03-01 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -988776 146 2020-01-01 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -988777 146 2020-01-02 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -988778 146 2020-01-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -988779 146 2020-01-04 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -988780 146 2020-01-05 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -988781 146 2020-01-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -988782 146 2020-01-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -988783 146 2020-01-08 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -988784 146 2020-01-09 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -988785 146 2020-01-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -988786 146 2020-01-11 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -988787 146 2020-01-12 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1079279 114 2020-03-02 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079280 114 2020-03-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079281 114 2020-03-04 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079282 114 2020-03-05 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079283 114 2020-03-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -988788 146 2020-01-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -988789 146 2020-01-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1079284 114 2020-03-07 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -988790 146 2020-01-15 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -988791 146 2020-01-16 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1079285 114 2020-03-08 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -988792 146 2020-01-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -988793 146 2020-01-18 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1079286 114 2020-03-09 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -988794 146 2020-01-19 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -988795 146 2020-01-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -988796 146 2020-01-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -988806 146 2020-01-31 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -988807 146 2020-02-01 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -988808 146 2020-02-02 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -988809 146 2020-02-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -988810 146 2020-02-04 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -988811 146 2020-02-05 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -988812 146 2020-02-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -988813 146 2020-02-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -988814 146 2020-02-08 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -988815 146 2020-02-09 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -988816 146 2020-02-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -988817 146 2020-02-11 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -988818 146 2020-02-12 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -988819 146 2020-02-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -988820 146 2020-02-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -988821 146 2020-02-15 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -988822 146 2020-02-16 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -988823 146 2020-02-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -988824 146 2020-02-18 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1079287 114 2020-03-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -988825 146 2020-02-19 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -988826 146 2020-02-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1079288 114 2020-03-11 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -988827 146 2020-02-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -988828 146 2020-02-22 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1079289 114 2020-03-12 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -988829 146 2020-02-23 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1079290 114 2020-03-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079291 114 2020-03-14 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1079292 114 2020-03-15 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1079293 114 2020-03-16 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079294 114 2020-03-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079295 114 2020-03-18 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079296 114 2020-03-19 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079297 114 2020-03-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079298 114 2020-03-21 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1079299 114 2020-03-22 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1079300 114 2020-03-23 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079301 114 2020-03-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079302 114 2020-03-25 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079303 114 2020-03-26 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079304 114 2020-03-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079305 114 2020-03-28 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1079306 114 2020-03-29 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1079307 114 2020-03-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079308 114 2020-03-31 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079309 114 2020-04-01 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079310 114 2020-04-02 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079311 114 2020-04-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079312 114 2020-04-04 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1079313 114 2020-04-05 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1079314 114 2020-04-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079315 114 2020-04-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079316 114 2020-04-08 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079317 114 2020-04-09 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079318 114 2020-04-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079319 114 2020-04-11 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1079320 114 2020-04-12 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1079321 114 2020-04-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079322 114 2020-04-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079323 114 2020-04-15 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079324 114 2020-04-16 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079325 114 2020-04-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079326 114 2020-04-18 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1079327 114 2020-04-19 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1079328 112 2020-02-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079329 112 2020-02-25 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079330 112 2020-02-26 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079331 112 2020-02-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079332 112 2020-02-28 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079333 112 2020-02-29 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1079334 112 2020-03-01 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1079335 112 2020-03-02 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079336 112 2020-03-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079337 112 2020-03-04 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079338 112 2020-03-05 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079339 112 2020-03-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079340 112 2020-03-07 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1079341 112 2020-03-08 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1079342 112 2020-03-09 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079343 112 2020-03-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079344 112 2020-03-11 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079345 112 2020-03-12 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079346 112 2020-03-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079347 112 2020-03-14 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1079348 112 2020-03-15 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1079349 112 2020-03-16 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079350 112 2020-03-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079351 112 2020-03-18 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079352 112 2020-03-19 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079353 112 2020-03-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079354 112 2020-03-21 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1079355 112 2020-03-22 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1079356 112 2020-03-23 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079357 112 2020-03-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079358 112 2020-03-25 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079359 112 2020-03-26 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079360 112 2020-03-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079361 112 2020-03-28 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1079362 112 2020-03-29 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1079363 112 2020-03-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079364 112 2020-03-31 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079365 112 2020-04-01 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079366 112 2020-04-02 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079367 112 2020-04-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079368 112 2020-04-04 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1079369 112 2020-04-05 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1079370 112 2020-04-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079371 112 2020-04-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079372 112 2020-04-08 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079373 112 2020-04-09 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079374 112 2020-04-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079375 112 2020-04-11 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1079376 112 2020-04-12 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1079377 112 2020-04-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079378 112 2020-04-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079379 112 2020-04-15 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079380 112 2020-04-16 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079381 112 2020-04-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079382 112 2020-04-18 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1079383 112 2020-04-19 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1079384 108 2020-02-24 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1079385 108 2020-02-25 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1079386 108 2020-02-26 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1079387 108 2020-02-27 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1079388 108 2020-02-28 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1079389 108 2020-02-29 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1079390 108 2020-03-01 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1079391 108 2020-03-02 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1079392 108 2020-03-03 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1079393 108 2020-03-04 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1079394 108 2020-03-05 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1079395 108 2020-03-06 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1079396 108 2020-03-07 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1079397 108 2020-03-08 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1079398 108 2020-03-09 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1079399 108 2020-03-10 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1079400 108 2020-03-11 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1079401 108 2020-03-12 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1079402 108 2020-03-13 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1079403 108 2020-03-14 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1079404 108 2020-03-15 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1079405 108 2020-03-16 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1079406 108 2020-03-17 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1079407 108 2020-03-18 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1079408 108 2020-03-19 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1079409 108 2020-03-20 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1079410 108 2020-03-21 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1079411 108 2020-03-22 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1079412 108 2020-03-23 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1079413 108 2020-03-24 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1079414 108 2020-03-25 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1079415 108 2020-03-26 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1079416 108 2020-03-27 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1079417 108 2020-03-28 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1079418 108 2020-03-29 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1079419 108 2020-03-30 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1079420 108 2020-03-31 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1079421 108 2020-04-01 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1079422 108 2020-04-02 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1079423 108 2020-04-03 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1079424 108 2020-04-04 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1079425 108 2020-04-05 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1079426 108 2020-04-06 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1079427 108 2020-04-07 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1079428 108 2020-04-08 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1079429 108 2020-04-09 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1079430 108 2020-04-10 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1079431 108 2020-04-11 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1079432 108 2020-04-12 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1079433 108 2020-04-13 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1079434 108 2020-04-14 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1079435 108 2020-04-15 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1079436 108 2020-04-16 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1079437 108 2020-04-17 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1079438 108 2020-04-18 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1079439 108 2020-04-19 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1079440 135 2020-02-24 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1079441 135 2020-02-25 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1079442 135 2020-02-26 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1079443 135 2020-02-27 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1079444 135 2020-02-28 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1079445 135 2020-02-29 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1079446 135 2020-03-01 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1079447 135 2020-03-02 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1079448 135 2020-03-03 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1079449 135 2020-03-04 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1079450 135 2020-03-05 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1079451 135 2020-03-06 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1079452 135 2020-03-07 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1079453 135 2020-03-08 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1079454 135 2020-03-09 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1079455 135 2020-03-10 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1079456 135 2020-03-11 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1079457 135 2020-03-12 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1079458 135 2020-03-13 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1079459 135 2020-03-14 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1079460 135 2020-03-15 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1079461 135 2020-03-16 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1079462 135 2020-03-17 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1079463 135 2020-03-18 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1079464 135 2020-03-19 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1079465 135 2020-03-20 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1079466 135 2020-03-21 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1079467 135 2020-03-22 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1079468 135 2020-03-23 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1079469 135 2020-03-24 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1079470 135 2020-03-25 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1079471 135 2020-03-26 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1079472 135 2020-03-27 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1079473 135 2020-03-28 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1079474 135 2020-03-29 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1079475 135 2020-03-30 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1079476 135 2020-03-31 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1079477 135 2020-04-01 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1079478 135 2020-04-02 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1079479 135 2020-04-03 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1079480 135 2020-04-04 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1079481 135 2020-04-05 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1079482 135 2020-04-06 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1079483 135 2020-04-07 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1079484 135 2020-04-08 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1079485 135 2020-04-09 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1079486 135 2020-04-10 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1079487 135 2020-04-11 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1079488 135 2020-04-12 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1079489 135 2020-04-13 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1079490 135 2020-04-14 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1079491 135 2020-04-15 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1079492 135 2020-04-16 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1079493 135 2020-04-17 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1079494 135 2020-04-18 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1079495 135 2020-04-19 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1079496 127 2020-02-24 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1079497 127 2020-02-25 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1079498 127 2020-02-26 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1079499 127 2020-02-27 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1079500 127 2020-02-28 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1079501 127 2020-02-29 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1079502 127 2020-03-01 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1079503 127 2020-03-02 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1079504 127 2020-03-03 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1079505 127 2020-03-04 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1079506 127 2020-03-05 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1079507 127 2020-03-06 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1079508 127 2020-03-07 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1079509 127 2020-03-08 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1079510 127 2020-03-09 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1079511 127 2020-03-10 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1079512 127 2020-03-11 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1079513 127 2020-03-12 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1079514 127 2020-03-13 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1079515 127 2020-03-14 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1079516 127 2020-03-15 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1079517 127 2020-03-16 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1079518 127 2020-03-17 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1079519 127 2020-03-18 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1079520 127 2020-03-19 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1079521 127 2020-03-20 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1079522 127 2020-03-21 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1079523 127 2020-03-22 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1079524 127 2020-03-23 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1079525 127 2020-03-24 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1079526 127 2020-03-25 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1079527 127 2020-03-26 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1079528 127 2020-03-27 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1079529 127 2020-03-28 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1079530 127 2020-03-29 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1079531 127 2020-03-30 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1079532 127 2020-03-31 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1079533 127 2020-04-01 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1079534 127 2020-04-02 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1079535 127 2020-04-03 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1079536 127 2020-04-04 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1079537 127 2020-04-05 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1079538 127 2020-04-06 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1079539 127 2020-04-07 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1079540 127 2020-04-08 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1079541 127 2020-04-09 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1079542 127 2020-04-10 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1079543 127 2020-04-11 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1079544 127 2020-04-12 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1079545 127 2020-04-13 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1079546 127 2020-04-14 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1079547 127 2020-04-15 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1079548 127 2020-04-16 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1079549 127 2020-04-17 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1079550 127 2020-04-18 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1079551 127 2020-04-19 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1079552 149 2020-02-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079553 149 2020-02-25 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079554 149 2020-02-26 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079555 149 2020-02-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079556 149 2020-02-28 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079557 149 2020-02-29 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1079558 149 2020-03-01 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1079559 149 2020-03-02 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079560 149 2020-03-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079561 149 2020-03-04 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079562 149 2020-03-05 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079563 149 2020-03-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079564 149 2020-03-07 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1079565 149 2020-03-08 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1079566 149 2020-03-09 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079567 149 2020-03-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079568 149 2020-03-11 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079569 149 2020-03-12 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079570 149 2020-03-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079571 149 2020-03-14 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1079572 149 2020-03-15 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1079573 149 2020-03-16 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079574 149 2020-03-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079575 149 2020-03-18 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079576 149 2020-03-19 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079577 149 2020-03-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079578 149 2020-03-21 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1079579 149 2020-03-22 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1079580 149 2020-03-23 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079581 149 2020-03-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -990928 132 2020-01-01 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -990929 132 2020-01-02 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -990930 132 2020-01-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -990931 132 2020-01-04 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -990932 132 2020-01-05 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -990933 132 2020-01-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -990934 132 2020-01-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -990935 132 2020-01-08 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -990936 132 2020-01-09 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -990937 132 2020-01-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -990938 132 2020-01-11 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -990939 132 2020-01-12 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -990940 132 2020-01-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -990941 132 2020-01-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -990942 132 2020-01-15 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1079582 149 2020-03-25 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079583 149 2020-03-26 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079584 149 2020-03-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079585 149 2020-03-28 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1079586 149 2020-03-29 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1079587 149 2020-03-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079588 149 2020-03-31 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079589 149 2020-04-01 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079590 149 2020-04-02 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079591 149 2020-04-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079592 149 2020-04-04 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1079593 149 2020-04-05 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1079594 149 2020-04-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079595 149 2020-04-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079596 149 2020-04-08 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079597 149 2020-04-09 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079598 149 2020-04-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079599 149 2020-04-11 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1079600 149 2020-04-12 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1079601 149 2020-04-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079602 149 2020-04-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079603 149 2020-04-15 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079604 149 2020-04-16 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079605 149 2020-04-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079606 149 2020-04-18 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1079607 149 2020-04-19 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1079608 103 2020-02-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079609 103 2020-02-25 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079610 103 2020-02-26 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079611 103 2020-02-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079612 103 2020-02-28 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079613 103 2020-02-29 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1079614 103 2020-03-01 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1079615 103 2020-03-02 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079616 103 2020-03-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079617 103 2020-03-04 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079618 103 2020-03-05 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079619 103 2020-03-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079620 103 2020-03-07 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1079621 103 2020-03-08 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1079622 103 2020-03-09 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079623 103 2020-03-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079624 103 2020-03-11 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079625 103 2020-03-12 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079626 103 2020-03-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079627 103 2020-03-14 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1079628 103 2020-03-15 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1079629 103 2020-03-16 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079630 103 2020-03-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079631 103 2020-03-18 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079632 103 2020-03-19 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079633 103 2020-03-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079634 103 2020-03-21 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1079635 103 2020-03-22 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1079636 103 2020-03-23 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079637 103 2020-03-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079638 103 2020-03-25 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079639 103 2020-03-26 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079640 103 2020-03-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079641 103 2020-03-28 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1079642 103 2020-03-29 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1079643 103 2020-03-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079644 103 2020-03-31 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079645 103 2020-04-01 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079646 103 2020-04-02 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079647 103 2020-04-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079648 103 2020-04-04 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1079649 103 2020-04-05 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1079650 103 2020-04-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079651 103 2020-04-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079652 103 2020-04-08 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079653 103 2020-04-09 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079654 103 2020-04-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079655 103 2020-04-11 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1079656 103 2020-04-12 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1079657 103 2020-04-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079658 103 2020-04-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079659 103 2020-04-15 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079660 103 2020-04-16 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079661 103 2020-04-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079662 103 2020-04-18 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1079663 103 2020-04-19 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1079664 121 2020-02-24 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1079665 121 2020-02-25 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1079666 121 2020-02-26 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1079667 121 2020-02-27 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1079668 121 2020-02-28 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1079669 121 2020-02-29 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1079670 121 2020-03-01 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1079671 121 2020-03-02 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1079672 121 2020-03-03 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1079673 121 2020-03-04 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1079674 121 2020-03-05 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1079675 121 2020-03-06 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1079676 121 2020-03-07 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1079677 121 2020-03-08 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1079678 121 2020-03-09 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1079679 121 2020-03-10 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1079680 121 2020-03-11 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1079681 121 2020-03-12 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1079682 121 2020-03-13 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1079683 121 2020-03-14 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1079684 121 2020-03-15 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1079685 121 2020-03-16 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1079686 121 2020-03-17 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1079687 121 2020-03-18 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1079688 121 2020-03-19 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1079689 121 2020-03-20 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1079690 121 2020-03-21 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1079691 121 2020-03-22 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1079692 121 2020-03-23 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1079693 121 2020-03-24 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1079694 121 2020-03-25 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1079695 121 2020-03-26 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1079696 121 2020-03-27 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1079697 121 2020-03-28 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1079698 121 2020-03-29 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1079699 121 2020-03-30 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1079700 121 2020-03-31 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1079701 121 2020-04-01 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1079702 121 2020-04-02 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1079703 121 2020-04-03 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1079704 121 2020-04-04 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1079705 121 2020-04-05 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1079706 121 2020-04-06 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1079707 121 2020-04-07 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1079708 121 2020-04-08 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1079709 121 2020-04-09 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1079710 121 2020-04-10 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1079711 121 2020-04-11 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1079712 121 2020-04-12 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1079713 121 2020-04-13 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1079714 121 2020-04-14 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1079715 121 2020-04-15 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1079716 121 2020-04-16 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1079717 121 2020-04-17 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1079718 121 2020-04-18 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1079719 121 2020-04-19 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1079720 125 2020-02-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079721 125 2020-02-25 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079722 125 2020-02-26 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079723 125 2020-02-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079724 125 2020-02-28 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079725 125 2020-02-29 \N \N \N \N \N 00:00:00 03:20:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1079726 125 2020-03-01 \N \N \N \N \N 00:00:00 03:20:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1079727 125 2020-03-02 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079728 125 2020-03-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079729 125 2020-03-04 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079730 125 2020-03-05 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079731 125 2020-03-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079732 125 2020-03-07 \N \N \N \N \N 00:00:00 03:20:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1079733 125 2020-03-08 \N \N \N \N \N 00:00:00 03:20:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1079734 125 2020-03-09 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079735 125 2020-03-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079736 125 2020-03-11 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079737 125 2020-03-12 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079738 125 2020-03-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079739 125 2020-03-14 \N \N \N \N \N 00:00:00 03:20:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1079740 125 2020-03-15 \N \N \N \N \N 00:00:00 03:20:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1079741 125 2020-03-16 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079742 125 2020-03-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079743 125 2020-03-18 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079744 125 2020-03-19 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079745 125 2020-03-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079746 125 2020-03-21 \N \N \N \N \N 00:00:00 03:20:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1079747 125 2020-03-22 \N \N \N \N \N 00:00:00 03:20:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1079748 125 2020-03-23 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079749 125 2020-03-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079750 125 2020-03-25 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079751 125 2020-03-26 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079752 125 2020-03-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079753 125 2020-03-28 \N \N \N \N \N 00:00:00 03:20:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1079754 125 2020-03-29 \N \N \N \N \N 00:00:00 03:20:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1079755 125 2020-03-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079756 125 2020-03-31 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079757 125 2020-04-01 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079758 125 2020-04-02 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079759 125 2020-04-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079760 125 2020-04-04 \N \N \N \N \N 00:00:00 03:20:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1079761 125 2020-04-05 \N \N \N \N \N 00:00:00 03:20:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1079762 125 2020-04-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079763 125 2020-04-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079764 125 2020-04-08 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079765 125 2020-04-09 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079766 125 2020-04-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079767 125 2020-04-11 \N \N \N \N \N 00:00:00 03:20:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1079768 125 2020-04-12 \N \N \N \N \N 00:00:00 03:20:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1079769 125 2020-04-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079770 125 2020-04-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079771 125 2020-04-15 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079772 125 2020-04-16 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079773 125 2020-04-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079774 125 2020-04-18 \N \N \N \N \N 00:00:00 03:20:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1079775 125 2020-04-19 \N \N \N \N \N 00:00:00 03:20:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1079776 119 2020-02-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079777 119 2020-02-25 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079778 119 2020-02-26 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079779 119 2020-02-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079780 119 2020-02-28 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079781 119 2020-02-29 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1079782 119 2020-03-01 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1079783 119 2020-03-02 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079784 119 2020-03-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079785 119 2020-03-04 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079786 119 2020-03-05 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079787 119 2020-03-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079788 119 2020-03-07 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1079789 119 2020-03-08 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1079790 119 2020-03-09 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079791 119 2020-03-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079792 119 2020-03-11 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079793 119 2020-03-12 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079794 119 2020-03-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079795 119 2020-03-14 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1079796 119 2020-03-15 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1079797 119 2020-03-16 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079798 119 2020-03-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079799 119 2020-03-18 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079800 119 2020-03-19 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079801 119 2020-03-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079802 119 2020-03-21 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1079803 119 2020-03-22 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1079804 119 2020-03-23 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079805 119 2020-03-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079806 119 2020-03-25 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079807 119 2020-03-26 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079808 119 2020-03-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079809 119 2020-03-28 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1079810 119 2020-03-29 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1079811 119 2020-03-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079812 119 2020-03-31 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079813 119 2020-04-01 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079814 119 2020-04-02 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079815 119 2020-04-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079816 119 2020-04-04 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1079817 119 2020-04-05 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1079818 119 2020-04-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079819 119 2020-04-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079820 119 2020-04-08 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079821 119 2020-04-09 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079822 119 2020-04-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079823 119 2020-04-11 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1079824 119 2020-04-12 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1079825 119 2020-04-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079826 119 2020-04-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079827 119 2020-04-15 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079828 119 2020-04-16 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079829 119 2020-04-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079830 119 2020-04-18 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1079831 119 2020-04-19 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1079832 113 2020-02-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079833 113 2020-02-25 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079834 113 2020-02-26 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079835 113 2020-02-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079836 113 2020-02-28 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079837 113 2020-02-29 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1079838 113 2020-03-01 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1079839 113 2020-03-02 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079840 113 2020-03-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079841 113 2020-03-04 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -993134 115 2019-12-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -993135 115 2019-12-31 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1079842 113 2020-03-05 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079843 113 2020-03-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079844 113 2020-03-07 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1079845 113 2020-03-08 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1079846 113 2020-03-09 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079847 113 2020-03-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079848 113 2020-03-11 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079849 113 2020-03-12 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079850 113 2020-03-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079851 113 2020-03-14 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1079852 113 2020-03-15 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1079853 113 2020-03-16 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079854 113 2020-03-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079855 113 2020-03-18 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079856 113 2020-03-19 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079857 113 2020-03-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079858 113 2020-03-21 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1079859 113 2020-03-22 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1079860 113 2020-03-23 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079861 113 2020-03-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079862 113 2020-03-25 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079863 113 2020-03-26 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079864 113 2020-03-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079865 113 2020-03-28 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1079866 113 2020-03-29 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1079867 113 2020-03-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079868 113 2020-03-31 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079869 113 2020-04-01 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079870 113 2020-04-02 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079871 113 2020-04-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079872 113 2020-04-04 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1079873 113 2020-04-05 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1079874 113 2020-04-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079875 113 2020-04-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079876 113 2020-04-08 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079877 113 2020-04-09 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079878 113 2020-04-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079879 113 2020-04-11 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1079880 113 2020-04-12 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1079881 113 2020-04-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079882 113 2020-04-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079883 113 2020-04-15 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079884 113 2020-04-16 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079885 113 2020-04-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079886 113 2020-04-18 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1079887 113 2020-04-19 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1079888 147 2020-02-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -993080 115 2020-01-01 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -993081 115 2020-01-02 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -993082 115 2020-01-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -993083 115 2020-01-04 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -993084 115 2020-01-05 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -993085 115 2020-01-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -993086 115 2020-01-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -993087 115 2020-01-08 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -993088 115 2020-01-09 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -993089 115 2020-01-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -993090 115 2020-01-11 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -993091 115 2020-01-12 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -993092 115 2020-01-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -993093 115 2020-01-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1079889 147 2020-02-25 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079890 147 2020-02-26 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079891 147 2020-02-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079892 147 2020-02-28 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -993094 115 2020-01-15 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -993095 115 2020-01-16 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1079893 147 2020-02-29 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -993096 115 2020-01-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -993097 115 2020-01-18 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1079894 147 2020-03-01 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -993098 115 2020-01-19 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -993099 115 2020-01-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1079895 147 2020-03-02 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -993100 115 2020-01-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -993101 115 2020-01-22 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1079896 147 2020-03-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -993108 115 2020-01-29 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -993109 115 2020-01-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -993110 115 2020-01-31 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -993111 115 2020-02-01 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -993112 115 2020-02-02 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -993113 115 2020-02-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -993114 115 2020-02-04 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -993115 115 2020-02-05 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -993116 115 2020-02-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -993117 115 2020-02-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -993118 115 2020-02-08 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -993119 115 2020-02-09 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -993120 115 2020-02-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -993121 115 2020-02-11 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -993122 115 2020-02-12 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1079897 147 2020-03-04 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -993123 115 2020-02-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -993124 115 2020-02-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1079898 147 2020-03-05 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -993125 115 2020-02-15 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -993126 115 2020-02-16 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1079899 147 2020-03-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -993127 115 2020-02-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -993128 115 2020-02-18 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1079900 147 2020-03-07 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -993129 115 2020-02-19 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -993130 115 2020-02-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1079901 147 2020-03-08 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1079902 147 2020-03-09 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079903 147 2020-03-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079904 147 2020-03-11 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079905 147 2020-03-12 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079906 147 2020-03-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079907 147 2020-03-14 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1079908 147 2020-03-15 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1079909 147 2020-03-16 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079910 147 2020-03-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079911 147 2020-03-18 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079912 147 2020-03-19 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079913 147 2020-03-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079914 147 2020-03-21 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1079915 147 2020-03-22 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1079916 147 2020-03-23 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079917 147 2020-03-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079918 147 2020-03-25 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079919 147 2020-03-26 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079920 147 2020-03-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079921 147 2020-03-28 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1079922 147 2020-03-29 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1079923 147 2020-03-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079924 147 2020-03-31 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079925 147 2020-04-01 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079926 147 2020-04-02 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079927 147 2020-04-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079928 147 2020-04-04 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1079929 147 2020-04-05 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1079930 147 2020-04-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079931 147 2020-04-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079932 147 2020-04-08 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079933 147 2020-04-09 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079934 147 2020-04-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079935 147 2020-04-11 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1079936 147 2020-04-12 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1079937 147 2020-04-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079938 147 2020-04-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079939 147 2020-04-15 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079940 147 2020-04-16 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079941 147 2020-04-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1079942 147 2020-04-18 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1079943 147 2020-04-19 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1079944 131 2020-02-24 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1079945 131 2020-02-25 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1079946 131 2020-02-26 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1079947 131 2020-02-27 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1079948 131 2020-02-28 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1079949 131 2020-02-29 \N \N \N \N \N 00:00:00 03:20:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1079950 131 2020-03-01 \N \N \N \N \N 00:00:00 03:20:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1079951 131 2020-03-02 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1079952 131 2020-03-03 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1079953 131 2020-03-04 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1079954 131 2020-03-05 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1079955 131 2020-03-06 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1079956 131 2020-03-07 \N \N \N \N \N 00:00:00 03:20:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1079957 131 2020-03-08 \N \N \N \N \N 00:00:00 03:20:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1079958 131 2020-03-09 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1079959 131 2020-03-10 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1079960 131 2020-03-11 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1079961 131 2020-03-12 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1079962 131 2020-03-13 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1079963 131 2020-03-14 \N \N \N \N \N 00:00:00 03:20:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1079964 131 2020-03-15 \N \N \N \N \N 00:00:00 03:20:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1079965 131 2020-03-16 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1079966 131 2020-03-17 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1079967 131 2020-03-18 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1079968 131 2020-03-19 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1079969 131 2020-03-20 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1079970 131 2020-03-21 \N \N \N \N \N 00:00:00 03:20:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1079971 131 2020-03-22 \N \N \N \N \N 00:00:00 03:20:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1079972 131 2020-03-23 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1079973 131 2020-03-24 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1079974 131 2020-03-25 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1079975 131 2020-03-26 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1079976 131 2020-03-27 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1079977 131 2020-03-28 \N \N \N \N \N 00:00:00 03:20:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1079978 131 2020-03-29 \N \N \N \N \N 00:00:00 03:20:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1079979 131 2020-03-30 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1079980 131 2020-03-31 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1079981 131 2020-04-01 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1079982 131 2020-04-02 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1079983 131 2020-04-03 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1079984 131 2020-04-04 \N \N \N \N \N 00:00:00 03:20:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1079985 131 2020-04-05 \N \N \N \N \N 00:00:00 03:20:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1079986 131 2020-04-06 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1079987 131 2020-04-07 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1079988 131 2020-04-08 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1079989 131 2020-04-09 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1079990 131 2020-04-10 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1079991 131 2020-04-11 \N \N \N \N \N 00:00:00 03:20:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1079992 131 2020-04-12 \N \N \N \N \N 00:00:00 03:20:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1079993 131 2020-04-13 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1079994 131 2020-04-14 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1079995 131 2020-04-15 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1079996 131 2020-04-16 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1079997 131 2020-04-17 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1079998 131 2020-04-18 \N \N \N \N \N 00:00:00 03:20:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1079999 131 2020-04-19 \N \N \N \N \N 00:00:00 03:20:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080000 104 2020-02-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 05:00:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1080001 104 2020-02-25 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 05:00:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1080002 104 2020-02-26 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 05:00:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1080003 104 2020-02-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 05:00:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1080004 104 2020-02-28 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 05:00:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1080005 104 2020-02-29 \N \N \N \N \N 00:00:00 05:00:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080006 104 2020-03-01 \N \N \N \N \N 00:00:00 05:00:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080007 104 2020-03-02 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 05:00:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1080008 104 2020-03-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 05:00:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1080009 104 2020-03-04 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 05:00:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1080010 104 2020-03-05 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 05:00:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1080011 104 2020-03-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 05:00:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1080012 104 2020-03-07 \N \N \N \N \N 00:00:00 05:00:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080013 104 2020-03-08 \N \N \N \N \N 00:00:00 05:00:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080014 104 2020-03-09 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 05:00:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1080015 104 2020-03-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 05:00:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1080016 104 2020-03-11 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 05:00:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1080017 104 2020-03-12 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 05:00:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1080018 104 2020-03-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 05:00:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1080019 104 2020-03-14 \N \N \N \N \N 00:00:00 05:00:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080020 104 2020-03-15 \N \N \N \N \N 00:00:00 05:00:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080021 104 2020-03-16 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 05:00:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1080022 104 2020-03-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 05:00:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1080023 104 2020-03-18 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 05:00:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1080024 104 2020-03-19 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 05:00:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1080025 104 2020-03-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 05:00:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1080026 104 2020-03-21 \N \N \N \N \N 00:00:00 05:00:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080027 104 2020-03-22 \N \N \N \N \N 00:00:00 05:00:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080028 104 2020-03-23 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 05:00:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1080029 104 2020-03-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 05:00:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1080030 104 2020-03-25 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 05:00:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1080031 104 2020-03-26 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 05:00:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1080032 104 2020-03-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 05:00:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1080033 104 2020-03-28 \N \N \N \N \N 00:00:00 05:00:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080034 104 2020-03-29 \N \N \N \N \N 00:00:00 05:00:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080035 104 2020-03-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 05:00:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1080036 104 2020-03-31 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 05:00:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1080037 104 2020-04-01 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 05:00:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1080038 104 2020-04-02 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 05:00:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1080039 104 2020-04-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 05:00:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1080040 104 2020-04-04 \N \N \N \N \N 00:00:00 05:00:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080041 104 2020-04-05 \N \N \N \N \N 00:00:00 05:00:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080042 104 2020-04-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 05:00:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1080043 104 2020-04-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 05:00:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1080044 104 2020-04-08 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 05:00:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1080045 104 2020-04-09 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 05:00:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1080046 104 2020-04-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 05:00:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1080047 104 2020-04-11 \N \N \N \N \N 00:00:00 05:00:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080048 104 2020-04-12 \N \N \N \N \N 00:00:00 05:00:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080049 104 2020-04-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 05:00:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1080050 104 2020-04-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 05:00:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1080051 104 2020-04-15 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 05:00:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1080052 104 2020-04-16 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 05:00:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1080053 104 2020-04-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 05:00:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1080054 104 2020-04-18 \N \N \N \N \N 00:00:00 05:00:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080055 104 2020-04-19 \N \N \N \N \N 00:00:00 05:00:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080056 151 2020-02-24 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080057 151 2020-02-25 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080058 151 2020-02-26 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080059 151 2020-02-27 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080060 151 2020-02-28 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080061 151 2020-02-29 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080062 151 2020-03-01 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080063 151 2020-03-02 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080064 151 2020-03-03 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080065 151 2020-03-04 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080066 151 2020-03-05 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080067 151 2020-03-06 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080068 151 2020-03-07 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080069 151 2020-03-08 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080070 151 2020-03-09 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080071 151 2020-03-10 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080072 151 2020-03-11 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080073 151 2020-03-12 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080074 151 2020-03-13 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080075 151 2020-03-14 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080076 151 2020-03-15 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080077 151 2020-03-16 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080078 151 2020-03-17 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080079 151 2020-03-18 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080080 151 2020-03-19 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080081 151 2020-03-20 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080082 151 2020-03-21 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080083 151 2020-03-22 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080084 151 2020-03-23 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080085 151 2020-03-24 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080086 151 2020-03-25 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080087 151 2020-03-26 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080088 151 2020-03-27 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080089 151 2020-03-28 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080090 151 2020-03-29 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080091 151 2020-03-30 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080092 151 2020-03-31 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080093 151 2020-04-01 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080094 151 2020-04-02 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080095 151 2020-04-03 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080096 151 2020-04-04 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080097 151 2020-04-05 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080098 151 2020-04-06 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080099 151 2020-04-07 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080100 151 2020-04-08 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080101 151 2020-04-09 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080102 151 2020-04-10 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080103 151 2020-04-11 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080104 151 2020-04-12 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080105 151 2020-04-13 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080106 151 2020-04-14 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080107 151 2020-04-15 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080108 151 2020-04-16 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080109 151 2020-04-17 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080110 151 2020-04-18 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080111 151 2020-04-19 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080112 138 2020-02-24 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080113 138 2020-02-25 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080114 138 2020-02-26 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080115 138 2020-02-27 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080116 138 2020-02-28 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080117 138 2020-02-29 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080118 138 2020-03-01 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080119 138 2020-03-02 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080120 138 2020-03-03 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080121 138 2020-03-04 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080122 138 2020-03-05 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080123 138 2020-03-06 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080124 138 2020-03-07 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080125 138 2020-03-08 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080126 138 2020-03-09 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080127 138 2020-03-10 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080128 138 2020-03-11 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080129 138 2020-03-12 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080130 138 2020-03-13 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080131 138 2020-03-14 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080132 138 2020-03-15 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080133 138 2020-03-16 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080134 138 2020-03-17 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080135 138 2020-03-18 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080136 138 2020-03-19 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080137 138 2020-03-20 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080138 138 2020-03-21 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080139 138 2020-03-22 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080140 138 2020-03-23 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080141 138 2020-03-24 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080142 138 2020-03-25 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080143 138 2020-03-26 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080144 138 2020-03-27 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080145 138 2020-03-28 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080146 138 2020-03-29 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080147 138 2020-03-30 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080148 138 2020-03-31 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080149 138 2020-04-01 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080150 138 2020-04-02 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080151 138 2020-04-03 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080152 138 2020-04-04 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080153 138 2020-04-05 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080154 138 2020-04-06 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080155 138 2020-04-07 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080156 138 2020-04-08 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080157 138 2020-04-09 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080158 138 2020-04-10 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080159 138 2020-04-11 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080160 138 2020-04-12 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080161 138 2020-04-13 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080162 138 2020-04-14 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080163 138 2020-04-15 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080164 138 2020-04-16 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080165 138 2020-04-17 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080166 138 2020-04-18 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080167 138 2020-04-19 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080168 105 2020-02-24 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080169 105 2020-02-25 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080170 105 2020-02-26 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080171 105 2020-02-27 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080172 105 2020-02-28 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080173 105 2020-02-29 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080174 105 2020-03-01 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080175 105 2020-03-02 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080176 105 2020-03-03 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080177 105 2020-03-04 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080178 105 2020-03-05 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080179 105 2020-03-06 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080180 105 2020-03-07 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080181 105 2020-03-08 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080182 105 2020-03-09 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080183 105 2020-03-10 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080184 105 2020-03-11 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080185 105 2020-03-12 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080186 105 2020-03-13 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080187 105 2020-03-14 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080188 105 2020-03-15 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080189 105 2020-03-16 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080190 105 2020-03-17 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080191 105 2020-03-18 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080192 105 2020-03-19 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080193 105 2020-03-20 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080194 105 2020-03-21 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080195 105 2020-03-22 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080196 105 2020-03-23 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080197 105 2020-03-24 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080198 105 2020-03-25 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080199 105 2020-03-26 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080200 105 2020-03-27 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080201 105 2020-03-28 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080202 105 2020-03-29 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080203 105 2020-03-30 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080204 105 2020-03-31 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080205 105 2020-04-01 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080206 105 2020-04-02 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080207 105 2020-04-03 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080208 105 2020-04-04 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080209 105 2020-04-05 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080210 105 2020-04-06 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080211 105 2020-04-07 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080212 105 2020-04-08 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080213 105 2020-04-09 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080214 105 2020-04-10 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080215 105 2020-04-11 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080216 105 2020-04-12 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080217 105 2020-04-13 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080218 105 2020-04-14 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080219 105 2020-04-15 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080220 105 2020-04-16 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080221 105 2020-04-17 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080222 105 2020-04-18 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080223 105 2020-04-19 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080224 134 2020-02-24 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080225 134 2020-02-25 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080226 134 2020-02-26 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080227 134 2020-02-27 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080228 134 2020-02-28 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080229 134 2020-02-29 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080230 134 2020-03-01 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080231 134 2020-03-02 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080232 134 2020-03-03 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080233 134 2020-03-04 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080234 134 2020-03-05 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080235 134 2020-03-06 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080236 134 2020-03-07 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080237 134 2020-03-08 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080238 134 2020-03-09 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080239 134 2020-03-10 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080240 134 2020-03-11 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080241 134 2020-03-12 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080242 134 2020-03-13 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080243 134 2020-03-14 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080244 134 2020-03-15 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080245 134 2020-03-16 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080246 134 2020-03-17 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080247 134 2020-03-18 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080248 134 2020-03-19 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080249 134 2020-03-20 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080250 134 2020-03-21 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080251 134 2020-03-22 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080252 134 2020-03-23 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080253 134 2020-03-24 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080254 134 2020-03-25 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080255 134 2020-03-26 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080256 134 2020-03-27 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080257 134 2020-03-28 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080258 134 2020-03-29 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080259 134 2020-03-30 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080260 134 2020-03-31 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080261 134 2020-04-01 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080262 134 2020-04-02 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080263 134 2020-04-03 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080264 134 2020-04-04 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080265 134 2020-04-05 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080266 134 2020-04-06 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080267 134 2020-04-07 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080268 134 2020-04-08 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080269 134 2020-04-09 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080270 134 2020-04-10 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080271 134 2020-04-11 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080272 134 2020-04-12 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080273 134 2020-04-13 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080274 134 2020-04-14 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080275 134 2020-04-15 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080276 134 2020-04-16 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080277 134 2020-04-17 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080278 134 2020-04-18 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080279 134 2020-04-19 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080280 144 2020-02-24 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080281 144 2020-02-25 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080282 144 2020-02-26 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080283 144 2020-02-27 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080284 144 2020-02-28 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080285 144 2020-02-29 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080286 144 2020-03-01 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080287 144 2020-03-02 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080288 144 2020-03-03 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080289 144 2020-03-04 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080290 144 2020-03-05 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080291 144 2020-03-06 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080292 144 2020-03-07 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080293 144 2020-03-08 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080294 144 2020-03-09 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080295 144 2020-03-10 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080296 144 2020-03-11 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080297 144 2020-03-12 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080298 144 2020-03-13 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080299 144 2020-03-14 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080300 144 2020-03-15 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080301 144 2020-03-16 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080302 144 2020-03-17 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080303 144 2020-03-18 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080304 144 2020-03-19 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080305 144 2020-03-20 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080306 144 2020-03-21 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080307 144 2020-03-22 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080308 144 2020-03-23 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080309 144 2020-03-24 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080310 144 2020-03-25 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080311 144 2020-03-26 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080312 144 2020-03-27 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080313 144 2020-03-28 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080314 144 2020-03-29 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080315 144 2020-03-30 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080316 144 2020-03-31 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080317 102 2020-02-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1080318 102 2020-02-25 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1080319 102 2020-02-26 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1080320 102 2020-02-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1080321 102 2020-02-28 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1080322 102 2020-02-29 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080323 102 2020-03-01 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080324 102 2020-03-02 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1080325 102 2020-03-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1080326 102 2020-03-04 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1080327 102 2020-03-05 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1080328 102 2020-03-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1080329 102 2020-03-07 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080330 102 2020-03-08 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080331 102 2020-03-09 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1080332 102 2020-03-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1080333 102 2020-03-11 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1080334 102 2020-03-12 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1080335 102 2020-03-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1080336 102 2020-03-14 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080337 102 2020-03-15 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080338 102 2020-03-16 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1080339 102 2020-03-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1080340 102 2020-03-18 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1080341 102 2020-03-19 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1080342 102 2020-03-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1080343 102 2020-03-21 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080344 102 2020-03-22 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080345 102 2020-03-23 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1080346 102 2020-03-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1080347 102 2020-03-25 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1080348 102 2020-03-26 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1080349 102 2020-03-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1080350 102 2020-03-28 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080351 102 2020-03-29 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080352 102 2020-03-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1080353 102 2020-03-31 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1080354 102 2020-04-01 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1080355 102 2020-04-02 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1080356 102 2020-04-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1080357 102 2020-04-04 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080358 102 2020-04-05 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080359 102 2020-04-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1080360 102 2020-04-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1080361 102 2020-04-08 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1080362 102 2020-04-09 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1080363 102 2020-04-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1080364 102 2020-04-11 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080365 102 2020-04-12 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080366 102 2020-04-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1080367 102 2020-04-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1080368 102 2020-04-15 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1080369 102 2020-04-16 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1080370 102 2020-04-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1080371 102 2020-04-18 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080372 102 2020-04-19 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080373 109 2020-02-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1080374 109 2020-02-25 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1080375 109 2020-02-26 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1080376 109 2020-02-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1080377 109 2020-02-28 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1080378 109 2020-02-29 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080379 109 2020-03-01 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080380 109 2020-03-02 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1080381 109 2020-03-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1080382 109 2020-03-04 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1080383 109 2020-03-05 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1080384 109 2020-03-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1080385 109 2020-03-07 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080386 109 2020-03-08 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080387 109 2020-03-09 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1080388 109 2020-03-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1080389 109 2020-03-11 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1080390 109 2020-03-12 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1080391 109 2020-03-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1080392 109 2020-03-14 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080393 109 2020-03-15 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080394 109 2020-03-16 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1080395 109 2020-03-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1080396 109 2020-03-18 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1080397 109 2020-03-19 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1080398 109 2020-03-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1080399 109 2020-03-21 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080400 109 2020-03-22 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080401 109 2020-03-23 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1080402 109 2020-03-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1080403 109 2020-03-25 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1080404 109 2020-03-26 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1080405 109 2020-03-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1080406 109 2020-03-28 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080407 109 2020-03-29 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080408 109 2020-03-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1080409 109 2020-03-31 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1080410 109 2020-04-01 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1080411 109 2020-04-02 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1080412 109 2020-04-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1080413 109 2020-04-04 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080414 109 2020-04-05 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080415 109 2020-04-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1080416 109 2020-04-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1080417 109 2020-04-08 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1080418 109 2020-04-09 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1080419 109 2020-04-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1080420 109 2020-04-11 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080421 109 2020-04-12 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080422 109 2020-04-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1080423 109 2020-04-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1080424 109 2020-04-15 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1080425 109 2020-04-16 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1080426 109 2020-04-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1080427 109 2020-04-18 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080428 109 2020-04-19 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080429 118 2020-02-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1080430 118 2020-02-25 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1080431 118 2020-02-26 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1080432 118 2020-02-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1080433 118 2020-02-28 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1080434 118 2020-02-29 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080435 118 2020-03-01 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080436 118 2020-03-02 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1080437 118 2020-03-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1080438 118 2020-03-04 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1080439 118 2020-03-05 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1080440 118 2020-03-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1080441 118 2020-03-07 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080442 118 2020-03-08 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080443 118 2020-03-09 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1080444 118 2020-03-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1080445 118 2020-03-11 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1080446 118 2020-03-12 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1080447 118 2020-03-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1080448 118 2020-03-14 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080449 118 2020-03-15 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080450 118 2020-03-16 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -995286 114 2019-12-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -995287 114 2019-12-31 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1080451 118 2020-03-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1080452 118 2020-03-18 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1080453 118 2020-03-19 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1080454 118 2020-03-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1080455 118 2020-03-21 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080456 118 2020-03-22 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080457 118 2020-03-23 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1080458 118 2020-03-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1080459 118 2020-03-25 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1080460 118 2020-03-26 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1080461 118 2020-03-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1080462 118 2020-03-28 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080463 118 2020-03-29 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080464 118 2020-03-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1080465 118 2020-03-31 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1080466 118 2020-04-01 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1080467 118 2020-04-02 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1080468 118 2020-04-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1080469 118 2020-04-04 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080470 118 2020-04-05 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080471 118 2020-04-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1080472 118 2020-04-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1080473 118 2020-04-08 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1080474 118 2020-04-09 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1080475 118 2020-04-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1080476 118 2020-04-11 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080477 118 2020-04-12 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080478 118 2020-04-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1080479 118 2020-04-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1080480 118 2020-04-15 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1080481 118 2020-04-16 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1080482 118 2020-04-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1080483 118 2020-04-18 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080484 118 2020-04-19 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080485 133 2020-02-24 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080486 133 2020-02-25 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080487 133 2020-02-26 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080488 133 2020-02-27 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080489 133 2020-02-28 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080490 133 2020-02-29 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080491 133 2020-03-01 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080492 133 2020-03-02 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080493 133 2020-03-03 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080494 133 2020-03-04 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080495 133 2020-03-05 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080496 133 2020-03-06 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080497 133 2020-03-07 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080498 133 2020-03-08 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080499 133 2020-03-09 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080500 133 2020-03-10 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080501 133 2020-03-11 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080502 133 2020-03-12 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080503 133 2020-03-13 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080504 133 2020-03-14 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080505 133 2020-03-15 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080506 133 2020-03-16 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080507 133 2020-03-17 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080508 133 2020-03-18 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080509 133 2020-03-19 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080510 133 2020-03-20 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080511 133 2020-03-21 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080512 133 2020-03-22 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080513 133 2020-03-23 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080514 133 2020-03-24 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080515 133 2020-03-25 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080516 133 2020-03-26 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080517 133 2020-03-27 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080518 133 2020-03-28 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080519 133 2020-03-29 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080520 133 2020-03-30 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080521 133 2020-03-31 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080522 133 2020-04-01 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080523 133 2020-04-02 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080524 133 2020-04-03 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080525 133 2020-04-04 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080526 133 2020-04-05 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080527 133 2020-04-06 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080528 133 2020-04-07 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080529 133 2020-04-08 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080530 133 2020-04-09 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080531 133 2020-04-10 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080532 133 2020-04-11 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080533 133 2020-04-12 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080534 133 2020-04-13 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080535 133 2020-04-14 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080536 133 2020-04-15 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080537 133 2020-04-16 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080538 133 2020-04-17 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080539 133 2020-04-18 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080540 133 2020-04-19 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080541 111 2020-02-24 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080542 111 2020-02-25 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080543 111 2020-02-26 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080544 111 2020-02-27 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080545 111 2020-02-28 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080546 111 2020-02-29 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080547 111 2020-03-01 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080548 111 2020-03-02 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080549 111 2020-03-03 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080550 111 2020-03-04 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080551 111 2020-03-05 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080552 111 2020-03-06 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080553 111 2020-03-07 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080554 111 2020-03-08 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080555 111 2020-03-09 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080556 111 2020-03-10 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080557 111 2020-03-11 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080558 111 2020-03-12 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080559 111 2020-03-13 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080560 111 2020-03-14 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080561 111 2020-03-15 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080562 111 2020-03-16 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080563 111 2020-03-17 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080564 111 2020-03-18 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080565 111 2020-03-19 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080566 111 2020-03-20 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080567 111 2020-03-21 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080568 111 2020-03-22 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080569 111 2020-03-23 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080570 111 2020-03-24 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080571 111 2020-03-25 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080572 111 2020-03-26 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080573 111 2020-03-27 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080574 111 2020-03-28 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080575 111 2020-03-29 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080576 111 2020-03-30 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080577 111 2020-03-31 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080578 111 2020-04-01 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080579 111 2020-04-02 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080580 111 2020-04-03 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080581 111 2020-04-04 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080582 111 2020-04-05 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080583 111 2020-04-06 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080584 111 2020-04-07 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080585 111 2020-04-08 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080586 111 2020-04-09 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080587 111 2020-04-10 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080588 111 2020-04-11 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080589 111 2020-04-12 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080590 111 2020-04-13 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080591 111 2020-04-14 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080592 111 2020-04-15 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080593 111 2020-04-16 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080594 111 2020-04-17 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080595 111 2020-04-18 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080596 111 2020-04-19 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080597 128 2020-02-24 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080598 128 2020-02-25 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080599 128 2020-02-26 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -995232 114 2020-01-01 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1080600 128 2020-02-27 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -995233 114 2020-01-02 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -995234 114 2020-01-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1080601 128 2020-02-28 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -995235 114 2020-01-04 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1080602 128 2020-02-29 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080603 128 2020-03-01 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080604 128 2020-03-02 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080605 128 2020-03-03 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080606 128 2020-03-04 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080607 128 2020-03-05 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080608 128 2020-03-06 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080609 128 2020-03-07 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080610 128 2020-03-08 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080611 128 2020-03-09 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080612 128 2020-03-10 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080613 128 2020-03-11 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -995236 114 2020-01-05 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -995237 114 2020-01-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1080614 128 2020-03-12 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -995238 114 2020-01-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -995239 114 2020-01-08 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1080615 128 2020-03-13 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -995240 114 2020-01-09 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -995241 114 2020-01-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1080616 128 2020-03-14 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -995242 114 2020-01-11 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -995243 114 2020-01-12 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1080617 128 2020-03-15 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -995244 114 2020-01-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -995245 114 2020-01-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -995246 114 2020-01-15 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -995277 114 2020-02-15 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1080618 128 2020-03-16 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -995278 114 2020-02-16 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -995279 114 2020-02-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1080619 128 2020-03-17 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -995280 114 2020-02-18 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -995281 114 2020-02-19 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1080620 128 2020-03-18 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -995282 114 2020-02-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -995283 114 2020-02-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1080621 128 2020-03-19 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -995284 114 2020-02-22 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -995285 114 2020-02-23 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1080622 128 2020-03-20 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080623 128 2020-03-21 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080624 128 2020-03-22 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080625 128 2020-03-23 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080626 128 2020-03-24 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080627 128 2020-03-25 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080628 128 2020-03-26 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080629 128 2020-03-27 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080630 128 2020-03-28 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080631 128 2020-03-29 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080632 128 2020-03-30 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080633 128 2020-03-31 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080634 128 2020-04-01 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080635 128 2020-04-02 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080636 128 2020-04-03 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080637 128 2020-04-04 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080638 128 2020-04-05 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080639 128 2020-04-06 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080640 128 2020-04-07 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080641 128 2020-04-08 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080642 128 2020-04-09 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080643 128 2020-04-10 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080644 128 2020-04-11 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080645 128 2020-04-12 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080646 128 2020-04-13 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080647 128 2020-04-14 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080648 128 2020-04-15 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080649 128 2020-04-16 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080650 128 2020-04-17 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080651 128 2020-04-18 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080652 128 2020-04-19 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080653 142 2020-02-24 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080654 142 2020-02-25 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080655 142 2020-02-26 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080656 142 2020-02-27 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080657 142 2020-02-28 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080658 142 2020-02-29 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080659 142 2020-03-01 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080660 142 2020-03-02 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080661 142 2020-03-03 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080662 142 2020-03-04 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080663 142 2020-03-05 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080664 142 2020-03-06 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080665 142 2020-03-07 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080666 142 2020-03-08 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080667 142 2020-03-09 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080668 142 2020-03-10 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080669 142 2020-03-11 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080670 142 2020-03-12 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080671 142 2020-03-13 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080672 142 2020-03-14 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080673 142 2020-03-15 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080674 142 2020-03-16 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080675 142 2020-03-17 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080676 142 2020-03-18 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080677 142 2020-03-19 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080678 142 2020-03-20 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080679 142 2020-03-21 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080680 142 2020-03-22 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080681 142 2020-03-23 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080682 142 2020-03-24 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080683 142 2020-03-25 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080684 142 2020-03-26 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080685 142 2020-03-27 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080686 142 2020-03-28 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080687 142 2020-03-29 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080688 142 2020-03-30 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080689 142 2020-03-31 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080690 142 2020-04-01 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080691 142 2020-04-02 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080692 142 2020-04-03 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080693 142 2020-04-04 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080694 142 2020-04-05 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080695 142 2020-04-06 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080696 142 2020-04-07 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080697 142 2020-04-08 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080698 142 2020-04-09 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080699 142 2020-04-10 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080700 142 2020-04-11 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080701 142 2020-04-12 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080702 142 2020-04-13 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080703 142 2020-04-14 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080704 142 2020-04-15 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080705 142 2020-04-16 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080706 142 2020-04-17 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080707 142 2020-04-18 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080708 142 2020-04-19 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080709 136 2020-02-24 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080710 136 2020-02-25 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080711 136 2020-02-26 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080712 136 2020-02-27 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080713 136 2020-02-28 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080714 136 2020-02-29 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080715 136 2020-03-01 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080716 136 2020-03-02 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080717 136 2020-03-03 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080718 136 2020-03-04 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080719 136 2020-03-05 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080720 136 2020-03-06 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080721 136 2020-03-07 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080722 136 2020-03-08 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080723 136 2020-03-09 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080724 136 2020-03-10 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080725 136 2020-03-11 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080726 136 2020-03-12 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080727 136 2020-03-13 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080728 136 2020-03-14 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080729 136 2020-03-15 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080730 136 2020-03-16 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080731 136 2020-03-17 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080732 136 2020-03-18 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080733 136 2020-03-19 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080734 136 2020-03-20 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080735 136 2020-03-21 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080736 136 2020-03-22 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080737 136 2020-03-23 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080738 136 2020-03-24 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080739 136 2020-03-25 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080740 136 2020-03-26 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080741 136 2020-03-27 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080742 136 2020-03-28 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080743 136 2020-03-29 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080744 136 2020-03-30 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080745 136 2020-03-31 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080746 136 2020-04-01 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080747 136 2020-04-02 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080748 136 2020-04-03 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080749 136 2020-04-04 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080750 136 2020-04-05 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080751 136 2020-04-06 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080752 136 2020-04-07 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080753 136 2020-04-08 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080754 136 2020-04-09 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080755 136 2020-04-10 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080756 136 2020-04-11 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080757 136 2020-04-12 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080758 136 2020-04-13 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080759 136 2020-04-14 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080760 136 2020-04-15 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080761 136 2020-04-16 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080762 136 2020-04-17 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080763 136 2020-04-18 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080764 136 2020-04-19 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080765 139 2020-02-24 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080766 139 2020-02-25 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080767 139 2020-02-26 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080768 139 2020-02-27 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080769 139 2020-02-28 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080770 139 2020-02-29 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080771 139 2020-03-01 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080772 139 2020-03-02 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080773 139 2020-03-03 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080774 139 2020-03-04 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080775 139 2020-03-05 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080776 139 2020-03-06 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080777 139 2020-03-07 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080778 139 2020-03-08 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080779 139 2020-03-09 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080780 139 2020-03-10 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080781 139 2020-03-11 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080782 139 2020-03-12 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080783 139 2020-03-13 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080784 139 2020-03-14 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080785 139 2020-03-15 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080786 139 2020-03-16 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080787 139 2020-03-17 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080788 139 2020-03-18 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080789 139 2020-03-19 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080790 139 2020-03-20 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080791 139 2020-03-21 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080792 139 2020-03-22 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080793 139 2020-03-23 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080794 139 2020-03-24 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080795 139 2020-03-25 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080796 139 2020-03-26 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080797 139 2020-03-27 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080798 139 2020-03-28 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080799 139 2020-03-29 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080800 139 2020-03-30 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080801 139 2020-03-31 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080802 139 2020-04-01 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080803 139 2020-04-02 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080804 139 2020-04-03 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080805 139 2020-04-04 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080806 139 2020-04-05 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080807 139 2020-04-06 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080808 139 2020-04-07 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080809 139 2020-04-08 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080810 139 2020-04-09 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080811 139 2020-04-10 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080812 139 2020-04-11 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080813 139 2020-04-12 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080814 139 2020-04-13 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080815 139 2020-04-14 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080816 139 2020-04-15 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080817 139 2020-04-16 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080818 139 2020-04-17 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080819 139 2020-04-18 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080820 139 2020-04-19 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080821 141 2020-02-24 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080822 141 2020-02-25 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080823 141 2020-02-26 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080824 141 2020-02-27 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080825 141 2020-02-28 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080826 141 2020-02-29 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080827 141 2020-03-01 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080828 141 2020-03-02 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080829 141 2020-03-03 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080830 141 2020-03-04 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080831 141 2020-03-05 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080832 141 2020-03-06 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080833 141 2020-03-07 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080834 141 2020-03-08 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080835 141 2020-03-09 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080836 141 2020-03-10 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080837 141 2020-03-11 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080838 141 2020-03-12 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080839 141 2020-03-13 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080840 141 2020-03-14 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080841 141 2020-03-15 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080842 141 2020-03-16 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080843 141 2020-03-17 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080844 141 2020-03-18 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080845 141 2020-03-19 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080846 141 2020-03-20 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080847 141 2020-03-21 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080848 141 2020-03-22 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080849 141 2020-03-23 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080850 141 2020-03-24 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080851 141 2020-03-25 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080852 141 2020-03-26 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080853 141 2020-03-27 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080854 141 2020-03-28 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080855 141 2020-03-29 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080856 141 2020-03-30 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080857 141 2020-03-31 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080858 141 2020-04-01 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080859 141 2020-04-02 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080860 141 2020-04-03 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080861 141 2020-04-04 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080862 141 2020-04-05 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080863 141 2020-04-06 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080864 141 2020-04-07 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080865 141 2020-04-08 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080866 141 2020-04-09 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080867 141 2020-04-10 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080868 141 2020-04-11 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080869 141 2020-04-12 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080870 141 2020-04-13 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080871 141 2020-04-14 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080872 141 2020-04-15 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080873 141 2020-04-16 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080874 141 2020-04-17 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1080875 141 2020-04-18 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080876 141 2020-04-19 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080877 122 2020-02-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1080878 122 2020-02-25 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1080879 122 2020-02-26 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1080880 122 2020-02-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1080881 122 2020-02-28 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1080882 122 2020-02-29 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080883 122 2020-03-01 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080884 122 2020-03-02 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1080885 122 2020-03-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1080886 122 2020-03-04 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1080887 122 2020-03-05 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1080888 122 2020-03-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1080889 122 2020-03-07 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080890 122 2020-03-08 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080891 122 2020-03-09 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1080892 122 2020-03-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1080893 122 2020-03-11 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1080894 122 2020-03-12 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1080895 122 2020-03-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1080896 122 2020-03-14 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080897 122 2020-03-15 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080898 122 2020-03-16 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1080899 122 2020-03-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1080900 122 2020-03-18 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1080901 122 2020-03-19 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1080902 122 2020-03-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1080903 122 2020-03-21 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080904 122 2020-03-22 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080905 122 2020-03-23 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1080906 122 2020-03-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1080907 122 2020-03-25 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1080908 122 2020-03-26 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1080909 122 2020-03-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1080910 122 2020-03-28 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080911 122 2020-03-29 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080912 122 2020-03-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1080913 122 2020-03-31 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1080914 122 2020-04-01 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1080915 122 2020-04-02 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1080916 122 2020-04-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1080917 122 2020-04-04 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080918 122 2020-04-05 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080919 122 2020-04-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1080920 122 2020-04-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1080921 122 2020-04-08 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1080922 122 2020-04-09 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1080923 122 2020-04-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1080924 122 2020-04-11 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080925 122 2020-04-12 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080926 122 2020-04-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1080927 122 2020-04-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1080928 122 2020-04-15 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1080929 122 2020-04-16 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1080930 122 2020-04-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1080931 122 2020-04-18 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080932 122 2020-04-19 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080933 106 2020-02-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 02:05:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1080934 106 2020-02-25 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 02:05:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1080935 106 2020-02-26 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 02:05:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1080936 106 2020-02-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 02:05:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1080937 106 2020-02-28 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 02:05:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1080938 106 2020-02-29 \N \N \N \N \N 00:00:00 02:05:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080939 106 2020-03-01 \N \N \N \N \N 00:00:00 02:05:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080940 106 2020-03-02 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 02:05:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1080941 106 2020-03-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 02:05:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1080942 106 2020-03-04 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 02:05:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1080943 106 2020-03-05 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 02:05:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1080944 106 2020-03-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 02:05:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1080945 106 2020-03-07 \N \N \N \N \N 00:00:00 02:05:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080946 106 2020-03-08 \N \N \N \N \N 00:00:00 02:05:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080947 106 2020-03-09 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 02:05:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1080948 106 2020-03-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 02:05:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1080949 106 2020-03-11 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 02:05:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1080950 106 2020-03-12 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 02:05:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1080951 106 2020-03-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 02:05:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1080952 106 2020-03-14 \N \N \N \N \N 00:00:00 02:05:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080953 106 2020-03-15 \N \N \N \N \N 00:00:00 02:05:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080954 106 2020-03-16 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 02:05:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1080955 106 2020-03-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 02:05:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1080956 106 2020-03-18 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 02:05:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1080957 106 2020-03-19 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 02:05:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1080958 106 2020-03-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 02:05:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1080959 106 2020-03-21 \N \N \N \N \N 00:00:00 02:05:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080960 106 2020-03-22 \N \N \N \N \N 00:00:00 02:05:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080961 106 2020-03-23 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 02:05:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1080962 106 2020-03-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 02:05:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1080963 106 2020-03-25 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 02:05:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1080964 106 2020-03-26 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 02:05:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1080965 106 2020-03-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 02:05:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1080966 106 2020-03-28 \N \N \N \N \N 00:00:00 02:05:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080967 106 2020-03-29 \N \N \N \N \N 00:00:00 02:05:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080968 106 2020-03-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 02:05:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1080969 106 2020-03-31 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 02:05:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1080970 106 2020-04-01 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 02:05:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1080971 106 2020-04-02 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 02:05:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1080972 106 2020-04-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 02:05:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1080973 106 2020-04-04 \N \N \N \N \N 00:00:00 02:05:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080974 106 2020-04-05 \N \N \N \N \N 00:00:00 02:05:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080975 106 2020-04-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 02:05:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1080976 106 2020-04-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 02:05:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1080977 106 2020-04-08 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 02:05:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1080978 106 2020-04-09 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 02:05:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1080979 106 2020-04-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 02:05:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1080980 106 2020-04-11 \N \N \N \N \N 00:00:00 02:05:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080981 106 2020-04-12 \N \N \N \N \N 00:00:00 02:05:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080982 106 2020-04-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 02:05:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1080983 106 2020-04-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 02:05:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1080984 106 2020-04-15 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 02:05:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1080985 106 2020-04-16 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 02:05:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1080986 106 2020-04-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 02:05:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1080987 106 2020-04-18 \N \N \N \N \N 00:00:00 02:05:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080988 106 2020-04-19 \N \N \N \N \N 00:00:00 02:05:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080989 110 2020-02-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1080990 110 2020-02-25 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1080991 110 2020-02-26 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1080992 110 2020-02-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1080993 110 2020-02-28 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1080994 110 2020-02-29 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080995 110 2020-03-01 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1080996 110 2020-03-02 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1080997 110 2020-03-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1080998 110 2020-03-04 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1080999 110 2020-03-05 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1081000 110 2020-03-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1081001 110 2020-03-07 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1081002 110 2020-03-08 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1081003 110 2020-03-09 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1081004 110 2020-03-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1081005 110 2020-03-11 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1081006 110 2020-03-12 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1081007 110 2020-03-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1081008 110 2020-03-14 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1081009 110 2020-03-15 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1081010 110 2020-03-16 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1081011 110 2020-03-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1081012 110 2020-03-18 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1081013 110 2020-03-19 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1081014 110 2020-03-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1081015 110 2020-03-21 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1081016 110 2020-03-22 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1081017 110 2020-03-23 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1081018 110 2020-03-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1081019 110 2020-03-25 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1081020 110 2020-03-26 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1081021 110 2020-03-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1081022 110 2020-03-28 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1081023 110 2020-03-29 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1081024 110 2020-03-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1081025 110 2020-03-31 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1081026 110 2020-04-01 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1081027 110 2020-04-02 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1081028 110 2020-04-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1081029 110 2020-04-04 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1081030 110 2020-04-05 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1081031 110 2020-04-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1081032 110 2020-04-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1081033 110 2020-04-08 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1081034 110 2020-04-09 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1081035 110 2020-04-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1081036 110 2020-04-11 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1081037 110 2020-04-12 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1081038 110 2020-04-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1081039 110 2020-04-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1081040 110 2020-04-15 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1081041 110 2020-04-16 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1081042 110 2020-04-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1081043 110 2020-04-18 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1081044 110 2020-04-19 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1081045 145 2020-02-24 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1081046 145 2020-02-25 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1081047 145 2020-02-26 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1081048 145 2020-02-27 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1081049 145 2020-02-28 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1081050 145 2020-02-29 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1081051 145 2020-03-01 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1081052 145 2020-03-02 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1081053 145 2020-03-03 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1081054 145 2020-03-04 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1081055 145 2020-03-05 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1081056 145 2020-03-06 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1081057 145 2020-03-07 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1081058 145 2020-03-08 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1081059 145 2020-03-09 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1081060 145 2020-03-10 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1081061 145 2020-03-11 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1081062 145 2020-03-12 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1081063 145 2020-03-13 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1081064 145 2020-03-14 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1081065 145 2020-03-15 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1081066 145 2020-03-16 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1081067 145 2020-03-17 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1081068 145 2020-03-18 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1081069 145 2020-03-19 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1081070 145 2020-03-20 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1081071 145 2020-03-21 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1081072 145 2020-03-22 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1081073 145 2020-03-23 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1081074 145 2020-03-24 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1081075 145 2020-03-25 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1081076 145 2020-03-26 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1081077 145 2020-03-27 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1081078 145 2020-03-28 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1081079 145 2020-03-29 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1081080 145 2020-03-30 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1081081 145 2020-03-31 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1081082 145 2020-04-01 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1081083 145 2020-04-02 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1081084 145 2020-04-03 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1081085 145 2020-04-04 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1081086 145 2020-04-05 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1081087 145 2020-04-06 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1081088 145 2020-04-07 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1081089 145 2020-04-08 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1081090 145 2020-04-09 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1081091 145 2020-04-10 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1081092 145 2020-04-11 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1081093 145 2020-04-12 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1081094 145 2020-04-13 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1081095 145 2020-04-14 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1081096 145 2020-04-15 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1081097 145 2020-04-16 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1081098 145 2020-04-17 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1081099 145 2020-04-18 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1081100 145 2020-04-19 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1081101 148 2020-02-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1081102 148 2020-02-25 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1081103 148 2020-02-26 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1081104 148 2020-02-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1081105 148 2020-02-28 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1081106 148 2020-02-29 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1081107 148 2020-03-01 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1081108 148 2020-03-02 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1081109 148 2020-03-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1081110 148 2020-03-04 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1081111 148 2020-03-05 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1081112 148 2020-03-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1081113 148 2020-03-07 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1081114 148 2020-03-08 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1081115 148 2020-03-09 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1081116 148 2020-03-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1081117 148 2020-03-11 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1081118 148 2020-03-12 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1081119 148 2020-03-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1081120 148 2020-03-14 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1081121 148 2020-03-15 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1081122 148 2020-03-16 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1081123 148 2020-03-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1081124 148 2020-03-18 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1081125 148 2020-03-19 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1081126 148 2020-03-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1081127 148 2020-03-21 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1081128 148 2020-03-22 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1081129 148 2020-03-23 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1081130 148 2020-03-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1081131 148 2020-03-25 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1081132 148 2020-03-26 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1081133 148 2020-03-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1081134 148 2020-03-28 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1081135 148 2020-03-29 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1081136 148 2020-03-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1081137 148 2020-03-31 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1081138 148 2020-04-01 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1081139 148 2020-04-02 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1081140 148 2020-04-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1081141 148 2020-04-04 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1081142 148 2020-04-05 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1081143 148 2020-04-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1081144 148 2020-04-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1081145 148 2020-04-08 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1081146 148 2020-04-09 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1081147 148 2020-04-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1081148 148 2020-04-11 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1081149 148 2020-04-12 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1081150 148 2020-04-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1081151 148 2020-04-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1081152 148 2020-04-15 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1081153 148 2020-04-16 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1081154 148 2020-04-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 -1081155 148 2020-04-18 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1081156 148 2020-04-19 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1081157 130 2020-02-24 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1081158 130 2020-02-25 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1081159 130 2020-02-26 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1081160 130 2020-02-27 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1081161 130 2020-02-28 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1081162 130 2020-02-29 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1081163 130 2020-03-01 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1081164 130 2020-03-02 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1081165 130 2020-03-03 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1081166 130 2020-03-04 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1081167 130 2020-03-05 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1081168 130 2020-03-06 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1081169 130 2020-03-07 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1081170 130 2020-03-08 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1081171 130 2020-03-09 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1081172 130 2020-03-10 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1081173 130 2020-03-11 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1081174 130 2020-03-12 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1081175 130 2020-03-13 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1081176 130 2020-03-14 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1081177 130 2020-03-15 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1081178 130 2020-03-16 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1081179 130 2020-03-17 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1081180 130 2020-03-18 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1081181 130 2020-03-19 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1081182 130 2020-03-20 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1081183 130 2020-03-21 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1081184 130 2020-03-22 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1081185 130 2020-03-23 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1081186 130 2020-03-24 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1081187 130 2020-03-25 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1081188 130 2020-03-26 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1081189 130 2020-03-27 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1081190 130 2020-03-28 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1081191 130 2020-03-29 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1081192 130 2020-03-30 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1081193 130 2020-03-31 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1081194 130 2020-04-01 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1081195 130 2020-04-02 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1081196 130 2020-04-03 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1081197 130 2020-04-04 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1081198 130 2020-04-05 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1081199 130 2020-04-06 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1081200 130 2020-04-07 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1081201 130 2020-04-08 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1081202 130 2020-04-09 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1081203 130 2020-04-10 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1081204 130 2020-04-11 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1081205 130 2020-04-12 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1081206 130 2020-04-13 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1081207 130 2020-04-14 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1081208 130 2020-04-15 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1081209 130 2020-04-16 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1081210 130 2020-04-17 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1081211 130 2020-04-18 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1081212 130 2020-04-19 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1081213 129 2020-02-24 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1081214 129 2020-02-25 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1081215 129 2020-02-26 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1081216 129 2020-02-27 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1081217 129 2020-02-28 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1081218 129 2020-02-29 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1081219 129 2020-03-01 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1081220 129 2020-03-02 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1081221 129 2020-03-03 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1081222 129 2020-03-04 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1081223 129 2020-03-05 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1081224 129 2020-03-06 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1081225 129 2020-03-07 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1081226 129 2020-03-08 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1081227 129 2020-03-09 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1081228 129 2020-03-10 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1081229 129 2020-03-11 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1081230 129 2020-03-12 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1081231 129 2020-03-13 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1081232 129 2020-03-14 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1081233 129 2020-03-15 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1081234 129 2020-03-16 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1081235 129 2020-03-17 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1081236 129 2020-03-18 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1081237 129 2020-03-19 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1081238 129 2020-03-20 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1081239 129 2020-03-21 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1081240 129 2020-03-22 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1081241 129 2020-03-23 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1081242 129 2020-03-24 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1081243 129 2020-03-25 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1081244 129 2020-03-26 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1081245 129 2020-03-27 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1081246 129 2020-03-28 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1081247 129 2020-03-29 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1081248 129 2020-03-30 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1081249 129 2020-03-31 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1081250 129 2020-04-01 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1081251 129 2020-04-02 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1081252 129 2020-04-03 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1081253 129 2020-04-04 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1081254 129 2020-04-05 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1081255 129 2020-04-06 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1081256 129 2020-04-07 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1081257 129 2020-04-08 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1081258 129 2020-04-09 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1081259 129 2020-04-10 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1081260 129 2020-04-11 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1081261 129 2020-04-12 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1081262 129 2020-04-13 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1081263 129 2020-04-14 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1081264 129 2020-04-15 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1081265 129 2020-04-16 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1081266 129 2020-04-17 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1081267 129 2020-04-18 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1081268 129 2020-04-19 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1081269 143 2020-02-24 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1081270 143 2020-02-25 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1081271 143 2020-02-26 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1081272 143 2020-02-27 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1081273 143 2020-02-28 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1081274 143 2020-02-29 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1081275 143 2020-03-01 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1081276 143 2020-03-02 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1081277 143 2020-03-03 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1081278 143 2020-03-04 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1081279 143 2020-03-05 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1081280 143 2020-03-06 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1081281 143 2020-03-07 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1081282 143 2020-03-08 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1081283 143 2020-03-09 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1081284 143 2020-03-10 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1081285 143 2020-03-11 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1081286 143 2020-03-12 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1081287 143 2020-03-13 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1081288 143 2020-03-14 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1081289 143 2020-03-15 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1081290 143 2020-03-16 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1081291 143 2020-03-17 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1081292 143 2020-03-18 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1081293 143 2020-03-19 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1081294 143 2020-03-20 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1081295 143 2020-03-21 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1081296 143 2020-03-22 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1081297 143 2020-03-23 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1081298 143 2020-03-24 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1081299 143 2020-03-25 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1081300 143 2020-03-26 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1081301 143 2020-03-27 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1081302 143 2020-03-28 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1081303 143 2020-03-29 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1081304 143 2020-03-30 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1081305 143 2020-03-31 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1081306 143 2020-04-01 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1081307 143 2020-04-02 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1081308 143 2020-04-03 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1081309 143 2020-04-04 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1081310 143 2020-04-05 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -1081311 143 2020-04-06 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1081312 143 2020-04-07 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1081313 143 2020-04-08 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1081314 143 2020-04-09 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1081315 143 2020-04-10 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -1081316 143 2020-04-11 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -997384 112 2020-01-01 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -997385 112 2020-01-02 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1081317 143 2020-04-12 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -997386 112 2020-01-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -997387 112 2020-01-04 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1081318 143 2020-04-13 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -997388 112 2020-01-05 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -997389 112 2020-01-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1081319 143 2020-04-14 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -997390 112 2020-01-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -997391 112 2020-01-08 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1081320 143 2020-04-15 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -997392 112 2020-01-09 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -997393 112 2020-01-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1081321 143 2020-04-16 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -997394 112 2020-01-11 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -997395 112 2020-01-12 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1081322 143 2020-04-17 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 -997396 112 2020-01-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -997397 112 2020-01-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1081323 143 2020-04-18 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -997398 112 2020-01-15 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -997399 112 2020-01-16 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1081324 143 2020-04-19 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 -997400 112 2020-01-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -997401 112 2020-01-18 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -997402 112 2020-01-19 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -997403 112 2020-01-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -997404 112 2020-01-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -997405 112 2020-01-22 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -997406 112 2020-01-23 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -997407 112 2020-01-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -997408 112 2020-01-25 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -997409 112 2020-01-26 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -997410 112 2020-01-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -997411 112 2020-01-28 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -997412 112 2020-01-29 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -997413 112 2020-01-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -997414 112 2020-01-31 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -997415 112 2020-02-01 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -997416 112 2020-02-02 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -997417 112 2020-02-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -997418 112 2020-02-04 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -997419 112 2020-02-05 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -997420 112 2020-02-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -997421 112 2020-02-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -997422 112 2020-02-08 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -997423 112 2020-02-09 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -997424 112 2020-02-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -997425 112 2020-02-11 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -997426 112 2020-02-12 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -999541 108 2020-01-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -999542 108 2020-01-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -999543 108 2020-01-08 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -999544 108 2020-01-09 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -999545 108 2020-01-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -999546 108 2020-01-11 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -999547 108 2020-01-12 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -999548 108 2020-01-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -999549 108 2020-01-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -999550 108 2020-01-15 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -999551 108 2020-01-16 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -999552 108 2020-01-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -999553 108 2020-01-18 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -999554 108 2020-01-19 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -999555 108 2020-01-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -999556 108 2020-01-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -999557 108 2020-01-22 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -999558 108 2020-01-23 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -999559 108 2020-01-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -999576 108 2020-02-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -999577 108 2020-02-11 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -999578 108 2020-02-12 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -999579 108 2020-02-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -999580 108 2020-02-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -999582 108 2020-02-16 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -999583 108 2020-02-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -999584 108 2020-02-18 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -999585 108 2020-02-19 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -999586 108 2020-02-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -999587 108 2020-02-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -999588 108 2020-02-22 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -999589 108 2020-02-23 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1001742 135 2019-12-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1001743 135 2019-12-31 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1001688 135 2020-01-01 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1001689 135 2020-01-02 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1001690 135 2020-01-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1001691 135 2020-01-04 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1001692 135 2020-01-05 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1001693 135 2020-01-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1001694 135 2020-01-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1001695 135 2020-01-08 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1001696 135 2020-01-09 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1001697 135 2020-01-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1001698 135 2020-01-11 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1001699 135 2020-01-12 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1001700 135 2020-01-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1001701 135 2020-01-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1001702 135 2020-01-15 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1001703 135 2020-01-16 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1001704 135 2020-01-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1001705 135 2020-01-18 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1001706 135 2020-01-19 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1001707 135 2020-01-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1001708 135 2020-01-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1001709 135 2020-01-22 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1001710 135 2020-01-23 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1001711 135 2020-01-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1001712 135 2020-01-25 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1001713 135 2020-01-26 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1001714 135 2020-01-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1001715 135 2020-01-28 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1001716 135 2020-01-29 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1001717 135 2020-01-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1001718 135 2020-01-31 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1001719 135 2020-02-01 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1001720 135 2020-02-02 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1001721 135 2020-02-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1001722 135 2020-02-04 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1001723 135 2020-02-05 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1003840 127 2020-01-01 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1003841 127 2020-01-02 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1003842 127 2020-01-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1003843 127 2020-01-04 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1003844 127 2020-01-05 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1003845 127 2020-01-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1003846 127 2020-01-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1003847 127 2020-01-08 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1003848 127 2020-01-09 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1003849 127 2020-01-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1003850 127 2020-01-11 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1003851 127 2020-01-12 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1003852 127 2020-01-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1003853 127 2020-01-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1003854 127 2020-01-15 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1003855 127 2020-01-16 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1003856 127 2020-01-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1003857 127 2020-01-18 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1003858 127 2020-01-19 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1003859 127 2020-01-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1003874 127 2020-02-04 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1003875 127 2020-02-05 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1003876 127 2020-02-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1003877 127 2020-02-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1003878 127 2020-02-08 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1003879 127 2020-02-09 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1003880 127 2020-02-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1003881 127 2020-02-11 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1003882 127 2020-02-12 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1003883 127 2020-02-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1003884 127 2020-02-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1003885 127 2020-02-15 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1003886 127 2020-02-16 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1003887 127 2020-02-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1003888 127 2020-02-18 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1003889 127 2020-02-19 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1003890 127 2020-02-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1003891 127 2020-02-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1003892 127 2020-02-22 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1003893 127 2020-02-23 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1005992 149 2020-01-01 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1005993 149 2020-01-02 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1005994 149 2020-01-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1005995 149 2020-01-04 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1005996 149 2020-01-05 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1005997 149 2020-01-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1005998 149 2020-01-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1005999 149 2020-01-08 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1006000 149 2020-01-09 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1006001 149 2020-01-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1006002 149 2020-01-11 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1006003 149 2020-01-12 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1006004 149 2020-01-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1006005 149 2020-01-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1006006 149 2020-01-15 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1006007 149 2020-01-16 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1006008 149 2020-01-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1006009 149 2020-01-18 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1006010 149 2020-01-19 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1006011 149 2020-01-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1006012 149 2020-01-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1006013 149 2020-01-22 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1006014 149 2020-01-23 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1006015 149 2020-01-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1006016 149 2020-01-25 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1006017 149 2020-01-26 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1006018 149 2020-01-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1008198 103 2019-12-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1008199 103 2019-12-31 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1008144 103 2020-01-01 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1008145 103 2020-01-02 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1008146 103 2020-01-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1008147 103 2020-01-04 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1008148 103 2020-01-05 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1008149 103 2020-01-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1008150 103 2020-01-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1008151 103 2020-01-08 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1008152 103 2020-01-09 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1008153 103 2020-01-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1008154 103 2020-01-11 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1008155 103 2020-01-12 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1008156 103 2020-01-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1008157 103 2020-01-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1008158 103 2020-01-15 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1008159 103 2020-01-16 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1008160 103 2020-01-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1008161 103 2020-01-18 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1008162 103 2020-01-19 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1008163 103 2020-01-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1008164 103 2020-01-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1008175 103 2020-02-01 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1008176 103 2020-02-02 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1008177 103 2020-02-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1008178 103 2020-02-04 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1008179 103 2020-02-05 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1008180 103 2020-02-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1008181 103 2020-02-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1008182 103 2020-02-08 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1008183 103 2020-02-09 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1008184 103 2020-02-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1008185 103 2020-02-11 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1008186 103 2020-02-12 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1008187 103 2020-02-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1008188 103 2020-02-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1008189 103 2020-02-15 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1008190 103 2020-02-16 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1008191 103 2020-02-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1008192 103 2020-02-18 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1008193 103 2020-02-19 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1008194 103 2020-02-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1008195 103 2020-02-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1008196 103 2020-02-22 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1008197 103 2020-02-23 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1010296 121 2020-01-01 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1010297 121 2020-01-02 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1010298 121 2020-01-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1010299 121 2020-01-04 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1010300 121 2020-01-05 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1010301 121 2020-01-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1010302 121 2020-01-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1010303 121 2020-01-08 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1010304 121 2020-01-09 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1010305 121 2020-01-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1010306 121 2020-01-11 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1010307 121 2020-01-12 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1010308 121 2020-01-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1010309 121 2020-01-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1010310 121 2020-01-15 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1010311 121 2020-01-16 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1012502 125 2019-12-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1012503 125 2019-12-31 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1012448 125 2020-01-01 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1012449 125 2020-01-02 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1012450 125 2020-01-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1012451 125 2020-01-04 \N \N \N \N \N 00:00:00 03:20:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1012452 125 2020-01-05 \N \N \N \N \N 00:00:00 03:20:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1012453 125 2020-01-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1012454 125 2020-01-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1012455 125 2020-01-08 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1012456 125 2020-01-09 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1012457 125 2020-01-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1012458 125 2020-01-11 \N \N \N \N \N 00:00:00 03:20:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1012459 125 2020-01-12 \N \N \N \N \N 00:00:00 03:20:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1012460 125 2020-01-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1012461 125 2020-01-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1012462 125 2020-01-15 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1012463 125 2020-01-16 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1012464 125 2020-01-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1012465 125 2020-01-18 \N \N \N \N \N 00:00:00 03:20:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1012466 125 2020-01-19 \N \N \N \N \N 00:00:00 03:20:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1012467 125 2020-01-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1012468 125 2020-01-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1012479 125 2020-02-01 \N \N \N \N \N 00:00:00 03:20:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1012480 125 2020-02-02 \N \N \N \N \N 00:00:00 03:20:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1012481 125 2020-02-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1012482 125 2020-02-04 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1012483 125 2020-02-05 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1012484 125 2020-02-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1012485 125 2020-02-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1012486 125 2020-02-08 \N \N \N \N \N 00:00:00 03:20:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1012487 125 2020-02-09 \N \N \N \N \N 00:00:00 03:20:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1012488 125 2020-02-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1012489 125 2020-02-11 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1012490 125 2020-02-12 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1012491 125 2020-02-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1012492 125 2020-02-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1012493 125 2020-02-15 \N \N \N \N \N 00:00:00 03:20:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1012494 125 2020-02-16 \N \N \N \N \N 00:00:00 03:20:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1012495 125 2020-02-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1012496 125 2020-02-18 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1012497 125 2020-02-19 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1012498 125 2020-02-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1012499 125 2020-02-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1012500 125 2020-02-22 \N \N \N \N \N 00:00:00 03:20:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1012501 125 2020-02-23 \N \N \N \N \N 00:00:00 03:20:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1014600 119 2020-01-01 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1014601 119 2020-01-02 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1014602 119 2020-01-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1014603 119 2020-01-04 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1014604 119 2020-01-05 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1014605 119 2020-01-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1014606 119 2020-01-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1014607 119 2020-01-08 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1014608 119 2020-01-09 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1014609 119 2020-01-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1014610 119 2020-01-11 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1014611 119 2020-01-12 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1016806 113 2019-12-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1016807 113 2019-12-31 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1016752 113 2020-01-01 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1016753 113 2020-01-02 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1016754 113 2020-01-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1016755 113 2020-01-04 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1016756 113 2020-01-05 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1016757 113 2020-01-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1016758 113 2020-01-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1016759 113 2020-01-08 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1016760 113 2020-01-09 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1016761 113 2020-01-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1016762 113 2020-01-11 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1016763 113 2020-01-12 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1016764 113 2020-01-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1016765 113 2020-01-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1016766 113 2020-01-15 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1016767 113 2020-01-16 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1016768 113 2020-01-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1016769 113 2020-01-18 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1016770 113 2020-01-19 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1016771 113 2020-01-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1016772 113 2020-01-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1016783 113 2020-02-01 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1016784 113 2020-02-02 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1016785 113 2020-02-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1016786 113 2020-02-04 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1016787 113 2020-02-05 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1016788 113 2020-02-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1016789 113 2020-02-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1016790 113 2020-02-08 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1016791 113 2020-02-09 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1016792 113 2020-02-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1016793 113 2020-02-11 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1016794 113 2020-02-12 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1016795 113 2020-02-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1016796 113 2020-02-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1016797 113 2020-02-15 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1016798 113 2020-02-16 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1016799 113 2020-02-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1016800 113 2020-02-18 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1016801 113 2020-02-19 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1016802 113 2020-02-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1016803 113 2020-02-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1016804 113 2020-02-22 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1016805 113 2020-02-23 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1018904 147 2020-01-01 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1018905 147 2020-01-02 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1018906 147 2020-01-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1018907 147 2020-01-04 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1018908 147 2020-01-05 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1018909 147 2020-01-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1018910 147 2020-01-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1018911 147 2020-01-08 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1018912 147 2020-01-09 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1018913 147 2020-01-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1018914 147 2020-01-11 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1018915 147 2020-01-12 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1018916 147 2020-01-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1018955 147 2020-02-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1018956 147 2020-02-22 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1018957 147 2020-02-23 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1021110 131 2019-12-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1021111 131 2019-12-31 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1021056 131 2020-01-01 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1021057 131 2020-01-02 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1021058 131 2020-01-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1021059 131 2020-01-04 \N \N \N \N \N 00:00:00 03:20:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1021060 131 2020-01-05 \N \N \N \N \N 00:00:00 03:20:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1021061 131 2020-01-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1021062 131 2020-01-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1021063 131 2020-01-08 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1021064 131 2020-01-09 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1021065 131 2020-01-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1021066 131 2020-01-11 \N \N \N \N \N 00:00:00 03:20:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1021067 131 2020-01-12 \N \N \N \N \N 00:00:00 03:20:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1021068 131 2020-01-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1021069 131 2020-01-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1021070 131 2020-01-15 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1021071 131 2020-01-16 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1021072 131 2020-01-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1021073 131 2020-01-18 \N \N \N \N \N 00:00:00 03:20:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1021074 131 2020-01-19 \N \N \N \N \N 00:00:00 03:20:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1021075 131 2020-01-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1021076 131 2020-01-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1021077 131 2020-01-22 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1021084 131 2020-01-29 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1021085 131 2020-01-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1021086 131 2020-01-31 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1021087 131 2020-02-01 \N \N \N \N \N 00:00:00 03:20:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1021088 131 2020-02-02 \N \N \N \N \N 00:00:00 03:20:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1021089 131 2020-02-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1021090 131 2020-02-04 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1021091 131 2020-02-05 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1021092 131 2020-02-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1021093 131 2020-02-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1021094 131 2020-02-08 \N \N \N \N \N 00:00:00 03:20:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1021095 131 2020-02-09 \N \N \N \N \N 00:00:00 03:20:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1021096 131 2020-02-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1021097 131 2020-02-11 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1021098 131 2020-02-12 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1021099 131 2020-02-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1021100 131 2020-02-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1021101 131 2020-02-15 \N \N \N \N \N 00:00:00 03:20:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1021102 131 2020-02-16 \N \N \N \N \N 00:00:00 03:20:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1021103 131 2020-02-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1021104 131 2020-02-18 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1021105 131 2020-02-19 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1021106 131 2020-02-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1023262 104 2019-12-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 05:00:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1023263 104 2019-12-31 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 05:00:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1023208 104 2020-01-01 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 05:00:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1023209 104 2020-01-02 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 05:00:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1023210 104 2020-01-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 05:00:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1023211 104 2020-01-04 \N \N \N \N \N 00:00:00 05:00:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1023212 104 2020-01-05 \N \N \N \N \N 00:00:00 05:00:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1023213 104 2020-01-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 05:00:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1023214 104 2020-01-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 05:00:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1023215 104 2020-01-08 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 05:00:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1023216 104 2020-01-09 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 05:00:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1023217 104 2020-01-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 05:00:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1023218 104 2020-01-11 \N \N \N \N \N 00:00:00 05:00:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1023219 104 2020-01-12 \N \N \N \N \N 00:00:00 05:00:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1023220 104 2020-01-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 05:00:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1023221 104 2020-01-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 05:00:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1023222 104 2020-01-15 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 05:00:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1023253 104 2020-02-15 \N \N \N \N \N 00:00:00 05:00:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1023254 104 2020-02-16 \N \N \N \N \N 00:00:00 05:00:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1023255 104 2020-02-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 05:00:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1023256 104 2020-02-18 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 05:00:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1023257 104 2020-02-19 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 05:00:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1023258 104 2020-02-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 05:00:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1023259 104 2020-02-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 05:00:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1023260 104 2020-02-22 \N \N \N \N \N 00:00:00 05:00:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1023261 104 2020-02-23 \N \N \N \N \N 00:00:00 05:00:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1025391 151 2020-02-01 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1025392 151 2020-02-02 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1025393 151 2020-02-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1025394 151 2020-02-04 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1025395 151 2020-02-05 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1025396 151 2020-02-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1025397 151 2020-02-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1025398 151 2020-02-08 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1025399 151 2020-02-09 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1025400 151 2020-02-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1025401 151 2020-02-11 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1025402 151 2020-02-12 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1025403 151 2020-02-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1025404 151 2020-02-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1025405 151 2020-02-15 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1025406 151 2020-02-16 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1025407 151 2020-02-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1025408 151 2020-02-18 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1025409 151 2020-02-19 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1025410 151 2020-02-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1025411 151 2020-02-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1025412 151 2020-02-22 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1025413 151 2020-02-23 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1027512 138 2020-01-01 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1027513 138 2020-01-02 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1027514 138 2020-01-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1027515 138 2020-01-04 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1027516 138 2020-01-05 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1027517 138 2020-01-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1027518 138 2020-01-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1027519 138 2020-01-08 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1027520 138 2020-01-09 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1027521 138 2020-01-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1027522 138 2020-01-11 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1027523 138 2020-01-12 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1027524 138 2020-01-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1027525 138 2020-01-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1027526 138 2020-01-15 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1027527 138 2020-01-16 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1027528 138 2020-01-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1027529 138 2020-01-18 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1027552 138 2020-02-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1027553 138 2020-02-11 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1027554 138 2020-02-12 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1027555 138 2020-02-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1027556 138 2020-02-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1027558 138 2020-02-16 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1027559 138 2020-02-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1027560 138 2020-02-18 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1027561 138 2020-02-19 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1027562 138 2020-02-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1027563 138 2020-02-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1027564 138 2020-02-22 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1027565 138 2020-02-23 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1029718 105 2019-12-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1029719 105 2019-12-31 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1029664 105 2020-01-01 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1029665 105 2020-01-02 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1029666 105 2020-01-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1029667 105 2020-01-04 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1029668 105 2020-01-05 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1029669 105 2020-01-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1029670 105 2020-01-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1029671 105 2020-01-08 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1029672 105 2020-01-09 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1029673 105 2020-01-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1029674 105 2020-01-11 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1029675 105 2020-01-12 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1029676 105 2020-01-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1029677 105 2020-01-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1029678 105 2020-01-15 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1029679 105 2020-01-16 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1029680 105 2020-01-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1029681 105 2020-01-18 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1029682 105 2020-01-19 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1029683 105 2020-01-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1029684 105 2020-01-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1029685 105 2020-01-22 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1029686 105 2020-01-23 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1029687 105 2020-01-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1029688 105 2020-01-25 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1029689 105 2020-01-26 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1029690 105 2020-01-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1029691 105 2020-01-28 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1029692 105 2020-01-29 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1029693 105 2020-01-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1029694 105 2020-01-31 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1029695 105 2020-02-01 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1029696 105 2020-02-02 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1029697 105 2020-02-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1029698 105 2020-02-04 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1029699 105 2020-02-05 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1031816 134 2020-01-01 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1031817 134 2020-01-02 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1031818 134 2020-01-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1031819 134 2020-01-04 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1031820 134 2020-01-05 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1031821 134 2020-01-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1031822 134 2020-01-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1031823 134 2020-01-08 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1031824 134 2020-01-09 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1031825 134 2020-01-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1031826 134 2020-01-11 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1031827 134 2020-01-12 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1031828 134 2020-01-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1031829 134 2020-01-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1031830 134 2020-01-15 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1031831 134 2020-01-16 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1031832 134 2020-01-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1031833 134 2020-01-18 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1031834 134 2020-01-19 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1031835 134 2020-01-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1031850 134 2020-02-04 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1031851 134 2020-02-05 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1031852 134 2020-02-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1031853 134 2020-02-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1031854 134 2020-02-08 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1031855 134 2020-02-09 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1031856 134 2020-02-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1031857 134 2020-02-11 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1031858 134 2020-02-12 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1031859 134 2020-02-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1031860 134 2020-02-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1031861 134 2020-02-15 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1031862 134 2020-02-16 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1031863 134 2020-02-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1031864 134 2020-02-18 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1031865 134 2020-02-19 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1031866 134 2020-02-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1031867 134 2020-02-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1031868 134 2020-02-22 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1031869 134 2020-02-23 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1033968 144 2020-01-01 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1033969 144 2020-01-02 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1033970 144 2020-01-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1033971 144 2020-01-04 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1033972 144 2020-01-05 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1033973 144 2020-01-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1033974 144 2020-01-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1033975 144 2020-01-08 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1033976 144 2020-01-09 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1033977 144 2020-01-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1033978 144 2020-01-11 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1033979 144 2020-01-12 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1033980 144 2020-01-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1033981 144 2020-01-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1033982 144 2020-01-15 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1033983 144 2020-01-16 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1033984 144 2020-01-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1033985 144 2020-01-18 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1033986 144 2020-01-19 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1033987 144 2020-01-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1033988 144 2020-01-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1033989 144 2020-01-22 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1033990 144 2020-01-23 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1033991 144 2020-01-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1033992 144 2020-01-25 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1033993 144 2020-01-26 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1033994 144 2020-01-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1036120 102 2020-01-01 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1036121 102 2020-01-02 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1036122 102 2020-01-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1036123 102 2020-01-04 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1036124 102 2020-01-05 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1036125 102 2020-01-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1036126 102 2020-01-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1036127 102 2020-01-08 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1036128 102 2020-01-09 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1036129 102 2020-01-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1036130 102 2020-01-11 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1036131 102 2020-01-12 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1036132 102 2020-01-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1036133 102 2020-01-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1036134 102 2020-01-15 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1036135 102 2020-01-16 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1036136 102 2020-01-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1036137 102 2020-01-18 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1036138 102 2020-01-19 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1036139 102 2020-01-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1036140 102 2020-01-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1036151 102 2020-02-01 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1036152 102 2020-02-02 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1036153 102 2020-02-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1036154 102 2020-02-04 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1036155 102 2020-02-05 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1036156 102 2020-02-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1036157 102 2020-02-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1036158 102 2020-02-08 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1036159 102 2020-02-09 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1036160 102 2020-02-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1036161 102 2020-02-11 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1036162 102 2020-02-12 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1036163 102 2020-02-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1036164 102 2020-02-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1036165 102 2020-02-15 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1036166 102 2020-02-16 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1036167 102 2020-02-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1036168 102 2020-02-18 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1036169 102 2020-02-19 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1036170 102 2020-02-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1036171 102 2020-02-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1036172 102 2020-02-22 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1036173 102 2020-02-23 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1038326 109 2019-12-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1038327 109 2019-12-31 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1038272 109 2020-01-01 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1038273 109 2020-01-02 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1038274 109 2020-01-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1038275 109 2020-01-04 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1038276 109 2020-01-05 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1038277 109 2020-01-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1038278 109 2020-01-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1038279 109 2020-01-08 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1038280 109 2020-01-09 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1038281 109 2020-01-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1038282 109 2020-01-11 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1038283 109 2020-01-12 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1038284 109 2020-01-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1038285 109 2020-01-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1038286 109 2020-01-15 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1038287 109 2020-01-16 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1040478 118 2019-12-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1040479 118 2019-12-31 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1040424 118 2020-01-01 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1040425 118 2020-01-02 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1040426 118 2020-01-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1040427 118 2020-01-04 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1040428 118 2020-01-05 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1040429 118 2020-01-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1040430 118 2020-01-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1040431 118 2020-01-08 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1040432 118 2020-01-09 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1040433 118 2020-01-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1040434 118 2020-01-11 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1040435 118 2020-01-12 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1040436 118 2020-01-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1040437 118 2020-01-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1040438 118 2020-01-15 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1040439 118 2020-01-16 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1040440 118 2020-01-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1040441 118 2020-01-18 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1040442 118 2020-01-19 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1040443 118 2020-01-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1040444 118 2020-01-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1040455 118 2020-02-01 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1040456 118 2020-02-02 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1040457 118 2020-02-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1040458 118 2020-02-04 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1040459 118 2020-02-05 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1040460 118 2020-02-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1040461 118 2020-02-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1040462 118 2020-02-08 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1040463 118 2020-02-09 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1040464 118 2020-02-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1040465 118 2020-02-11 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1040466 118 2020-02-12 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1040467 118 2020-02-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1040468 118 2020-02-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1040469 118 2020-02-15 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1040470 118 2020-02-16 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1040471 118 2020-02-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1040472 118 2020-02-18 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1040473 118 2020-02-19 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1040474 118 2020-02-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1040475 118 2020-02-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1040476 118 2020-02-22 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1040477 118 2020-02-23 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1042630 133 2019-12-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1042631 133 2019-12-31 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1042576 133 2020-01-01 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1042577 133 2020-01-02 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1042578 133 2020-01-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1042579 133 2020-01-04 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1042580 133 2020-01-05 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1042581 133 2020-01-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1042582 133 2020-01-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1042583 133 2020-01-08 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1042584 133 2020-01-09 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1042585 133 2020-01-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1042586 133 2020-01-11 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1042587 133 2020-01-12 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1044728 111 2020-01-01 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1044729 111 2020-01-02 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1044730 111 2020-01-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1044731 111 2020-01-04 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1044732 111 2020-01-05 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1044733 111 2020-01-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1044734 111 2020-01-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1044735 111 2020-01-08 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1044736 111 2020-01-09 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1044737 111 2020-01-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1044738 111 2020-01-11 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1044739 111 2020-01-12 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1044740 111 2020-01-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1044741 111 2020-01-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1044742 111 2020-01-15 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1044743 111 2020-01-16 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1044744 111 2020-01-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1044745 111 2020-01-18 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1044746 111 2020-01-19 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1044747 111 2020-01-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1044748 111 2020-01-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1044759 111 2020-02-01 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1044760 111 2020-02-02 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1044761 111 2020-02-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1044762 111 2020-02-04 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1044763 111 2020-02-05 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1044764 111 2020-02-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1044765 111 2020-02-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1044766 111 2020-02-08 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1044767 111 2020-02-09 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1044768 111 2020-02-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1044769 111 2020-02-11 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1044770 111 2020-02-12 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1044771 111 2020-02-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1044772 111 2020-02-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1044773 111 2020-02-15 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1044774 111 2020-02-16 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1044775 111 2020-02-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1044776 111 2020-02-18 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1044777 111 2020-02-19 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1044778 111 2020-02-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1044779 111 2020-02-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1044780 111 2020-02-22 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1044781 111 2020-02-23 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1046880 128 2020-01-01 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1046881 128 2020-01-02 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1046882 128 2020-01-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1046883 128 2020-01-04 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1046884 128 2020-01-05 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1046885 128 2020-01-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1046886 128 2020-01-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1046887 128 2020-01-08 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1046888 128 2020-01-09 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1046889 128 2020-01-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1046890 128 2020-01-11 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1046891 128 2020-01-12 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1046892 128 2020-01-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1046931 128 2020-02-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1046932 128 2020-02-22 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1046933 128 2020-02-23 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1049086 142 2019-12-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1049087 142 2019-12-31 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1049032 142 2020-01-01 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1049033 142 2020-01-02 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1049034 142 2020-01-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1049035 142 2020-01-04 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1049036 142 2020-01-05 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1049037 142 2020-01-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1049038 142 2020-01-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1049039 142 2020-01-08 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1049040 142 2020-01-09 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1049041 142 2020-01-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1049042 142 2020-01-11 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1049043 142 2020-01-12 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1049044 142 2020-01-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1049045 142 2020-01-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1049046 142 2020-01-15 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1049047 142 2020-01-16 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1049048 142 2020-01-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1049049 142 2020-01-18 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1049050 142 2020-01-19 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1049051 142 2020-01-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1049052 142 2020-01-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1049053 142 2020-01-22 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1049060 142 2020-01-29 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1049061 142 2020-01-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1049062 142 2020-01-31 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1049063 142 2020-02-01 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1049064 142 2020-02-02 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1049065 142 2020-02-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1049066 142 2020-02-04 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1049067 142 2020-02-05 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1049068 142 2020-02-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1049069 142 2020-02-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1049070 142 2020-02-08 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1049071 142 2020-02-09 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1049072 142 2020-02-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1049073 142 2020-02-11 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1049074 142 2020-02-12 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1049075 142 2020-02-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1049076 142 2020-02-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1049077 142 2020-02-15 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1049078 142 2020-02-16 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1049079 142 2020-02-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1049080 142 2020-02-18 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1049081 142 2020-02-19 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1049082 142 2020-02-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1051238 136 2019-12-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1051239 136 2019-12-31 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1051184 136 2020-01-01 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1051185 136 2020-01-02 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1051186 136 2020-01-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1051187 136 2020-01-04 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1051188 136 2020-01-05 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1051189 136 2020-01-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1051190 136 2020-01-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1051191 136 2020-01-08 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1051192 136 2020-01-09 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1051193 136 2020-01-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1051194 136 2020-01-11 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1051195 136 2020-01-12 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1051196 136 2020-01-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1051197 136 2020-01-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1051198 136 2020-01-15 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1051229 136 2020-02-15 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1051230 136 2020-02-16 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1051231 136 2020-02-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1051232 136 2020-02-18 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1051233 136 2020-02-19 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1051234 136 2020-02-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1051235 136 2020-02-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1051236 136 2020-02-22 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1051237 136 2020-02-23 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1053336 140 2020-01-01 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1053337 140 2020-01-02 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1053338 140 2020-01-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1053339 140 2020-01-04 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1053340 140 2020-01-05 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1053341 140 2020-01-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1053342 140 2020-01-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1053343 140 2020-01-08 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1053344 140 2020-01-09 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1053345 140 2020-01-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1053346 140 2020-01-11 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1053347 140 2020-01-12 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1053348 140 2020-01-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1053349 140 2020-01-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1053350 140 2020-01-15 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1053351 140 2020-01-16 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1053352 140 2020-01-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1053353 140 2020-01-18 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1053354 140 2020-01-19 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1053355 140 2020-01-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1053356 140 2020-01-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1053357 140 2020-01-22 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1053358 140 2020-01-23 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1053359 140 2020-01-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1053360 140 2020-01-25 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1053361 140 2020-01-26 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1053362 140 2020-01-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1053363 140 2020-01-28 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1053364 140 2020-01-29 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1053365 140 2020-01-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1053366 140 2020-01-31 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1055488 139 2020-01-01 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1055489 139 2020-01-02 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1055490 139 2020-01-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1055491 139 2020-01-04 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1055492 139 2020-01-05 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1055493 139 2020-01-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1055494 139 2020-01-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1055495 139 2020-01-08 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1055496 139 2020-01-09 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1055497 139 2020-01-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1055498 139 2020-01-11 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1055499 139 2020-01-12 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1055500 139 2020-01-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1055501 139 2020-01-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1055502 139 2020-01-15 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1055503 139 2020-01-16 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1055504 139 2020-01-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1055505 139 2020-01-18 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1055528 139 2020-02-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1055529 139 2020-02-11 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1055530 139 2020-02-12 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1055531 139 2020-02-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1055532 139 2020-02-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1055534 139 2020-02-16 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1055535 139 2020-02-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1055536 139 2020-02-18 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1055537 139 2020-02-19 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1055538 139 2020-02-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1055539 139 2020-02-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1055540 139 2020-02-22 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1055541 139 2020-02-23 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1057640 141 2020-01-01 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1057641 141 2020-01-02 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1057642 141 2020-01-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1057643 141 2020-01-04 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1057644 141 2020-01-05 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1057645 141 2020-01-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1057646 141 2020-01-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1057647 141 2020-01-08 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1057648 141 2020-01-09 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1057649 141 2020-01-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1057650 141 2020-01-11 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1057651 141 2020-01-12 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1057652 141 2020-01-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1057653 141 2020-01-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1057654 141 2020-01-15 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1057655 141 2020-01-16 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1057656 141 2020-01-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1057657 141 2020-01-18 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1057658 141 2020-01-19 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1057659 141 2020-01-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1057660 141 2020-01-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1057661 141 2020-01-22 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1057662 141 2020-01-23 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1057663 141 2020-01-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1057664 141 2020-01-25 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1057665 141 2020-01-26 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1057666 141 2020-01-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1057667 141 2020-01-28 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1057668 141 2020-01-29 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1057669 141 2020-01-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1057670 141 2020-01-31 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1057671 141 2020-02-01 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1057672 141 2020-02-02 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1057673 141 2020-02-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1057674 141 2020-02-04 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1057675 141 2020-02-05 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1059846 122 2019-12-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1059847 122 2019-12-31 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1059792 122 2020-01-01 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1059793 122 2020-01-02 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1059794 122 2020-01-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1059795 122 2020-01-04 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1059796 122 2020-01-05 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1059797 122 2020-01-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1059798 122 2020-01-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1059799 122 2020-01-08 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1059800 122 2020-01-09 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1059801 122 2020-01-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1059802 122 2020-01-11 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1059803 122 2020-01-12 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1059804 122 2020-01-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1059805 122 2020-01-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1059806 122 2020-01-15 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1059807 122 2020-01-16 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1059808 122 2020-01-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1059809 122 2020-01-18 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1059810 122 2020-01-19 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1059811 122 2020-01-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1059826 122 2020-02-04 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1059827 122 2020-02-05 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1059828 122 2020-02-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1059829 122 2020-02-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1059830 122 2020-02-08 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1059831 122 2020-02-09 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1059832 122 2020-02-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1059833 122 2020-02-11 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1059834 122 2020-02-12 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1059835 122 2020-02-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1059836 122 2020-02-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1059837 122 2020-02-15 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1059838 122 2020-02-16 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1059839 122 2020-02-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1059840 122 2020-02-18 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1059841 122 2020-02-19 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1059842 122 2020-02-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1059843 122 2020-02-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1059844 122 2020-02-22 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1059845 122 2020-02-23 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1061998 106 2019-12-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 02:05:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1061999 106 2019-12-31 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 02:05:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1061944 106 2020-01-01 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 02:05:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1061945 106 2020-01-02 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 02:05:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1061946 106 2020-01-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 02:05:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1061947 106 2020-01-04 \N \N \N \N \N 00:00:00 02:05:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1061948 106 2020-01-05 \N \N \N \N \N 00:00:00 02:05:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1061949 106 2020-01-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 02:05:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1061950 106 2020-01-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 02:05:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1061951 106 2020-01-08 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 02:05:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1061952 106 2020-01-09 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 02:05:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1061953 106 2020-01-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 02:05:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1061954 106 2020-01-11 \N \N \N \N \N 00:00:00 02:05:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1061955 106 2020-01-12 \N \N \N \N \N 00:00:00 02:05:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1061956 106 2020-01-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 02:05:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1061957 106 2020-01-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 02:05:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1061958 106 2020-01-15 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 02:05:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1061959 106 2020-01-16 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 02:05:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1061960 106 2020-01-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 02:05:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1061961 106 2020-01-18 \N \N \N \N \N 00:00:00 02:05:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1061962 106 2020-01-19 \N \N \N \N \N 00:00:00 02:05:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1061963 106 2020-01-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 02:05:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1061964 106 2020-01-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 02:05:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1061965 106 2020-01-22 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 02:05:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1061966 106 2020-01-23 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 02:05:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1061967 106 2020-01-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 02:05:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1061968 106 2020-01-25 \N \N \N \N \N 00:00:00 02:05:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1061969 106 2020-01-26 \N \N \N \N \N 00:00:00 02:05:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1061970 106 2020-01-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 02:05:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1064096 110 2020-01-01 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1064097 110 2020-01-02 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1064098 110 2020-01-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1064099 110 2020-01-04 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1064100 110 2020-01-05 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1064101 110 2020-01-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1064102 110 2020-01-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1064103 110 2020-01-08 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1064104 110 2020-01-09 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1064105 110 2020-01-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1064106 110 2020-01-11 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1064107 110 2020-01-12 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1064108 110 2020-01-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1064109 110 2020-01-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1064110 110 2020-01-15 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1064111 110 2020-01-16 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1064112 110 2020-01-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1064113 110 2020-01-18 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1064114 110 2020-01-19 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1064115 110 2020-01-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1064116 110 2020-01-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1064127 110 2020-02-01 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1064128 110 2020-02-02 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1064129 110 2020-02-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1064130 110 2020-02-04 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1064131 110 2020-02-05 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1064132 110 2020-02-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1064133 110 2020-02-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1064134 110 2020-02-08 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1064135 110 2020-02-09 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1064136 110 2020-02-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1064137 110 2020-02-11 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1064138 110 2020-02-12 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1064139 110 2020-02-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1064140 110 2020-02-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1064141 110 2020-02-15 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1064142 110 2020-02-16 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1064143 110 2020-02-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1064144 110 2020-02-18 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1064145 110 2020-02-19 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1064146 110 2020-02-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1064147 110 2020-02-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1064148 110 2020-02-22 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1064149 110 2020-02-23 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1066248 145 2020-01-01 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1066249 145 2020-01-02 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1066250 145 2020-01-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1066251 145 2020-01-04 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1066252 145 2020-01-05 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1066253 145 2020-01-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1066254 145 2020-01-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1066255 145 2020-01-08 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1066256 145 2020-01-09 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1066257 145 2020-01-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1066258 145 2020-01-11 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1066259 145 2020-01-12 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1066260 145 2020-01-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1066261 145 2020-01-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1066262 145 2020-01-15 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1066263 145 2020-01-16 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1068400 148 2020-01-01 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1068401 148 2020-01-02 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1068402 148 2020-01-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1068403 148 2020-01-04 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1068404 148 2020-01-05 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1068405 148 2020-01-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1068406 148 2020-01-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1068407 148 2020-01-08 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1068408 148 2020-01-09 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1068409 148 2020-01-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1068410 148 2020-01-11 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1068411 148 2020-01-12 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1068412 148 2020-01-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1068413 148 2020-01-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1068414 148 2020-01-15 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1068415 148 2020-01-16 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1068416 148 2020-01-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1068417 148 2020-01-18 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1068418 148 2020-01-19 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1068419 148 2020-01-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1068420 148 2020-01-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1068431 148 2020-02-01 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1068432 148 2020-02-02 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1068433 148 2020-02-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1068434 148 2020-02-04 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1068435 148 2020-02-05 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1068436 148 2020-02-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1068437 148 2020-02-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1068438 148 2020-02-08 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1068439 148 2020-02-09 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1068440 148 2020-02-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1068441 148 2020-02-11 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1068442 148 2020-02-12 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1068443 148 2020-02-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1068444 148 2020-02-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1068445 148 2020-02-15 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1068446 148 2020-02-16 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1068447 148 2020-02-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1068448 148 2020-02-18 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1068449 148 2020-02-19 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1068450 148 2020-02-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1068451 148 2020-02-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1068452 148 2020-02-22 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1068453 148 2020-02-23 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1070606 130 2019-12-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1070607 130 2019-12-31 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1070552 130 2020-01-01 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1070553 130 2020-01-02 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1070554 130 2020-01-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1070555 130 2020-01-04 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1070556 130 2020-01-05 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1070557 130 2020-01-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1070558 130 2020-01-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1070559 130 2020-01-08 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1070560 130 2020-01-09 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1070561 130 2020-01-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1070562 130 2020-01-11 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1070563 130 2020-01-12 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -914518 129 2019-12-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -914519 129 2019-12-31 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -914464 129 2020-01-01 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -914465 129 2020-01-02 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -914466 129 2020-01-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -914467 129 2020-01-04 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -914468 129 2020-01-05 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -914469 129 2020-01-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -914470 129 2020-01-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -914471 129 2020-01-08 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -914472 129 2020-01-09 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -914473 129 2020-01-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -914474 129 2020-01-11 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -914475 129 2020-01-12 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -914476 129 2020-01-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -914477 129 2020-01-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -914478 129 2020-01-15 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -914481 129 2020-01-18 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -914479 129 2020-01-16 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -914480 129 2020-01-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -914482 129 2020-01-19 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -914483 129 2020-01-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -914484 129 2020-01-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -914485 129 2020-01-22 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -914486 129 2020-01-23 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -914487 129 2020-01-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -914488 129 2020-01-25 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -914489 129 2020-01-26 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -914517 129 2020-02-23 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1074856 143 2020-01-01 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1074857 143 2020-01-02 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1074858 143 2020-01-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1074859 143 2020-01-04 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1074860 143 2020-01-05 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1074861 143 2020-01-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1074862 143 2020-01-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1074863 143 2020-01-08 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1074864 143 2020-01-09 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1074865 143 2020-01-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1074866 143 2020-01-11 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1074867 143 2020-01-12 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1074868 143 2020-01-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1074869 143 2020-01-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1074870 143 2020-01-15 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1074871 143 2020-01-16 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1074872 143 2020-01-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1074873 143 2020-01-18 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1074874 143 2020-01-19 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1074875 143 2020-01-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1074876 143 2020-01-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1074887 143 2020-02-01 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1074888 143 2020-02-02 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1074889 143 2020-02-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1074890 143 2020-02-04 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1074891 143 2020-02-05 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1074892 143 2020-02-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1074893 143 2020-02-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1074894 143 2020-02-08 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1074895 143 2020-02-09 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1074896 143 2020-02-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1074897 143 2020-02-11 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1074898 143 2020-02-12 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1074899 143 2020-02-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1074900 143 2020-02-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1074901 143 2020-02-15 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1074902 143 2020-02-16 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1074903 143 2020-02-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1074904 143 2020-02-18 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1074905 143 2020-02-19 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1074906 143 2020-02-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1074907 143 2020-02-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 -1074908 143 2020-02-22 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 -1074909 143 2020-02-23 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +COPY portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours) FROM stdin; +1115017 116 2020-01-01 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1115018 116 2020-01-02 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1115019 116 2020-01-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1115020 116 2020-01-04 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +1115021 116 2020-01-05 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1115022 116 2020-01-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1115023 116 2020-01-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1115024 116 2020-01-08 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1115025 116 2020-01-09 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1115026 116 2020-01-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1115027 116 2020-01-11 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +1115028 116 2020-01-12 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1115029 116 2020-01-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1115030 116 2020-01-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1115031 116 2020-01-15 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1115032 116 2020-01-16 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1115066 116 2020-02-19 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1029699 105 2020-02-05 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1031834 134 2020-01-19 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1115033 116 2020-01-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1115034 116 2020-01-18 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +1115035 116 2020-01-19 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1115036 116 2020-01-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1115037 116 2020-01-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1115038 116 2020-01-22 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1115039 116 2020-01-23 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1115040 116 2020-01-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1115041 116 2020-01-25 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +1115042 116 2020-01-26 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1115043 116 2020-01-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1115044 116 2020-01-28 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1115045 116 2020-01-29 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1115046 116 2020-01-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1115047 116 2020-01-31 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1115048 116 2020-02-01 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +1031868 134 2020-02-22 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +1036138 102 2020-01-19 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1040442 118 2020-01-19 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1057680 141 2020-02-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1059810 122 2020-01-19 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1115049 116 2020-02-02 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1115050 116 2020-02-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1115051 116 2020-02-04 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1115052 116 2020-02-05 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1115053 116 2020-02-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1115054 116 2020-02-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1115055 116 2020-02-08 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +1115056 116 2020-02-09 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1115057 116 2020-02-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1115058 116 2020-02-11 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1115059 116 2020-02-12 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1115060 116 2020-02-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1115061 116 2020-02-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1115062 116 2020-02-15 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +1115063 116 2020-02-16 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1115064 116 2020-02-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1115065 116 2020-02-18 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1066296 145 2020-02-18 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1084022 121 2020-06-01 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1084113 125 2020-05-22 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 03:20:00 +1115067 116 2020-02-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1115068 116 2020-02-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1115069 116 2020-02-22 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +1115070 116 2020-02-23 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +988797 146 2020-01-22 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +995267 114 2020-02-05 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +999559 108 2020-01-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +999574 108 2020-02-08 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +1001723 135 2020-02-05 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1003858 127 2020-01-19 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1003892 127 2020-02-22 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +1006021 149 2020-01-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1006022 149 2020-01-31 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1006023 149 2020-02-01 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +1006024 149 2020-02-02 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1006025 149 2020-02-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1006026 149 2020-02-04 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1008162 103 2020-01-19 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1010313 121 2020-01-18 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +1042623 133 2020-02-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1042624 133 2020-02-18 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1042625 133 2020-02-19 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1042626 133 2020-02-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1042627 133 2020-02-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1042628 133 2020-02-22 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +1042629 133 2020-02-23 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1044746 111 2020-01-19 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1044747 111 2020-01-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1044748 111 2020-01-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1044749 111 2020-01-22 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1044750 111 2020-01-23 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1044751 111 2020-01-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1044752 111 2020-01-25 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +1044753 111 2020-01-26 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1044754 111 2020-01-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1044777 111 2020-02-19 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1084114 125 2020-05-23 \N \N \N \N \N 00:00:00 03:20:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 03:20:00 +1084177 119 2020-05-30 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +1008170 103 2020-01-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1044778 111 2020-02-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1044779 111 2020-02-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1044780 111 2020-02-22 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +1044781 111 2020-02-23 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1046893 128 2020-01-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1046908 128 2020-01-29 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1046909 128 2020-01-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1046910 128 2020-01-31 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1046911 128 2020-02-01 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +1046912 128 2020-02-02 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1046913 128 2020-02-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1046914 128 2020-02-04 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1046915 128 2020-02-05 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1046916 128 2020-02-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1046917 128 2020-02-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1046918 128 2020-02-08 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +1084221 113 2020-05-18 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1084250 147 2020-04-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1084374 104 2020-05-03 \N \N \N \N \N 00:00:00 06:00:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1014635 119 2020-02-05 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1046919 128 2020-02-09 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1046920 128 2020-02-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1046921 128 2020-02-11 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1046922 128 2020-02-12 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1049056 142 2020-01-25 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +1049057 142 2020-01-26 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1049058 142 2020-01-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1049059 142 2020-01-28 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1049077 142 2020-02-15 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +1049078 142 2020-02-16 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1049079 142 2020-02-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1049080 142 2020-02-18 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1049081 142 2020-02-19 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1049082 142 2020-02-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1049083 142 2020-02-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1049084 142 2020-02-22 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +1049085 142 2020-02-23 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1084402 104 2020-05-31 \N \N \N \N \N 00:00:00 06:00:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1008173 103 2020-01-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1051199 136 2020-01-16 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1051200 136 2020-01-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1051201 136 2020-01-18 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +1051202 136 2020-01-19 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1051217 136 2020-02-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1051218 136 2020-02-04 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1051219 136 2020-02-05 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1051220 136 2020-02-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1051221 136 2020-02-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1051222 136 2020-02-08 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +1051223 136 2020-02-09 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1051224 136 2020-02-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1051225 136 2020-02-11 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1051226 136 2020-02-12 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1051227 136 2020-02-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1051228 136 2020-02-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1084403 104 2020-06-01 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:00:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:00:00 +1084463 151 2020-06-05 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1084490 138 2020-05-07 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1021082 131 2020-01-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 04:00:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 04:00:00 +1053354 140 2020-01-19 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1053355 140 2020-01-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1053356 140 2020-01-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1055520 139 2020-02-02 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1055521 139 2020-02-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1055522 139 2020-02-04 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1055523 139 2020-02-05 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1055524 139 2020-02-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1055525 139 2020-02-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1055526 139 2020-02-08 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +1055527 139 2020-02-09 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1055533 139 2020-02-15 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +1057675 141 2020-02-05 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1057676 141 2020-02-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1057677 141 2020-02-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1057678 141 2020-02-08 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +1057679 141 2020-02-09 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1027531 138 2020-01-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1059812 122 2020-01-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1059813 122 2020-01-22 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1059814 122 2020-01-23 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1059815 122 2020-01-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1059816 122 2020-01-25 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +1059817 122 2020-01-26 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1059818 122 2020-01-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1059819 122 2020-01-28 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1059820 122 2020-01-29 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1059821 122 2020-01-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1059822 122 2020-01-31 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1059823 122 2020-02-01 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +1059824 122 2020-02-02 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1059825 122 2020-02-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1059844 122 2020-02-22 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +1059845 122 2020-02-23 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1061971 106 2020-01-28 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 04:10:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 04:10:00 +1084497 138 2020-05-14 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1084528 138 2020-06-14 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1029714 105 2020-02-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1061972 106 2020-01-29 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 04:10:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 04:10:00 +1061987 106 2020-02-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 04:10:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 04:10:00 +1061988 106 2020-02-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 04:10:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 \N +1061989 106 2020-02-15 \N \N \N \N \N 00:00:00 04:10:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1061990 106 2020-02-16 \N \N \N \N \N 00:00:00 04:10:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1061991 106 2020-02-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 04:10:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 04:10:00 +1061992 106 2020-02-18 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 04:10:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 04:10:00 +1061993 106 2020-02-19 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 04:10:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 04:10:00 +1061994 106 2020-02-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 04:10:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 04:10:00 +1061995 106 2020-02-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 04:10:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 \N +1061996 106 2020-02-22 \N \N \N \N \N 00:00:00 04:10:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1061997 106 2020-02-23 \N \N \N \N \N 00:00:00 04:10:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1064114 110 2020-01-19 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1064115 110 2020-01-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1064116 110 2020-01-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1064117 110 2020-01-22 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1064118 110 2020-01-23 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1084610 134 2020-05-15 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1034012 144 2020-02-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1066265 145 2020-01-18 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +1066266 145 2020-01-19 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1066267 145 2020-01-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1066268 145 2020-01-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1066269 145 2020-01-22 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1066270 145 2020-01-23 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1066271 145 2020-01-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1066272 145 2020-01-25 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +1066273 145 2020-01-26 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1066274 145 2020-01-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1066275 145 2020-01-28 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1066276 145 2020-01-29 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1066277 145 2020-01-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1066278 145 2020-01-31 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1066279 145 2020-02-01 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +1066280 145 2020-02-02 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1066295 145 2020-02-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1066297 145 2020-02-19 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1066298 145 2020-02-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1066299 145 2020-02-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1066300 145 2020-02-22 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +1066301 145 2020-02-23 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1068418 148 2020-01-19 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1068419 148 2020-01-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1068420 148 2020-01-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1068421 148 2020-01-22 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1068422 148 2020-01-23 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1068423 148 2020-01-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1068424 148 2020-01-25 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +1068425 148 2020-01-26 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1068426 148 2020-01-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1070568 130 2020-01-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1070569 130 2020-01-18 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +1070570 130 2020-01-19 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1070571 130 2020-01-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1084634 134 2020-06-08 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1084635 134 2020-06-09 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1070572 130 2020-01-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1070573 130 2020-01-22 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1070574 130 2020-01-23 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1070575 130 2020-01-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1070576 130 2020-01-25 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +1070577 130 2020-01-26 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1070578 130 2020-01-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1070579 130 2020-01-28 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1070580 130 2020-01-29 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1070581 130 2020-01-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1070582 130 2020-01-31 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1070583 130 2020-02-01 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +1070584 130 2020-02-02 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1070599 130 2020-02-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1070600 130 2020-02-18 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1070601 130 2020-02-19 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1070602 130 2020-02-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1070603 130 2020-02-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1070604 130 2020-02-22 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +1070605 130 2020-02-23 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +914490 129 2020-01-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +914491 129 2020-01-28 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +914492 129 2020-01-29 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +914493 129 2020-01-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +914494 129 2020-01-31 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +914495 129 2020-02-01 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +914496 129 2020-02-02 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +914497 129 2020-02-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +914512 129 2020-02-18 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +914513 129 2020-02-19 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +914514 129 2020-02-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +914515 129 2020-02-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +914516 129 2020-02-22 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +1074874 143 2020-01-19 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1074875 143 2020-01-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1074876 143 2020-01-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1084732 109 2020-05-25 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1074877 143 2020-01-22 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1074878 143 2020-01-23 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1074879 143 2020-01-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1074880 143 2020-01-25 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +1074881 143 2020-01-26 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1074882 143 2020-01-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1074883 143 2020-01-28 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1117223 116 2020-02-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1117224 116 2020-02-25 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1117225 116 2020-02-26 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1117226 116 2020-02-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1117227 116 2020-02-28 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079166 146 2020-03-01 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1079167 146 2020-03-02 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079168 146 2020-03-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079169 146 2020-03-04 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079170 146 2020-03-05 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1084733 109 2020-05-26 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1084868 111 2020-04-23 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1079171 146 2020-03-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079172 146 2020-03-07 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1079173 146 2020-03-08 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1079174 146 2020-03-09 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079175 146 2020-03-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079176 146 2020-03-11 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079177 146 2020-03-12 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079178 146 2020-03-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079179 146 2020-03-14 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1079180 146 2020-03-15 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1079181 146 2020-03-16 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079196 146 2020-03-31 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079197 146 2020-04-01 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079198 146 2020-04-02 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079199 146 2020-04-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079200 146 2020-04-04 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1079201 146 2020-04-05 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1079202 146 2020-04-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1085072 136 2020-05-29 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1079203 146 2020-04-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079204 146 2020-04-08 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079205 146 2020-04-09 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079206 146 2020-04-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079207 146 2020-04-11 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1079208 146 2020-04-12 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1079209 146 2020-04-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079210 146 2020-04-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079225 115 2020-03-04 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079226 115 2020-03-05 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079227 115 2020-03-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079228 115 2020-03-07 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1079229 115 2020-03-08 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1079230 115 2020-03-09 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079231 115 2020-03-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079232 115 2020-03-11 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079233 115 2020-03-12 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079234 115 2020-03-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1008197 103 2020-02-23 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1079235 115 2020-03-14 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1079236 115 2020-03-15 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1079237 115 2020-03-16 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079238 115 2020-03-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079239 115 2020-03-18 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079254 115 2020-04-02 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079255 115 2020-04-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079256 115 2020-04-04 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1079257 115 2020-04-05 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1079258 115 2020-04-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079259 115 2020-04-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079260 115 2020-04-08 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079261 115 2020-04-09 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079262 115 2020-04-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079263 115 2020-04-11 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1079264 115 2020-04-12 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1079265 115 2020-04-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1085110 139 2020-05-11 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085139 139 2020-06-09 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085158 141 2020-05-03 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +988778 146 2020-01-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1079266 115 2020-04-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079267 115 2020-04-15 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079268 115 2020-04-16 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079283 114 2020-03-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079284 114 2020-03-07 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1079285 114 2020-03-08 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1079286 114 2020-03-09 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079287 114 2020-03-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079288 114 2020-03-11 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079289 114 2020-03-12 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079290 114 2020-03-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079291 114 2020-03-14 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1079292 114 2020-03-15 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1079293 114 2020-03-16 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079502 127 2020-03-01 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1083766 135 2020-04-30 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085167 141 2020-05-12 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085198 141 2020-06-12 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085252 122 2020-06-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1085302 106 2020-06-04 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 04:10:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 04:10:00 +988779 146 2020-01-04 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +1079294 114 2020-03-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079295 114 2020-03-18 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079296 114 2020-03-19 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079297 114 2020-03-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079312 114 2020-04-04 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1079313 114 2020-04-05 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1079314 114 2020-04-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079315 114 2020-04-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079316 114 2020-04-08 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079317 114 2020-04-09 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079318 114 2020-04-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079319 114 2020-04-11 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1079320 114 2020-04-12 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1079321 114 2020-04-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1084019 121 2020-05-29 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1084020 121 2020-05-30 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +1084021 121 2020-05-31 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1085304 106 2020-06-06 \N \N \N \N \N 00:00:00 04:10:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +988780 146 2020-01-05 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +988781 146 2020-01-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1079322 114 2020-04-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079323 114 2020-04-15 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079324 114 2020-04-16 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079325 114 2020-04-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079326 114 2020-04-18 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1079327 114 2020-04-19 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1079342 112 2020-03-09 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079343 112 2020-03-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079344 112 2020-03-11 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079345 112 2020-03-12 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079346 112 2020-03-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079347 112 2020-03-14 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1084023 121 2020-06-02 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1084024 121 2020-06-03 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1084025 121 2020-06-04 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1084030 121 2020-06-09 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +988782 146 2020-01-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +988783 146 2020-01-08 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1079348 112 2020-03-15 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1079349 112 2020-03-16 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079350 112 2020-03-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079351 112 2020-03-18 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079352 112 2020-03-19 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079353 112 2020-03-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079354 112 2020-03-21 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1079355 112 2020-03-22 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1079356 112 2020-03-23 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079371 112 2020-04-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079372 112 2020-04-08 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079373 112 2020-04-09 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1084031 121 2020-06-10 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1084047 117 2020-05-12 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1084048 117 2020-05-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1085311 106 2020-06-13 \N \N \N \N \N 00:00:00 04:10:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +988784 146 2020-01-09 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +988785 146 2020-01-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +988786 146 2020-01-11 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +988787 146 2020-01-12 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1079374 112 2020-04-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079375 112 2020-04-11 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1079376 112 2020-04-12 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1079377 112 2020-04-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079378 112 2020-04-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079379 112 2020-04-15 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079380 112 2020-04-16 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079381 112 2020-04-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079382 112 2020-04-18 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1079383 112 2020-04-19 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1079384 108 2020-02-24 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1079385 108 2020-02-25 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1084053 117 2020-05-18 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1084054 117 2020-05-19 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1085312 106 2020-06-14 \N \N \N \N \N 00:00:00 04:10:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1085333 110 2020-05-10 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +988776 146 2020-01-01 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +988777 146 2020-01-02 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1079398 108 2020-03-09 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1079399 108 2020-03-10 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1079400 108 2020-03-11 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1079401 108 2020-03-12 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1079402 108 2020-03-13 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1079403 108 2020-03-14 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1079404 108 2020-03-15 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1079405 108 2020-03-16 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1079406 108 2020-03-17 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1079407 108 2020-03-18 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1079408 108 2020-03-19 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1084055 117 2020-05-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1084060 117 2020-05-25 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1084075 117 2020-06-09 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1084076 117 2020-06-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1085334 110 2020-05-11 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +988788 146 2020-01-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +988789 146 2020-01-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1079409 108 2020-03-20 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1079410 108 2020-03-21 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1079411 108 2020-03-22 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1079412 108 2020-03-23 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1079427 108 2020-04-07 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1079428 108 2020-04-08 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1079429 108 2020-04-09 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1079430 108 2020-04-10 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1079431 108 2020-04-11 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1079432 108 2020-04-12 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1079433 108 2020-04-13 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1079434 108 2020-04-14 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1079435 108 2020-04-15 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1084077 117 2020-06-11 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1084078 117 2020-06-12 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1084082 125 2020-04-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 03:20:00 +988790 146 2020-01-15 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +988791 146 2020-01-16 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +988792 146 2020-01-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1079436 108 2020-04-16 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1079437 108 2020-04-17 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1079438 108 2020-04-18 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1079439 108 2020-04-19 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1079440 135 2020-02-24 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1079441 135 2020-02-25 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1079442 135 2020-02-26 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1079457 135 2020-03-12 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1079458 135 2020-03-13 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1079459 135 2020-03-14 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1079460 135 2020-03-15 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1079461 135 2020-03-16 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1084083 125 2020-04-22 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 03:20:00 +1084084 125 2020-04-23 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 03:20:00 +1085335 110 2020-05-12 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1085361 110 2020-06-07 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +988793 146 2020-01-18 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +988794 146 2020-01-19 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +988795 146 2020-01-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +988796 146 2020-01-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1079462 135 2020-03-17 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1079463 135 2020-03-18 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1079464 135 2020-03-19 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1079465 135 2020-03-20 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1079466 135 2020-03-21 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1079467 135 2020-03-22 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1079468 135 2020-03-23 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1079469 135 2020-03-24 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1079470 135 2020-03-25 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1079471 135 2020-03-26 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1079486 135 2020-04-10 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1084089 125 2020-04-28 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 03:20:00 +1084104 125 2020-05-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 03:20:00 +1084105 125 2020-05-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 03:20:00 +988798 146 2020-01-23 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +988799 146 2020-01-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +988800 146 2020-01-25 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +988801 146 2020-01-26 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1079487 135 2020-04-11 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1079488 135 2020-04-12 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1079489 135 2020-04-13 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1079490 135 2020-04-14 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1079491 135 2020-04-15 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1079492 135 2020-04-16 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1079493 135 2020-04-17 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1079494 135 2020-04-18 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1079495 135 2020-04-19 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1079496 127 2020-02-24 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1079497 127 2020-02-25 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1084106 125 2020-05-15 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 03:20:00 +1084107 125 2020-05-16 \N \N \N \N \N 00:00:00 03:20:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 03:20:00 +1084112 125 2020-05-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 03:20:00 +988802 146 2020-01-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +988803 146 2020-01-28 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +988804 146 2020-01-29 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +988805 146 2020-01-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1079498 127 2020-02-26 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1079499 127 2020-02-27 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1079500 127 2020-02-28 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1079503 127 2020-03-02 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1079504 127 2020-03-03 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1079519 127 2020-03-18 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1079520 127 2020-03-19 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1079521 127 2020-03-20 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1079522 127 2020-03-21 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1079523 127 2020-03-22 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1084115 125 2020-05-24 \N \N \N \N \N 00:00:00 03:20:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1084134 125 2020-06-12 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 03:20:00 +1084135 125 2020-06-13 \N \N \N \N \N 00:00:00 03:20:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 03:20:00 +1084136 125 2020-06-14 \N \N \N \N \N 00:00:00 03:20:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1085364 110 2020-06-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +988806 146 2020-01-31 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +988807 146 2020-02-01 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +988808 146 2020-02-02 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +988809 146 2020-02-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1079524 127 2020-03-23 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1079525 127 2020-03-24 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1079526 127 2020-03-25 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1079527 127 2020-03-26 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1079528 127 2020-03-27 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1079529 127 2020-03-28 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1079530 127 2020-03-29 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1079531 127 2020-03-30 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1079532 127 2020-03-31 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1079533 127 2020-04-01 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1079534 127 2020-04-02 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1084137 119 2020-04-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1084142 119 2020-04-25 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +1084143 119 2020-04-26 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1085369 145 2020-04-20 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085370 145 2020-04-21 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +988810 146 2020-02-04 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +988811 146 2020-02-05 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +988812 146 2020-02-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +988813 146 2020-02-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1079549 127 2020-04-17 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1079550 127 2020-04-18 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1079551 127 2020-04-19 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1079552 149 2020-02-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079553 149 2020-02-25 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079554 149 2020-02-26 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079555 149 2020-02-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079556 149 2020-02-28 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079557 149 2020-02-29 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1079558 149 2020-03-01 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1079559 149 2020-03-02 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1084144 119 2020-04-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1084145 119 2020-04-28 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1084164 119 2020-05-17 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +988814 146 2020-02-08 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +988815 146 2020-02-09 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +988816 146 2020-02-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +988817 146 2020-02-11 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1079560 149 2020-03-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079561 149 2020-03-04 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079562 149 2020-03-05 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079563 149 2020-03-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079578 149 2020-03-21 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1079579 149 2020-03-22 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1079580 149 2020-03-23 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079581 149 2020-03-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079582 149 2020-03-25 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079583 149 2020-03-26 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1084165 119 2020-05-18 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1084166 119 2020-05-19 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1084167 119 2020-05-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1085371 145 2020-04-22 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085372 145 2020-04-23 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085391 145 2020-05-12 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +988818 146 2020-02-12 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +988819 146 2020-02-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +988820 146 2020-02-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1079584 149 2020-03-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079585 149 2020-03-28 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1079586 149 2020-03-29 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1079587 149 2020-03-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079588 149 2020-03-31 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079589 149 2020-04-01 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079590 149 2020-04-02 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079591 149 2020-04-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079592 149 2020-04-04 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1079593 149 2020-04-05 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1079594 149 2020-04-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079609 103 2020-02-25 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1084168 119 2020-05-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1084173 119 2020-05-26 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1084174 119 2020-05-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +988821 146 2020-02-15 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +988822 146 2020-02-16 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +988823 146 2020-02-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +988824 146 2020-02-18 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1079610 103 2020-02-26 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079611 103 2020-02-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079612 103 2020-02-28 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079613 103 2020-02-29 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1079614 103 2020-03-01 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1079615 103 2020-03-02 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079616 103 2020-03-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079617 103 2020-03-04 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079618 103 2020-03-05 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079619 103 2020-03-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079620 103 2020-03-07 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1079621 103 2020-03-08 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1084175 119 2020-05-28 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1084176 119 2020-05-29 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +988825 146 2020-02-19 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +988826 146 2020-02-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +988827 146 2020-02-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +988828 146 2020-02-22 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +1079622 103 2020-03-09 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079623 103 2020-03-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079624 103 2020-03-11 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079639 103 2020-03-26 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079640 103 2020-03-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079641 103 2020-03-28 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1079642 103 2020-03-29 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1079643 103 2020-03-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079644 103 2020-03-31 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079645 103 2020-04-01 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1084197 113 2020-04-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1084198 113 2020-04-25 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +1084199 113 2020-04-26 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1084200 113 2020-04-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1085392 145 2020-05-13 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +988829 146 2020-02-23 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +990930 132 2020-01-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +990931 132 2020-01-04 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +990932 132 2020-01-05 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +990933 132 2020-01-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1079646 103 2020-04-02 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079647 103 2020-04-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079648 103 2020-04-04 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1079649 103 2020-04-05 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1079650 103 2020-04-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079651 103 2020-04-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079652 103 2020-04-08 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079653 103 2020-04-09 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079668 121 2020-02-28 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1079669 121 2020-02-29 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1079670 121 2020-03-01 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1084204 113 2020-05-01 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1084205 113 2020-05-02 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +1084206 113 2020-05-03 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +990934 132 2020-01-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +990935 132 2020-01-08 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +990936 132 2020-01-09 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1079671 121 2020-03-02 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1079672 121 2020-03-03 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1079673 121 2020-03-04 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1079674 121 2020-03-05 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1079675 121 2020-03-06 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1079676 121 2020-03-07 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1079677 121 2020-03-08 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1079678 121 2020-03-09 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1079679 121 2020-03-10 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1079680 121 2020-03-11 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1079681 121 2020-03-12 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1084225 113 2020-05-22 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1084226 113 2020-05-23 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +1084227 113 2020-05-24 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1085393 145 2020-05-14 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085394 145 2020-05-15 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +990937 132 2020-01-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +990938 132 2020-01-11 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +990939 132 2020-01-12 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +990940 132 2020-01-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1079682 121 2020-03-13 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1079683 121 2020-03-14 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1079699 121 2020-03-30 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1079700 121 2020-03-31 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1079701 121 2020-04-01 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1079702 121 2020-04-02 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1079703 121 2020-04-03 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1079704 121 2020-04-04 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1079705 121 2020-04-05 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1079706 121 2020-04-06 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1084228 113 2020-05-25 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1084229 113 2020-05-26 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1084234 113 2020-05-31 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1084235 113 2020-06-01 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +990941 132 2020-01-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +990942 132 2020-01-15 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +993082 115 2020-01-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1079707 121 2020-04-07 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1079708 121 2020-04-08 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1079709 121 2020-04-09 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1079710 121 2020-04-10 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1079711 121 2020-04-11 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1079712 121 2020-04-12 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1079727 125 2020-03-02 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 03:20:00 +1079728 125 2020-03-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 03:20:00 +1079729 125 2020-03-04 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 03:20:00 +1079730 125 2020-03-05 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 03:20:00 +1079731 125 2020-03-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 03:20:00 +1079732 125 2020-03-07 \N \N \N \N \N 00:00:00 03:20:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 03:20:00 +1084251 147 2020-04-22 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1084256 147 2020-04-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1085395 145 2020-05-16 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +1085396 145 2020-05-17 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +993083 115 2020-01-04 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +993084 115 2020-01-05 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +993085 115 2020-01-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +993086 115 2020-01-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1079733 125 2020-03-08 \N \N \N \N \N 00:00:00 03:20:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1079734 125 2020-03-09 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 03:20:00 +1079735 125 2020-03-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 03:20:00 +1079736 125 2020-03-11 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 03:20:00 +1079737 125 2020-03-12 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 03:20:00 +1079738 125 2020-03-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 03:20:00 +1079739 125 2020-03-14 \N \N \N \N \N 00:00:00 03:20:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 03:20:00 +1079740 125 2020-03-15 \N \N \N \N \N 00:00:00 03:20:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1079741 125 2020-03-16 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 03:20:00 +1079742 125 2020-03-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 03:20:00 +1079757 125 2020-04-01 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 03:20:00 +1084257 147 2020-04-28 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1084258 147 2020-04-29 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1084259 147 2020-04-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1085400 145 2020-05-21 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +993087 115 2020-01-08 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +993088 115 2020-01-09 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +993089 115 2020-01-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +993090 115 2020-01-11 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +1079758 125 2020-04-02 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 03:20:00 +1079759 125 2020-04-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 03:20:00 +1079760 125 2020-04-04 \N \N \N \N \N 00:00:00 03:20:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 03:20:00 +1079761 125 2020-04-05 \N \N \N \N \N 00:00:00 03:20:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1079762 125 2020-04-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 03:20:00 +1079763 125 2020-04-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 03:20:00 +1079764 125 2020-04-08 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 03:20:00 +1079765 125 2020-04-09 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 03:20:00 +1079766 125 2020-04-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 03:20:00 +1079767 125 2020-04-11 \N \N \N \N \N 00:00:00 03:20:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 03:20:00 +1079768 125 2020-04-12 \N \N \N \N \N 00:00:00 03:20:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1084264 147 2020-05-05 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1084279 147 2020-05-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1084280 147 2020-05-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1085401 145 2020-05-22 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +993091 115 2020-01-12 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +993092 115 2020-01-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +993093 115 2020-01-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +993094 115 2020-01-15 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1079769 125 2020-04-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 03:20:00 +1079770 125 2020-04-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 03:20:00 +1079771 125 2020-04-15 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 03:20:00 +1079786 119 2020-03-05 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079787 119 2020-03-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079788 119 2020-03-07 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1079789 119 2020-03-08 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1079790 119 2020-03-09 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079791 119 2020-03-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079792 119 2020-03-11 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079793 119 2020-03-12 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079794 119 2020-03-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1084281 147 2020-05-22 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1084282 147 2020-05-23 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +993095 115 2020-01-16 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +993096 115 2020-01-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +993097 115 2020-01-18 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +993098 115 2020-01-19 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1079795 119 2020-03-14 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1079796 119 2020-03-15 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1079797 119 2020-03-16 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079798 119 2020-03-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079799 119 2020-03-18 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079800 119 2020-03-19 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079815 119 2020-04-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079816 119 2020-04-04 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1079817 119 2020-04-05 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1079818 119 2020-04-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079819 119 2020-04-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1084287 147 2020-05-28 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1084288 147 2020-05-29 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1084289 147 2020-05-30 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +1084290 147 2020-05-31 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +993099 115 2020-01-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +993100 115 2020-01-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +993101 115 2020-01-22 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1079820 119 2020-04-08 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079821 119 2020-04-09 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079822 119 2020-04-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079823 119 2020-04-11 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1079824 119 2020-04-12 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1079825 119 2020-04-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079826 119 2020-04-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079827 119 2020-04-15 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079828 119 2020-04-16 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079829 119 2020-04-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079844 113 2020-03-07 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1084309 131 2020-04-24 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 04:00:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 04:00:00 +1084310 131 2020-04-25 \N \N \N \N \N 00:00:00 04:00:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1084311 131 2020-04-26 \N \N \N \N \N 00:00:00 04:00:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1085403 145 2020-05-24 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1085418 145 2020-06-08 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085423 145 2020-06-13 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +993102 115 2020-01-23 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +993103 115 2020-01-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +993104 115 2020-01-25 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +993105 115 2020-01-26 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1079845 113 2020-03-08 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1079846 113 2020-03-09 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079847 113 2020-03-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079848 113 2020-03-11 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079849 113 2020-03-12 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079850 113 2020-03-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079851 113 2020-03-14 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1079852 113 2020-03-15 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1079853 113 2020-03-16 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079854 113 2020-03-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079855 113 2020-03-18 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1084312 131 2020-04-27 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 04:00:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 04:00:00 +1084317 131 2020-05-02 \N \N \N \N \N 00:00:00 04:00:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1084318 131 2020-05-03 \N \N \N \N \N 00:00:00 04:00:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1084319 131 2020-05-04 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 04:00:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 04:00:00 +993106 115 2020-01-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +993107 115 2020-01-28 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +993109 115 2020-01-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +993110 115 2020-01-31 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +993111 115 2020-02-01 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +1079856 113 2020-03-19 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079857 113 2020-03-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079858 113 2020-03-21 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1079859 113 2020-03-22 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1079874 113 2020-04-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079875 113 2020-04-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079876 113 2020-04-08 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079877 113 2020-04-09 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079878 113 2020-04-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079879 113 2020-04-11 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1084320 131 2020-05-05 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 04:00:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 04:00:00 +1084339 131 2020-05-24 \N \N \N \N \N 00:00:00 04:00:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1084340 131 2020-05-25 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 04:00:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 04:00:00 +1085424 145 2020-06-14 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +993112 115 2020-02-02 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +993113 115 2020-02-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +993114 115 2020-02-04 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +993115 115 2020-02-05 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1079880 113 2020-04-12 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1079881 113 2020-04-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079882 113 2020-04-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079883 113 2020-04-15 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079884 113 2020-04-16 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079885 113 2020-04-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079886 113 2020-04-18 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1079887 113 2020-04-19 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1079888 147 2020-02-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079903 147 2020-03-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079904 147 2020-03-11 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1084341 131 2020-05-26 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 04:00:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 04:00:00 +1084342 131 2020-05-27 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 04:00:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 04:00:00 +1085425 148 2020-04-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1085426 148 2020-04-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +993116 115 2020-02-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +993117 115 2020-02-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +993118 115 2020-02-08 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +993119 115 2020-02-09 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1079905 147 2020-03-12 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079906 147 2020-03-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079907 147 2020-03-14 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1079908 147 2020-03-15 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1079909 147 2020-03-16 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079910 147 2020-03-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079911 147 2020-03-18 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079912 147 2020-03-19 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079913 147 2020-03-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079914 147 2020-03-21 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1079915 147 2020-03-22 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1079916 147 2020-03-23 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1084347 131 2020-06-01 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 04:00:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 04:00:00 +1084348 131 2020-06-02 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 04:00:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 04:00:00 +1085431 148 2020-04-26 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +993120 115 2020-02-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +993121 115 2020-02-11 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +993122 115 2020-02-12 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1079917 147 2020-03-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079932 147 2020-04-08 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079933 147 2020-04-09 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079934 147 2020-04-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079935 147 2020-04-11 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1079936 147 2020-04-12 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1079937 147 2020-04-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079938 147 2020-04-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079939 147 2020-04-15 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079940 147 2020-04-16 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079941 147 2020-04-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1084349 131 2020-06-03 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 04:00:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 04:00:00 +1084350 131 2020-06-04 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 04:00:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 04:00:00 +1084369 104 2020-04-28 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:00:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:00:00 +1085432 148 2020-04-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +990928 132 2020-01-01 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +990929 132 2020-01-02 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1079942 147 2020-04-18 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1079943 147 2020-04-19 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1079944 131 2020-02-24 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 04:00:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 04:00:00 +1079945 131 2020-02-25 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 04:00:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 04:00:00 +1079946 131 2020-02-26 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 04:00:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 04:00:00 +1079961 131 2020-03-12 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 04:00:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 04:00:00 +1079962 131 2020-03-13 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 04:00:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 04:00:00 +1079963 131 2020-03-14 \N \N \N \N \N 00:00:00 04:00:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1079964 131 2020-03-15 \N \N \N \N \N 00:00:00 04:00:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1079965 131 2020-03-16 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 04:00:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 04:00:00 +1079966 131 2020-03-17 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 04:00:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 04:00:00 +1079967 131 2020-03-18 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 04:00:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 04:00:00 +1084370 104 2020-04-29 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:00:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:00:00 +1084371 104 2020-04-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:00:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:00:00 +1084372 104 2020-05-01 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:00:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:00:00 +1084373 104 2020-05-02 \N \N \N \N \N 00:00:00 06:00:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +993123 115 2020-02-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +993124 115 2020-02-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +993125 115 2020-02-15 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +993126 115 2020-02-16 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1079968 131 2020-03-19 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 04:00:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 04:00:00 +1079969 131 2020-03-20 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 04:00:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 04:00:00 +1079970 131 2020-03-21 \N \N \N \N \N 00:00:00 04:00:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1079971 131 2020-03-22 \N \N \N \N \N 00:00:00 04:00:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1079972 131 2020-03-23 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 04:00:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 04:00:00 +1079973 131 2020-03-24 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 04:00:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 04:00:00 +1079974 131 2020-03-25 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 04:00:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 04:00:00 +1079975 131 2020-03-26 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 04:00:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 04:00:00 +1079990 131 2020-04-10 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 04:00:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 04:00:00 +1079991 131 2020-04-11 \N \N \N \N \N 00:00:00 04:00:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1079992 131 2020-04-12 \N \N \N \N \N 00:00:00 04:00:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1084378 104 2020-05-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:00:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:00:00 +1084379 104 2020-05-08 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:00:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:00:00 +1084380 104 2020-05-09 \N \N \N \N \N 00:00:00 06:00:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1084381 104 2020-05-10 \N \N \N \N \N 00:00:00 06:00:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1085447 148 2020-05-12 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +993127 115 2020-02-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +993128 115 2020-02-18 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +993129 115 2020-02-19 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1079993 131 2020-04-13 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 04:00:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 04:00:00 +1079994 131 2020-04-14 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 04:00:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 04:00:00 +1079995 131 2020-04-15 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 04:00:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 04:00:00 +1079996 131 2020-04-16 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 04:00:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 04:00:00 +1079997 131 2020-04-17 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 04:00:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 04:00:00 +1079998 131 2020-04-18 \N \N \N \N \N 00:00:00 04:00:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1079999 131 2020-04-19 \N \N \N \N \N 00:00:00 04:00:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1080000 104 2020-02-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:00:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:00:00 +1080001 104 2020-02-25 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:00:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:00:00 +1080002 104 2020-02-26 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:00:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:00:00 +1080003 104 2020-02-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:00:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:00:00 +1080004 104 2020-02-28 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:00:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:00:00 +1084396 104 2020-05-25 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:00:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:00:00 +1084397 104 2020-05-26 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:00:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:00:00 +993130 115 2020-02-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +993131 115 2020-02-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +993132 115 2020-02-22 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +993133 115 2020-02-23 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1080005 104 2020-02-29 \N \N \N \N \N 00:00:00 06:00:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1080021 104 2020-03-16 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:00:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:00:00 +1080022 104 2020-03-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:00:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:00:00 +1080023 104 2020-03-18 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:00:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:00:00 +1080024 104 2020-03-19 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:00:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:00:00 +1080025 104 2020-03-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:00:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:00:00 +1080026 104 2020-03-21 \N \N \N \N \N 00:00:00 06:00:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1080027 104 2020-03-22 \N \N \N \N \N 00:00:00 06:00:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1080028 104 2020-03-23 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:00:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:00:00 +1080029 104 2020-03-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:00:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:00:00 +1080030 104 2020-03-25 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:00:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:00:00 +1084404 104 2020-06-02 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:00:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:00:00 +1084405 104 2020-06-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:00:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:00:00 +1084410 104 2020-06-08 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:00:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:00:00 +1085452 148 2020-05-17 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +995233 114 2020-01-02 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +995234 114 2020-01-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +995235 114 2020-01-04 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +995236 114 2020-01-05 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +995237 114 2020-01-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1080031 104 2020-03-26 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:00:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:00:00 +1080032 104 2020-03-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:00:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:00:00 +1080033 104 2020-03-28 \N \N \N \N \N 00:00:00 06:00:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1080034 104 2020-03-29 \N \N \N \N \N 00:00:00 06:00:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1080049 104 2020-04-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:00:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:00:00 +1080050 104 2020-04-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:00:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:00:00 +1080051 104 2020-04-15 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:00:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:00:00 +1080052 104 2020-04-16 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:00:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:00:00 +1080053 104 2020-04-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:00:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:00:00 +1080054 104 2020-04-18 \N \N \N \N \N 00:00:00 06:00:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1084425 151 2020-04-28 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1084426 151 2020-04-29 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1084427 151 2020-04-30 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +995238 114 2020-01-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +995239 114 2020-01-08 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +995240 114 2020-01-09 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1080055 104 2020-04-19 \N \N \N \N \N 00:00:00 06:00:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1080056 151 2020-02-24 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080057 151 2020-02-25 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080058 151 2020-02-26 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080059 151 2020-02-27 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080060 151 2020-02-28 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080061 151 2020-02-29 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1080062 151 2020-03-01 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1080063 151 2020-03-02 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080078 151 2020-03-17 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080079 151 2020-03-18 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1084432 151 2020-05-05 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1084433 151 2020-05-06 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1084434 151 2020-05-07 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085454 148 2020-05-19 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1085459 148 2020-05-24 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +995241 114 2020-01-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +995242 114 2020-01-11 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +995243 114 2020-01-12 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +995244 114 2020-01-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1080080 151 2020-03-19 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080081 151 2020-03-20 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080082 151 2020-03-21 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1080083 151 2020-03-22 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1080084 151 2020-03-23 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080085 151 2020-03-24 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080086 151 2020-03-25 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080087 151 2020-03-26 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080088 151 2020-03-27 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080089 151 2020-03-28 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1080090 151 2020-03-29 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1084435 151 2020-05-08 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1084436 151 2020-05-09 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +1084453 151 2020-05-26 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085460 148 2020-05-25 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1085461 148 2020-05-26 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +995245 114 2020-01-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +995246 114 2020-01-15 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +995247 114 2020-01-16 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1080091 151 2020-03-30 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080092 151 2020-03-31 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080107 151 2020-04-15 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080108 151 2020-04-16 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080109 151 2020-04-17 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080110 151 2020-04-18 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1080111 151 2020-04-19 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1080112 138 2020-02-24 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080113 138 2020-02-25 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080114 138 2020-02-26 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080115 138 2020-02-27 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1084454 151 2020-05-27 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1084455 151 2020-05-28 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1084456 151 2020-05-29 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +995248 114 2020-01-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +995249 114 2020-01-18 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +995250 114 2020-01-19 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +995251 114 2020-01-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +995252 114 2020-01-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1080116 138 2020-02-28 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080117 138 2020-02-29 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1080118 138 2020-03-01 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1080119 138 2020-03-02 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080120 138 2020-03-03 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080121 138 2020-03-04 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080136 138 2020-03-19 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080137 138 2020-03-20 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080138 138 2020-03-21 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1080139 138 2020-03-22 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1080140 138 2020-03-23 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1084461 151 2020-06-03 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1084462 151 2020-06-04 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +995253 114 2020-01-22 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +995254 114 2020-01-23 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +995255 114 2020-01-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1080141 138 2020-03-24 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080142 138 2020-03-25 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080143 138 2020-03-26 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080144 138 2020-03-27 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080145 138 2020-03-28 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1080146 138 2020-03-29 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1080147 138 2020-03-30 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080148 138 2020-03-31 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080149 138 2020-04-01 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080150 138 2020-04-02 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080165 138 2020-04-17 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1084464 151 2020-06-06 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +1084488 138 2020-05-05 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1084489 138 2020-05-06 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +995256 114 2020-01-25 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +995257 114 2020-01-26 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +995258 114 2020-01-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +995259 114 2020-01-28 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1080166 138 2020-04-18 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1080167 138 2020-04-19 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1080168 105 2020-02-24 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080169 105 2020-02-25 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080170 105 2020-02-26 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080171 105 2020-02-27 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080172 105 2020-02-28 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080173 105 2020-02-29 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1080174 105 2020-03-01 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1080175 105 2020-03-02 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080176 105 2020-03-03 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1084491 138 2020-05-08 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1084492 138 2020-05-09 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +1084496 138 2020-05-13 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +995260 114 2020-01-29 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +995261 114 2020-01-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +995262 114 2020-01-31 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +995263 114 2020-02-01 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +1080177 105 2020-03-04 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080178 105 2020-03-05 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080179 105 2020-03-06 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080180 105 2020-03-07 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1080195 105 2020-03-22 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1080196 105 2020-03-23 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080197 105 2020-03-24 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080198 105 2020-03-25 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080199 105 2020-03-26 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080200 105 2020-03-27 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080201 105 2020-03-28 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1080202 105 2020-03-29 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1084498 138 2020-05-15 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1084499 138 2020-05-16 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +1085476 148 2020-06-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +995264 114 2020-02-02 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +995265 114 2020-02-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +995266 114 2020-02-04 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +995268 114 2020-02-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1080203 105 2020-03-30 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080204 105 2020-03-31 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080205 105 2020-04-01 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080206 105 2020-04-02 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080207 105 2020-04-03 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080208 105 2020-04-04 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1080209 105 2020-04-05 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1080210 105 2020-04-06 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080225 134 2020-02-25 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080226 134 2020-02-26 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1084518 138 2020-06-04 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1084519 138 2020-06-05 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1084520 138 2020-06-06 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +1084521 138 2020-06-07 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1085481 130 2020-04-20 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +995269 114 2020-02-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +995270 114 2020-02-08 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +995271 114 2020-02-09 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +995272 114 2020-02-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +995273 114 2020-02-11 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1080227 134 2020-02-27 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080228 134 2020-02-28 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080229 134 2020-02-29 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1080230 134 2020-03-01 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1080231 134 2020-03-02 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080232 134 2020-03-03 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080233 134 2020-03-04 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080234 134 2020-03-05 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080235 134 2020-03-06 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080236 134 2020-03-07 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1084525 138 2020-06-11 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1084526 138 2020-06-12 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1084527 138 2020-06-13 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +995274 114 2020-02-12 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +995275 114 2020-02-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +995276 114 2020-02-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +995279 114 2020-02-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1080237 134 2020-03-08 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1080238 134 2020-03-09 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080239 134 2020-03-10 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080254 134 2020-03-25 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080255 134 2020-03-26 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080256 134 2020-03-27 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080257 134 2020-03-28 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1080258 134 2020-03-29 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1080259 134 2020-03-30 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080260 134 2020-03-31 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080261 134 2020-04-01 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1084529 105 2020-04-20 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1084548 105 2020-05-09 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +1084549 105 2020-05-10 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1085482 130 2020-04-21 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +995280 114 2020-02-18 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +995281 114 2020-02-19 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +995282 114 2020-02-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1080262 134 2020-04-02 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080263 134 2020-04-03 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080264 134 2020-04-04 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1080265 134 2020-04-05 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1080266 134 2020-04-06 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080267 134 2020-04-07 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080268 134 2020-04-08 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080283 144 2020-02-27 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080284 144 2020-02-28 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080285 144 2020-02-29 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1080286 144 2020-03-01 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1084550 105 2020-05-11 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1084551 105 2020-05-12 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1084556 105 2020-05-17 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1084557 105 2020-05-18 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085483 130 2020-04-22 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +995283 114 2020-02-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +995284 114 2020-02-22 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +995285 114 2020-02-23 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +997390 112 2020-01-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1080287 144 2020-03-02 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080288 144 2020-03-03 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080289 144 2020-03-04 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080290 144 2020-03-05 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080291 144 2020-03-06 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080292 144 2020-03-07 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1080293 144 2020-03-08 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1080294 144 2020-03-09 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080295 144 2020-03-10 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080296 144 2020-03-11 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080297 144 2020-03-12 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1084558 105 2020-05-19 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1084559 105 2020-05-20 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1084578 105 2020-06-08 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +997391 112 2020-01-08 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +997392 112 2020-01-09 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +997393 112 2020-01-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +997394 112 2020-01-11 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +1080312 144 2020-03-27 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080313 144 2020-03-28 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1080314 144 2020-03-29 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1080315 144 2020-03-30 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080316 144 2020-03-31 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080317 102 2020-02-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1080318 102 2020-02-25 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1080319 102 2020-02-26 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1080320 102 2020-02-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1080321 102 2020-02-28 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1080322 102 2020-02-29 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1084579 105 2020-06-09 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1084580 105 2020-06-10 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085488 130 2020-04-27 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085489 130 2020-04-28 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +997395 112 2020-01-12 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +997396 112 2020-01-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +997397 112 2020-01-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +997398 112 2020-01-15 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1080323 102 2020-03-01 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1080324 102 2020-03-02 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1080325 102 2020-03-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1080326 102 2020-03-04 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1080327 102 2020-03-05 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1080342 102 2020-03-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1080343 102 2020-03-21 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1080344 102 2020-03-22 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1080345 102 2020-03-23 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1080346 102 2020-03-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1080347 102 2020-03-25 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1080348 102 2020-03-26 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1084581 105 2020-06-11 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1084586 134 2020-04-21 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +997399 112 2020-01-16 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +997400 112 2020-01-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +997401 112 2020-01-18 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +997402 112 2020-01-19 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1080349 102 2020-03-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1080350 102 2020-03-28 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1080351 102 2020-03-29 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1080352 102 2020-03-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1080353 102 2020-03-31 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1080354 102 2020-04-01 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1080355 102 2020-04-02 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1080356 102 2020-04-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1080371 102 2020-04-18 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1080372 102 2020-04-19 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1084587 134 2020-04-22 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1084588 134 2020-04-23 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1084589 134 2020-04-24 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1084590 134 2020-04-25 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +997403 112 2020-01-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +997404 112 2020-01-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +997405 112 2020-01-22 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +997413 112 2020-01-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1080373 109 2020-02-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1080374 109 2020-02-25 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1080375 109 2020-02-26 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1080376 109 2020-02-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1080377 109 2020-02-28 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1080378 109 2020-02-29 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1080379 109 2020-03-01 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1080380 109 2020-03-02 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1080381 109 2020-03-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1080382 109 2020-03-04 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1080383 109 2020-03-05 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1084611 134 2020-05-16 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +1084612 134 2020-05-17 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1085490 130 2020-04-29 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085505 130 2020-05-14 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085510 130 2020-05-19 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +997414 112 2020-01-31 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +997415 112 2020-02-01 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +997416 112 2020-02-02 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +997417 112 2020-02-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1080384 109 2020-03-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1080385 109 2020-03-07 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1080386 109 2020-03-08 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1080401 109 2020-03-23 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1080402 109 2020-03-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1080403 109 2020-03-25 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1080404 109 2020-03-26 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1080405 109 2020-03-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1080406 109 2020-03-28 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1080407 109 2020-03-29 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1080408 109 2020-03-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1084613 134 2020-05-18 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1084618 134 2020-05-23 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +1084619 134 2020-05-24 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +993134 115 2019-12-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +993135 115 2019-12-31 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +997418 112 2020-02-04 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1080409 109 2020-03-31 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1080410 109 2020-04-01 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1080411 109 2020-04-02 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1080412 109 2020-04-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1080413 109 2020-04-04 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1080414 109 2020-04-05 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1080415 109 2020-04-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1080430 118 2020-02-25 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1080431 118 2020-02-26 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1080432 118 2020-02-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1080433 118 2020-02-28 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1084640 134 2020-06-14 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1084641 102 2020-04-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1084642 102 2020-04-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1085511 130 2020-05-20 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085512 130 2020-05-21 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +997419 112 2020-02-05 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +997420 112 2020-02-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +997421 112 2020-02-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +997422 112 2020-02-08 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +1080434 118 2020-02-29 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1080435 118 2020-03-01 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1080436 118 2020-03-02 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1080437 118 2020-03-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1080438 118 2020-03-04 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1080439 118 2020-03-05 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1080440 118 2020-03-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1080441 118 2020-03-07 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1080442 118 2020-03-08 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1080443 118 2020-03-09 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1080444 118 2020-03-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1080459 118 2020-03-25 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1084643 102 2020-04-22 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1084648 102 2020-04-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +997423 112 2020-02-09 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +997424 112 2020-02-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +997425 112 2020-02-11 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +997426 112 2020-02-12 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1080460 118 2020-03-26 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1080461 118 2020-03-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1080462 118 2020-03-28 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1080463 118 2020-03-29 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1080464 118 2020-03-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1080465 118 2020-03-31 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1080466 118 2020-04-01 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1080467 118 2020-04-02 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1080468 118 2020-04-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1080469 118 2020-04-04 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1080470 118 2020-04-05 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1084663 102 2020-05-12 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1084664 102 2020-05-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1084665 102 2020-05-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1085513 130 2020-05-22 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +997427 112 2020-02-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +997428 112 2020-02-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +997429 112 2020-02-15 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +997430 112 2020-02-16 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1080471 118 2020-04-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1080472 118 2020-04-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1080473 118 2020-04-08 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1080488 133 2020-02-27 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080489 133 2020-02-28 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080490 133 2020-02-29 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1080491 133 2020-03-01 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1080492 133 2020-03-02 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080493 133 2020-03-03 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080494 133 2020-03-04 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1084669 102 2020-05-18 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1084670 102 2020-05-19 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1084671 102 2020-05-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1085515 130 2020-05-24 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1085516 130 2020-05-25 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +993080 115 2020-01-01 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +993081 115 2020-01-02 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1080495 133 2020-03-05 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080496 133 2020-03-06 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080497 133 2020-03-07 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1080498 133 2020-03-08 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1080499 133 2020-03-09 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080500 133 2020-03-10 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080501 133 2020-03-11 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080502 133 2020-03-12 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080517 133 2020-03-27 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080518 133 2020-03-28 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1080519 133 2020-03-29 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1080520 133 2020-03-30 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080521 133 2020-03-31 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1084672 102 2020-05-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1084677 102 2020-05-26 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1084692 102 2020-06-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +993108 115 2020-01-29 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1080522 133 2020-04-01 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080523 133 2020-04-02 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080524 133 2020-04-03 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080525 133 2020-04-04 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1080526 133 2020-04-05 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1080527 133 2020-04-06 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080528 133 2020-04-07 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080529 133 2020-04-08 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080530 133 2020-04-09 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080531 133 2020-04-10 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080546 111 2020-02-29 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1080547 111 2020-03-01 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1080548 111 2020-03-02 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1084693 102 2020-06-11 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1084694 102 2020-06-12 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1084699 109 2020-04-22 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1085535 130 2020-06-13 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +1085536 130 2020-06-14 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1085537 129 2020-04-20 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085543 129 2020-04-26 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +997431 112 2020-02-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +997432 112 2020-02-18 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +997433 112 2020-02-19 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1080549 111 2020-03-03 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080550 111 2020-03-04 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080551 111 2020-03-05 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080552 111 2020-03-06 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080553 111 2020-03-07 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1080554 111 2020-03-08 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1080555 111 2020-03-09 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080556 111 2020-03-10 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080557 111 2020-03-11 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080558 111 2020-03-12 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080559 111 2020-03-13 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1084700 109 2020-04-23 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1084701 109 2020-04-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1084702 109 2020-04-25 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +1084703 109 2020-04-26 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +997434 112 2020-02-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +997435 112 2020-02-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1080560 111 2020-03-14 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1080561 111 2020-03-15 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1080576 111 2020-03-30 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080577 111 2020-03-31 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080578 111 2020-04-01 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080579 111 2020-04-02 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080580 111 2020-04-03 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080581 111 2020-04-04 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1080582 111 2020-04-05 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1080583 111 2020-04-06 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080584 111 2020-04-07 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080585 111 2020-04-08 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1084722 109 2020-05-15 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1084723 109 2020-05-16 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +1084724 109 2020-05-17 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1084725 109 2020-05-18 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1085544 129 2020-04-27 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +997436 112 2020-02-22 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +997437 112 2020-02-23 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1080586 111 2020-04-09 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080587 111 2020-04-10 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080588 111 2020-04-11 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1080589 111 2020-04-12 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1080590 111 2020-04-13 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080605 128 2020-03-03 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080606 128 2020-03-04 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080607 128 2020-03-05 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080608 128 2020-03-06 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080609 128 2020-03-07 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1080610 128 2020-03-08 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1080611 128 2020-03-09 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080612 128 2020-03-10 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1084729 109 2020-05-22 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1084730 109 2020-05-23 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +1084731 109 2020-05-24 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +999560 108 2020-01-25 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +999561 108 2020-01-26 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +999562 108 2020-01-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1080613 128 2020-03-11 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080614 128 2020-03-12 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080615 128 2020-03-13 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080616 128 2020-03-14 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1080617 128 2020-03-15 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1080618 128 2020-03-16 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080619 128 2020-03-17 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080634 128 2020-04-01 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080635 128 2020-04-02 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080636 128 2020-04-03 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080637 128 2020-04-04 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1080638 128 2020-04-05 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1084752 109 2020-06-14 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1084753 118 2020-04-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1084754 118 2020-04-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1084755 118 2020-04-22 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +999563 108 2020-01-28 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +999564 108 2020-01-29 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1080639 128 2020-04-06 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080640 128 2020-04-07 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080641 128 2020-04-08 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080642 128 2020-04-09 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080643 128 2020-04-10 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080644 128 2020-04-11 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1080645 128 2020-04-12 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1080646 128 2020-04-13 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080647 128 2020-04-14 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080648 128 2020-04-15 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080663 142 2020-03-05 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080664 142 2020-03-06 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1084760 118 2020-04-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1084761 118 2020-04-28 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1084762 118 2020-04-29 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1085545 129 2020-04-28 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +999565 108 2020-01-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +999566 108 2020-01-31 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +999567 108 2020-02-01 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +1080665 142 2020-03-07 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1080666 142 2020-03-08 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1080667 142 2020-03-09 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080668 142 2020-03-10 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080669 142 2020-03-11 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080670 142 2020-03-12 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080671 142 2020-03-13 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080672 142 2020-03-14 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1080673 142 2020-03-15 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1080674 142 2020-03-16 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080675 142 2020-03-17 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080676 142 2020-03-18 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1084763 118 2020-04-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1084782 118 2020-05-19 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1084783 118 2020-05-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1085546 129 2020-04-29 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +999568 108 2020-02-02 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +999569 108 2020-02-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1080677 142 2020-03-19 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080692 142 2020-04-03 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080693 142 2020-04-04 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1080694 142 2020-04-05 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1080695 142 2020-04-06 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080696 142 2020-04-07 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080697 142 2020-04-08 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080698 142 2020-04-09 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080699 142 2020-04-10 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080700 142 2020-04-11 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1080701 142 2020-04-12 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1080702 142 2020-04-13 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1084784 118 2020-05-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1084785 118 2020-05-22 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1084786 118 2020-05-23 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +1084787 118 2020-05-24 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1085566 129 2020-05-19 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085567 129 2020-05-20 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +999570 108 2020-02-04 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +999571 108 2020-02-05 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1080703 142 2020-04-14 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080704 142 2020-04-15 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080705 142 2020-04-16 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080706 142 2020-04-17 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080721 136 2020-03-07 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1080722 136 2020-03-08 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1080723 136 2020-03-09 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080724 136 2020-03-10 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080725 136 2020-03-11 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080726 136 2020-03-12 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080727 136 2020-03-13 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080728 136 2020-03-14 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1080729 136 2020-03-15 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1084792 118 2020-05-29 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1084793 118 2020-05-30 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +1084794 118 2020-05-31 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1085568 129 2020-05-21 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085569 129 2020-05-22 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +999572 108 2020-02-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +999573 108 2020-02-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +999575 108 2020-02-09 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1080730 136 2020-03-16 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080731 136 2020-03-17 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080732 136 2020-03-18 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080733 136 2020-03-19 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080734 136 2020-03-20 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080735 136 2020-03-21 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1080736 136 2020-03-22 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1080751 136 2020-04-06 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080752 136 2020-04-07 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080753 136 2020-04-08 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080754 136 2020-04-09 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1084809 133 2020-04-20 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1084813 133 2020-04-24 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1084814 133 2020-04-25 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +1084815 133 2020-04-26 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +999581 108 2020-02-15 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +1001724 135 2020-02-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1001725 135 2020-02-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1080755 136 2020-04-10 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080756 136 2020-04-11 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1080757 136 2020-04-12 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1080758 136 2020-04-13 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080759 136 2020-04-14 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080760 136 2020-04-15 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080761 136 2020-04-16 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080762 136 2020-04-17 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080763 136 2020-04-18 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1080764 136 2020-04-19 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1080765 139 2020-02-24 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080780 139 2020-03-10 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1084816 133 2020-04-27 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1084817 133 2020-04-28 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1084822 133 2020-05-03 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1085574 129 2020-05-27 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1001726 135 2020-02-08 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +1001727 135 2020-02-09 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1080781 139 2020-03-11 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080782 139 2020-03-12 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080783 139 2020-03-13 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080784 139 2020-03-14 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1080785 139 2020-03-15 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1080786 139 2020-03-16 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080787 139 2020-03-17 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080788 139 2020-03-18 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080789 139 2020-03-19 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080790 139 2020-03-20 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080791 139 2020-03-21 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1080792 139 2020-03-22 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1080793 139 2020-03-23 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1084823 133 2020-05-04 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1084838 133 2020-05-19 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1084839 133 2020-05-20 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085576 129 2020-05-29 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085577 129 2020-05-30 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +1001728 135 2020-02-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1001729 135 2020-02-11 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1080794 139 2020-03-24 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080809 139 2020-04-08 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080810 139 2020-04-09 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080811 139 2020-04-10 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080812 139 2020-04-11 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1080813 139 2020-04-12 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1080814 139 2020-04-13 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080815 139 2020-04-14 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080816 139 2020-04-15 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080817 139 2020-04-16 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080818 139 2020-04-17 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080819 139 2020-04-18 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1084844 133 2020-05-25 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1084845 133 2020-05-26 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1084846 133 2020-05-27 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085596 143 2020-04-23 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1001730 135 2020-02-12 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1001731 135 2020-02-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1080820 139 2020-04-19 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1080821 141 2020-02-24 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080822 141 2020-02-25 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080823 141 2020-02-26 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080838 141 2020-03-12 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080839 141 2020-03-13 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080840 141 2020-03-14 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1080841 141 2020-03-15 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1080842 141 2020-03-16 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080843 141 2020-03-17 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080844 141 2020-03-18 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080845 141 2020-03-19 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1084847 133 2020-05-28 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1084852 133 2020-06-02 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1084867 111 2020-04-22 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1001732 135 2020-02-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1001733 135 2020-02-15 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +1001734 135 2020-02-16 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1080846 141 2020-03-20 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080847 141 2020-03-21 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1080848 141 2020-03-22 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1080849 141 2020-03-23 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080850 141 2020-03-24 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080851 141 2020-03-25 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080852 141 2020-03-26 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080867 141 2020-04-10 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080868 141 2020-04-11 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1080869 141 2020-04-12 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1080870 141 2020-04-13 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1084869 111 2020-04-24 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1084874 111 2020-04-29 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1084875 111 2020-04-30 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1084876 111 2020-05-01 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085597 143 2020-04-24 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1001735 135 2020-02-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1001736 135 2020-02-18 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1080871 141 2020-04-14 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080872 141 2020-04-15 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080873 141 2020-04-16 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080874 141 2020-04-17 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080875 141 2020-04-18 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1080876 141 2020-04-19 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1080877 122 2020-02-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1080878 122 2020-02-25 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1080879 122 2020-02-26 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1080880 122 2020-02-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1080881 122 2020-02-28 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1080882 122 2020-02-29 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1080890 122 2020-03-08 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1084877 111 2020-05-02 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +1084878 111 2020-05-03 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1084897 111 2020-05-22 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085600 143 2020-04-27 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085605 143 2020-05-02 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +1001737 135 2020-02-19 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1001738 135 2020-02-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1080891 122 2020-03-09 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1080892 122 2020-03-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1080893 122 2020-03-11 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1080894 122 2020-03-12 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1080895 122 2020-03-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1080896 122 2020-03-14 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1080899 122 2020-03-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1080900 122 2020-03-18 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1080915 122 2020-04-02 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1080916 122 2020-04-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1080917 122 2020-04-04 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1084898 111 2020-05-23 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +1084899 111 2020-05-24 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1084900 111 2020-05-25 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1084905 111 2020-05-30 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +1084906 111 2020-05-31 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1085606 143 2020-05-03 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1001739 135 2020-02-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1001740 135 2020-02-22 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +1080918 122 2020-04-05 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1080919 122 2020-04-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1080920 122 2020-04-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1080921 122 2020-04-08 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1080922 122 2020-04-09 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1080923 122 2020-04-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1080924 122 2020-04-11 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1080925 122 2020-04-12 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1080926 122 2020-04-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1080927 122 2020-04-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1080928 122 2020-04-15 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1080929 122 2020-04-16 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1084907 111 2020-06-01 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1084908 111 2020-06-02 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1084927 128 2020-04-26 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1084928 128 2020-04-27 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085607 143 2020-05-04 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1001741 135 2020-02-23 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1003859 127 2020-01-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1003860 127 2020-01-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1080944 106 2020-03-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 04:10:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 \N +1080945 106 2020-03-07 \N \N \N \N \N 00:00:00 04:10:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1080946 106 2020-03-08 \N \N \N \N \N 00:00:00 04:10:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1080947 106 2020-03-09 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 04:10:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 04:10:00 +1080948 106 2020-03-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 04:10:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 04:10:00 +1080949 106 2020-03-11 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 04:10:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 04:10:00 +1080950 106 2020-03-12 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 04:10:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 04:10:00 +1080951 106 2020-03-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 04:10:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 \N +1080952 106 2020-03-14 \N \N \N \N \N 00:00:00 04:10:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1080953 106 2020-03-15 \N \N \N \N \N 00:00:00 04:10:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1080954 106 2020-03-16 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 04:10:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 04:10:00 +1080955 106 2020-03-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 04:10:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 04:10:00 +1084929 128 2020-04-28 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1084930 128 2020-04-29 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1084935 128 2020-05-04 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085628 143 2020-05-25 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1003861 127 2020-01-22 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1003862 127 2020-01-23 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1080956 106 2020-03-18 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 04:10:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 04:10:00 +1080957 106 2020-03-19 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 04:10:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 04:10:00 +1080958 106 2020-03-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 04:10:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 \N +1080959 106 2020-03-21 \N \N \N \N \N 00:00:00 04:10:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1080974 106 2020-04-05 \N \N \N \N \N 00:00:00 04:10:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1080975 106 2020-04-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 04:10:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 04:10:00 +1080976 106 2020-04-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 04:10:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 04:10:00 +1080977 106 2020-04-08 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 04:10:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 04:10:00 +1080978 106 2020-04-09 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 04:10:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 04:10:00 +1080979 106 2020-04-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 04:10:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 \N +1080980 106 2020-04-11 \N \N \N \N \N 00:00:00 04:10:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1080981 106 2020-04-12 \N \N \N \N \N 00:00:00 04:10:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1080982 106 2020-04-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 04:10:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 04:10:00 +1084936 128 2020-05-05 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1084937 128 2020-05-06 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1084938 128 2020-05-07 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +995286 114 2019-12-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +995287 114 2019-12-31 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1080983 106 2020-04-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 04:10:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 04:10:00 +1080984 106 2020-04-15 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 04:10:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 04:10:00 +1080985 106 2020-04-16 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 04:10:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 04:10:00 +1080986 106 2020-04-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 04:10:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 \N +1080987 106 2020-04-18 \N \N \N \N \N 00:00:00 04:10:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1080988 106 2020-04-19 \N \N \N \N \N 00:00:00 04:10:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1080989 110 2020-02-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1081004 110 2020-03-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1081005 110 2020-03-11 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1081006 110 2020-03-12 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1081007 110 2020-03-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1084958 128 2020-05-27 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1084959 128 2020-05-28 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1084960 128 2020-05-29 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1084961 128 2020-05-30 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +1085629 143 2020-05-26 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1003863 127 2020-01-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1003864 127 2020-01-25 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +1081008 110 2020-03-14 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1081009 110 2020-03-15 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1081010 110 2020-03-16 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1081011 110 2020-03-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1081012 110 2020-03-18 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1081013 110 2020-03-19 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1081014 110 2020-03-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1081015 110 2020-03-21 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1081016 110 2020-03-22 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1081017 110 2020-03-23 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1081018 110 2020-03-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1081033 110 2020-04-08 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1081034 110 2020-04-09 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1084966 128 2020-06-04 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1084967 128 2020-06-05 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1084968 128 2020-06-06 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +1085630 143 2020-05-27 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1003865 127 2020-01-26 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1003866 127 2020-01-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1003867 127 2020-01-28 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1081035 110 2020-04-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1081036 110 2020-04-11 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1081037 110 2020-04-12 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1081038 110 2020-04-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1081039 110 2020-04-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1081040 110 2020-04-15 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1081041 110 2020-04-16 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1081042 110 2020-04-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1081043 110 2020-04-18 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1081044 110 2020-04-19 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1081045 145 2020-02-24 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1084969 128 2020-06-07 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1084987 142 2020-04-30 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1084988 142 2020-05-01 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1084989 142 2020-05-02 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +1084990 142 2020-05-03 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1003868 127 2020-01-29 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1003869 127 2020-01-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1081046 145 2020-02-25 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1081047 145 2020-02-26 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1081062 145 2020-03-12 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1081063 145 2020-03-13 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1081064 145 2020-03-14 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1081065 145 2020-03-15 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1081066 145 2020-03-16 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1081067 145 2020-03-17 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1081068 145 2020-03-18 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1081069 145 2020-03-19 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1081070 145 2020-03-20 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1081071 145 2020-03-21 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1081072 145 2020-03-22 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1084991 142 2020-05-04 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1084992 142 2020-05-05 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1084997 142 2020-05-10 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1003870 127 2020-01-31 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1003871 127 2020-02-01 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +1081073 145 2020-03-23 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1081074 145 2020-03-24 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1081075 145 2020-03-25 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1081076 145 2020-03-26 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1081091 145 2020-04-10 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1081092 145 2020-04-11 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1081093 145 2020-04-12 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1081094 145 2020-04-13 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1081095 145 2020-04-14 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1081096 145 2020-04-15 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1081097 145 2020-04-16 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1084998 142 2020-05-11 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085013 142 2020-05-26 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085014 142 2020-05-27 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085019 142 2020-06-01 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085636 143 2020-06-02 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085651 146 2020-06-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +995232 114 2020-01-01 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1081098 145 2020-04-17 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1081099 145 2020-04-18 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1081100 145 2020-04-19 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1081101 148 2020-02-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1081102 148 2020-02-25 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1081103 148 2020-02-26 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1081104 148 2020-02-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1081105 148 2020-02-28 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1081120 148 2020-03-14 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1081121 148 2020-03-15 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1081122 148 2020-03-16 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1081123 148 2020-03-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1081124 148 2020-03-18 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1081125 148 2020-03-19 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1085020 142 2020-06-02 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085021 142 2020-06-03 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085022 142 2020-06-04 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +995277 114 2020-02-15 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +995278 114 2020-02-16 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1081126 148 2020-03-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1081127 148 2020-03-21 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1081128 148 2020-03-22 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1081129 148 2020-03-23 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1081130 148 2020-03-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1081131 148 2020-03-25 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1081132 148 2020-03-26 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1081133 148 2020-03-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1081134 148 2020-03-28 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1081135 148 2020-03-29 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1081150 148 2020-04-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1081151 148 2020-04-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1085027 142 2020-06-09 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085042 136 2020-04-29 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085043 136 2020-04-30 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085044 136 2020-05-01 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085657 146 2020-06-23 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1003872 127 2020-02-02 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1003873 127 2020-02-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1003893 127 2020-02-23 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1081152 148 2020-04-15 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1081153 148 2020-04-16 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1081154 148 2020-04-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1081155 148 2020-04-18 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1081156 148 2020-04-19 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1081157 130 2020-02-24 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1081158 130 2020-02-25 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1081159 130 2020-02-26 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1081160 130 2020-02-27 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1081161 130 2020-02-28 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1081162 130 2020-02-29 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1081163 130 2020-03-01 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1085049 136 2020-05-06 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085050 136 2020-05-07 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085051 136 2020-05-08 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085658 146 2020-06-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1006019 149 2020-01-28 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1006020 149 2020-01-29 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1006027 149 2020-02-05 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1006028 149 2020-02-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1006029 149 2020-02-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1081164 130 2020-03-02 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1081179 130 2020-03-17 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1081180 130 2020-03-18 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1081181 130 2020-03-19 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1081182 130 2020-03-20 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1081183 130 2020-03-21 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1081184 130 2020-03-22 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1081185 130 2020-03-23 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1081186 130 2020-03-24 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1085052 136 2020-05-09 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +1085070 136 2020-05-27 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085071 136 2020-05-28 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1006030 149 2020-02-08 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +1006031 149 2020-02-09 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1006032 149 2020-02-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1006033 149 2020-02-11 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1006034 149 2020-02-12 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1006035 149 2020-02-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1081187 130 2020-03-25 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1081188 130 2020-03-26 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1081189 130 2020-03-27 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1081190 130 2020-03-28 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1081191 130 2020-03-29 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1081192 130 2020-03-30 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1081193 130 2020-03-31 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1081208 130 2020-04-15 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1081209 130 2020-04-16 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1085073 136 2020-05-30 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +1085074 136 2020-05-31 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1085659 146 2020-06-25 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1085660 146 2020-06-26 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1085665 146 2020-07-01 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1006036 149 2020-02-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1006037 149 2020-02-15 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +1006038 149 2020-02-16 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1006039 149 2020-02-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1006040 149 2020-02-18 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1006041 149 2020-02-19 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1081210 130 2020-04-17 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1081211 130 2020-04-18 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1081212 130 2020-04-19 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1081213 129 2020-02-24 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1081214 129 2020-02-25 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1081215 129 2020-02-26 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1081216 129 2020-02-27 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1081217 129 2020-02-28 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1081218 129 2020-02-29 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1081219 129 2020-03-01 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1085079 136 2020-06-05 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085080 136 2020-06-06 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +1085081 136 2020-06-07 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1006042 149 2020-02-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1006043 149 2020-02-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1006044 149 2020-02-22 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +1006045 149 2020-02-23 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1008163 103 2020-01-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1008164 103 2020-01-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1081220 129 2020-03-02 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1081221 129 2020-03-03 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1081222 129 2020-03-04 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1081237 129 2020-03-19 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1081238 129 2020-03-20 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1081239 129 2020-03-21 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1081240 129 2020-03-22 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1081241 129 2020-03-23 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1081242 129 2020-03-24 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1085082 136 2020-06-08 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085101 139 2020-05-02 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +1085102 139 2020-05-03 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1085680 146 2020-07-16 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1085681 146 2020-07-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1008165 103 2020-01-22 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1008166 103 2020-01-23 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1008167 103 2020-01-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1008168 103 2020-01-25 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +1008169 103 2020-01-26 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1008171 103 2020-01-28 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1008172 103 2020-01-29 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1081243 129 2020-03-25 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1081244 129 2020-03-26 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1081245 129 2020-03-27 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1081246 129 2020-03-28 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1081247 129 2020-03-29 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1081248 129 2020-03-30 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1081249 129 2020-03-31 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1081250 129 2020-04-01 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1085103 139 2020-05-04 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085104 139 2020-05-05 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085109 139 2020-05-10 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1008174 103 2020-01-31 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1008193 103 2020-02-19 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1008194 103 2020-02-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1008195 103 2020-02-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1008196 103 2020-02-22 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +1010312 121 2020-01-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1010314 121 2020-01-19 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1081251 129 2020-04-02 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1081252 129 2020-04-03 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1081268 129 2020-04-19 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1081269 143 2020-02-24 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1081270 143 2020-02-25 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1081271 143 2020-02-26 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1081272 143 2020-02-27 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1081273 143 2020-02-28 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1081274 143 2020-02-29 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1085111 139 2020-05-12 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085687 146 2020-07-23 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1010315 121 2020-01-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1010316 121 2020-01-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1010317 121 2020-01-22 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1010318 121 2020-01-23 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1010319 121 2020-01-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1010320 121 2020-01-25 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +1081275 143 2020-03-01 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1081276 143 2020-03-02 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1081277 143 2020-03-03 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1081278 143 2020-03-04 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1081279 143 2020-03-05 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1081280 143 2020-03-06 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1081281 143 2020-03-07 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1081296 143 2020-03-22 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1081297 143 2020-03-23 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1085126 139 2020-05-27 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085131 139 2020-06-01 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085132 139 2020-06-02 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1010321 121 2020-01-26 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1010322 121 2020-01-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1010323 121 2020-01-28 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1010324 121 2020-01-29 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1010325 121 2020-01-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1010326 121 2020-01-31 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1081298 143 2020-03-24 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1081299 143 2020-03-25 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1081300 143 2020-03-26 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1081301 143 2020-03-27 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1081302 143 2020-03-28 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1081303 143 2020-03-29 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1081304 143 2020-03-30 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1081305 143 2020-03-31 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1081306 143 2020-04-01 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1085133 139 2020-06-03 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085134 139 2020-06-04 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085688 146 2020-07-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1010327 121 2020-02-01 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +1010328 121 2020-02-02 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1010329 121 2020-02-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1010330 121 2020-02-04 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1010331 121 2020-02-05 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1081307 143 2020-04-02 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1081308 143 2020-04-03 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1081309 143 2020-04-04 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1081310 143 2020-04-05 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1081311 143 2020-04-06 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1083491 146 2020-04-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1083492 146 2020-04-22 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1083493 146 2020-04-23 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1083494 146 2020-04-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1083495 146 2020-04-25 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +1083496 146 2020-04-26 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1085135 139 2020-06-05 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085136 139 2020-06-06 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +1085137 139 2020-06-07 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1010332 121 2020-02-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1010333 121 2020-02-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1010334 121 2020-02-08 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +1010335 121 2020-02-09 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1010336 121 2020-02-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1010337 121 2020-02-11 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1083497 146 2020-04-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1083498 146 2020-04-28 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1083499 146 2020-04-29 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1083500 146 2020-04-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1083501 146 2020-05-01 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1083502 146 2020-05-02 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +1083503 146 2020-05-03 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1083504 146 2020-05-04 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1083505 146 2020-05-05 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1083520 146 2020-05-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1085138 139 2020-06-08 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1010338 121 2020-02-12 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1010339 121 2020-02-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1010340 121 2020-02-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1010341 121 2020-02-15 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +1010342 121 2020-02-16 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1010343 121 2020-02-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1083521 146 2020-05-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1083522 146 2020-05-22 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1083523 146 2020-05-23 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +1083524 146 2020-05-24 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1083525 146 2020-05-25 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1083526 146 2020-05-26 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1083527 146 2020-05-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1083528 146 2020-05-28 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1083529 146 2020-05-29 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1085159 141 2020-05-04 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085160 141 2020-05-05 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085709 115 2020-06-19 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1085710 115 2020-06-20 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 06:40:00 +1085712 115 2020-06-22 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1010344 121 2020-02-18 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1010345 121 2020-02-19 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1010346 121 2020-02-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1010347 121 2020-02-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1010348 121 2020-02-22 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +1010349 121 2020-02-23 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1083530 146 2020-05-30 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +1083531 146 2020-05-31 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1083532 146 2020-06-01 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1083533 146 2020-06-02 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1083534 146 2020-06-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1083549 115 2020-04-23 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1083550 115 2020-04-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1083551 115 2020-04-25 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +1083552 115 2020-04-26 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1083553 115 2020-04-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1085161 141 2020-05-06 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085166 141 2020-05-11 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1012467 125 2020-01-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 03:20:00 +1012468 125 2020-01-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 03:20:00 +1012469 125 2020-01-22 08:00:00 12:00:00 \N \N \N 00:00:00 03:20:00 \N \N \N 04:00:00 00:00:00 \N 27 04:00:00 \N 00:00:00 03:20:00 +1012470 125 2020-01-23 \N \N \N \N \N 00:00:00 03:20:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 03:20:00 +1012471 125 2020-01-24 \N \N \N \N \N 00:00:00 03:20:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 03:20:00 +1083554 115 2020-04-28 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1083555 115 2020-04-29 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1083556 115 2020-04-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1083557 115 2020-05-01 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1083558 115 2020-05-02 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +1083559 115 2020-05-03 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1083560 115 2020-05-04 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1083561 115 2020-05-05 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1083562 115 2020-05-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1083563 115 2020-05-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1083578 115 2020-05-22 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1085168 141 2020-05-13 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085169 141 2020-05-14 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1012472 125 2020-01-25 \N \N \N \N \N 00:00:00 03:20:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 03:20:00 +1012473 125 2020-01-26 \N \N \N \N \N 00:00:00 03:20:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1012474 125 2020-01-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 03:20:00 +1012475 125 2020-01-28 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 03:20:00 +1012476 125 2020-01-29 08:00:00 12:00:00 \N \N \N 00:00:00 03:20:00 \N \N \N 04:00:00 00:00:00 \N 27 04:00:00 \N 00:00:00 03:20:00 +1012477 125 2020-01-30 \N \N \N \N \N 00:00:00 03:20:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 03:20:00 +1083579 115 2020-05-23 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +1083580 115 2020-05-24 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1083581 115 2020-05-25 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1083582 115 2020-05-26 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1083583 115 2020-05-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1083584 115 2020-05-28 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1083585 115 2020-05-29 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1083586 115 2020-05-30 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +1083587 115 2020-05-31 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1083588 115 2020-06-01 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1083589 115 2020-06-02 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1085188 141 2020-06-02 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085189 141 2020-06-03 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1012478 125 2020-01-31 \N \N \N \N \N 00:00:00 03:20:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 03:20:00 +1012497 125 2020-02-19 08:00:00 12:00:00 \N \N \N 00:00:00 03:20:00 \N \N \N 04:00:00 00:00:00 \N 27 04:00:00 \N 00:00:00 03:20:00 +1012498 125 2020-02-20 \N \N \N \N \N 00:00:00 03:20:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 03:20:00 +1012499 125 2020-02-21 \N \N \N \N \N 00:00:00 03:20:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 03:20:00 +1012500 125 2020-02-22 \N \N \N \N \N 00:00:00 03:20:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 03:20:00 +1012501 125 2020-02-23 \N \N \N \N \N 00:00:00 03:20:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1014612 119 2020-01-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1083590 115 2020-06-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1083591 115 2020-06-04 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1083592 115 2020-06-05 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1083607 114 2020-04-25 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +1083608 114 2020-04-26 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1083609 114 2020-04-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1083610 114 2020-04-28 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1083611 114 2020-04-29 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1083612 114 2020-04-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1083613 114 2020-05-01 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1085190 141 2020-06-04 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085716 115 2020-06-26 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1085717 115 2020-06-27 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 06:40:00 +1014613 119 2020-01-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1014614 119 2020-01-15 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1014615 119 2020-01-16 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1014616 119 2020-01-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1014617 119 2020-01-18 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +1083614 114 2020-05-02 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +1083615 114 2020-05-03 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1083616 114 2020-05-04 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1083617 114 2020-05-05 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1083618 114 2020-05-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1083619 114 2020-05-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1083620 114 2020-05-08 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1083621 114 2020-05-09 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +1083622 114 2020-05-10 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1083636 114 2020-05-24 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1085191 141 2020-06-05 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085196 141 2020-06-10 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085197 141 2020-06-11 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1014618 119 2020-01-19 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1014619 119 2020-01-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1014620 119 2020-01-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1014621 119 2020-01-22 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1014622 119 2020-01-23 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1014623 119 2020-01-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1083637 114 2020-05-25 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1083638 114 2020-05-26 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1083639 114 2020-05-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1083640 114 2020-05-28 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1083641 114 2020-05-29 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1083642 114 2020-05-30 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +1083643 114 2020-05-31 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1083644 114 2020-06-01 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1083645 114 2020-06-02 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1085199 141 2020-06-13 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +1085219 122 2020-05-08 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1085220 122 2020-05-09 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +1014624 119 2020-01-25 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +1014625 119 2020-01-26 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1014626 119 2020-01-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1014627 119 2020-01-28 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1014628 119 2020-01-29 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1014629 119 2020-01-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1083646 114 2020-06-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1083647 114 2020-06-04 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1083662 112 2020-04-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1083663 112 2020-04-25 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +1083664 112 2020-04-26 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1083665 112 2020-04-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1083666 112 2020-04-28 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1083667 112 2020-04-29 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1083668 112 2020-04-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1083669 112 2020-05-01 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1085221 122 2020-05-10 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1085222 122 2020-05-11 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1085718 115 2020-06-28 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1014630 119 2020-01-31 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1014631 119 2020-02-01 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +1014632 119 2020-02-02 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1014633 119 2020-02-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1014634 119 2020-02-04 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1014636 119 2020-02-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1083670 112 2020-05-02 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +1083671 112 2020-05-03 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1083672 112 2020-05-04 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1083673 112 2020-05-05 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1083674 112 2020-05-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1083675 112 2020-05-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1083676 112 2020-05-08 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1083677 112 2020-05-09 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +1083693 112 2020-05-25 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1083694 112 2020-05-26 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1085227 122 2020-05-16 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +1085228 122 2020-05-17 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1085724 115 2020-07-04 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 06:40:00 +1085747 115 2020-07-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1014637 119 2020-02-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1014638 119 2020-02-08 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +1014639 119 2020-02-09 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1014640 119 2020-02-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1014641 119 2020-02-11 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1014642 119 2020-02-12 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1083695 112 2020-05-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1083696 112 2020-05-28 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1083697 112 2020-05-29 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1083698 112 2020-05-30 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +1083699 112 2020-05-31 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1083700 108 2020-04-20 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1083701 108 2020-04-21 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1083702 108 2020-04-22 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1083703 108 2020-04-23 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085243 122 2020-06-01 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1085244 122 2020-06-02 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1085249 122 2020-06-07 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1085770 114 2020-06-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1014643 119 2020-02-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1014644 119 2020-02-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1014645 119 2020-02-15 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +1014646 119 2020-02-16 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1014647 119 2020-02-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1014648 119 2020-02-18 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1083704 108 2020-04-24 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1083705 108 2020-04-25 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +1083706 108 2020-04-26 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1083721 108 2020-05-11 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1083722 108 2020-05-12 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1083723 108 2020-05-13 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1083724 108 2020-05-14 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1083725 108 2020-05-15 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1083726 108 2020-05-16 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +1083727 108 2020-05-17 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1085250 122 2020-06-08 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1085251 122 2020-06-09 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1014649 119 2020-02-19 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1014650 119 2020-02-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1014651 119 2020-02-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1014652 119 2020-02-22 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +1014653 119 2020-02-23 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1016770 113 2020-01-19 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1083728 108 2020-05-18 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1083729 108 2020-05-19 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1083730 108 2020-05-20 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1083731 108 2020-05-21 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1083732 108 2020-05-22 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1083733 108 2020-05-23 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +1083734 108 2020-05-24 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1083735 108 2020-05-25 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1083750 108 2020-06-09 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085257 106 2020-04-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 04:10:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 04:10:00 +1085272 106 2020-05-05 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 04:10:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 04:10:00 +1085273 106 2020-05-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 04:10:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 04:10:00 +1085775 114 2020-06-29 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +997384 112 2020-01-01 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +997385 112 2020-01-02 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +997386 112 2020-01-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +997387 112 2020-01-04 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +997388 112 2020-01-05 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +997389 112 2020-01-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1083751 108 2020-06-10 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1083752 108 2020-06-11 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1083753 108 2020-06-12 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1083754 108 2020-06-13 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +1083755 108 2020-06-14 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1083756 135 2020-04-20 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1083757 135 2020-04-21 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1083758 135 2020-04-22 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1083759 135 2020-04-23 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1083760 135 2020-04-24 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085274 106 2020-05-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 04:10:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 04:10:00 +1085780 114 2020-07-04 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 06:40:00 +1085803 114 2020-07-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +997406 112 2020-01-23 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +997407 112 2020-01-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +997408 112 2020-01-25 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +997409 112 2020-01-26 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +997410 112 2020-01-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +997411 112 2020-01-28 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +997412 112 2020-01-29 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1083761 135 2020-04-25 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +1083762 135 2020-04-26 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1083763 135 2020-04-27 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1083764 135 2020-04-28 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1083765 135 2020-04-29 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1083767 135 2020-05-01 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1083768 135 2020-05-02 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +1083783 135 2020-05-17 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1083784 135 2020-05-18 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085279 106 2020-05-12 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 04:10:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 04:10:00 +1085280 106 2020-05-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 04:10:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 04:10:00 +1085808 114 2020-08-01 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 06:40:00 +1016771 113 2020-01-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1016772 113 2020-01-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1016773 113 2020-01-22 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1016774 113 2020-01-23 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1016775 113 2020-01-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1016776 113 2020-01-25 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +1016777 113 2020-01-26 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1016778 113 2020-01-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1016779 113 2020-01-28 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1016780 113 2020-01-29 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1016781 113 2020-01-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1016782 113 2020-01-31 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1083785 135 2020-05-19 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1083786 135 2020-05-20 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1083787 135 2020-05-21 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1083788 135 2020-05-22 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1083789 135 2020-05-23 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +1083790 135 2020-05-24 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1016801 113 2020-02-19 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1016802 113 2020-02-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1016803 113 2020-02-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1016804 113 2020-02-22 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +1016805 113 2020-02-23 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1018917 147 2020-01-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1018918 147 2020-01-15 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1018919 147 2020-01-16 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1018920 147 2020-01-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1018921 147 2020-01-18 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +1018922 147 2020-01-19 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1018923 147 2020-01-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1083791 135 2020-05-25 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1083792 135 2020-05-26 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1083793 135 2020-05-27 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1083794 135 2020-05-28 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1083795 135 2020-05-29 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085281 106 2020-05-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 04:10:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 04:10:00 +1018924 147 2020-01-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1018925 147 2020-01-22 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1018926 147 2020-01-23 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1018927 147 2020-01-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1018928 147 2020-01-25 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +1018929 147 2020-01-26 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1018930 147 2020-01-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1018931 147 2020-01-28 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1018932 147 2020-01-29 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1018933 147 2020-01-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1018934 147 2020-01-31 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1018935 147 2020-02-01 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +1083796 135 2020-05-30 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +1083797 135 2020-05-31 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1083798 135 2020-06-01 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1083813 127 2020-04-21 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1083814 127 2020-04-22 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085282 106 2020-05-15 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 04:10:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 \N +1085826 108 2020-06-24 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1018936 147 2020-02-02 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1018937 147 2020-02-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1018938 147 2020-02-04 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1018939 147 2020-02-05 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1018940 147 2020-02-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1018941 147 2020-02-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1018942 147 2020-02-08 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +1018943 147 2020-02-09 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1018944 147 2020-02-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1018945 147 2020-02-11 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1018946 147 2020-02-12 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1018947 147 2020-02-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1083815 127 2020-04-23 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1083816 127 2020-04-24 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1083817 127 2020-04-25 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +1083818 127 2020-04-26 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1083819 127 2020-04-27 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085283 106 2020-05-16 \N \N \N \N \N 00:00:00 04:10:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1018948 147 2020-02-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1018949 147 2020-02-15 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +1018950 147 2020-02-16 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1018951 147 2020-02-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1018952 147 2020-02-18 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1018953 147 2020-02-19 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1018954 147 2020-02-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1021074 131 2020-01-19 \N \N \N \N \N 00:00:00 04:00:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1021075 131 2020-01-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 04:00:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 04:00:00 +1021076 131 2020-01-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 04:00:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 04:00:00 +1021077 131 2020-01-22 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 04:00:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 04:00:00 +1083820 127 2020-04-28 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1083821 127 2020-04-29 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1083822 127 2020-04-30 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1083823 127 2020-05-01 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1083824 127 2020-05-02 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +1083825 127 2020-05-03 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1085303 106 2020-06-05 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 04:10:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 \N +1021078 131 2020-01-23 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 04:00:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 04:00:00 +1021079 131 2020-01-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 04:00:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 04:00:00 +1021080 131 2020-01-25 \N \N \N \N \N 00:00:00 04:00:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1021081 131 2020-01-26 \N \N \N \N \N 00:00:00 04:00:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1021083 131 2020-01-28 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 04:00:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 04:00:00 +1021101 131 2020-02-15 \N \N \N \N \N 00:00:00 04:00:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1021102 131 2020-02-16 \N \N \N \N \N 00:00:00 04:00:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1021103 131 2020-02-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 04:00:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 04:00:00 +1021104 131 2020-02-18 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 04:00:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 04:00:00 +1021105 131 2020-02-19 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 04:00:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 04:00:00 +1021106 131 2020-02-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 04:00:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 04:00:00 +1021107 131 2020-02-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 04:00:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 04:00:00 +1021108 131 2020-02-22 \N \N \N \N \N 00:00:00 04:00:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1021109 131 2020-02-23 \N \N \N \N \N 00:00:00 04:00:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1083826 127 2020-05-04 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1083827 127 2020-05-05 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1083842 127 2020-05-20 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1083843 127 2020-05-21 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085305 106 2020-06-07 \N \N \N \N \N 00:00:00 04:10:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1023223 104 2020-01-16 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:00:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:00:00 +1023224 104 2020-01-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:00:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:00:00 +1023225 104 2020-01-18 \N \N \N \N \N 00:00:00 06:00:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1023226 104 2020-01-19 \N \N \N \N \N 00:00:00 06:00:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1023227 104 2020-01-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:00:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:00:00 +1023228 104 2020-01-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:00:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:00:00 +1023229 104 2020-01-22 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:00:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:00:00 +1023230 104 2020-01-23 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:00:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:00:00 +1023231 104 2020-01-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:00:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:00:00 +1023232 104 2020-01-25 \N \N \N \N \N 00:00:00 06:00:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1023233 104 2020-01-26 \N \N \N \N \N 00:00:00 06:00:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1023234 104 2020-01-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:00:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:00:00 +1083844 127 2020-05-22 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1083845 127 2020-05-23 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +1083846 127 2020-05-24 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1083847 127 2020-05-25 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1083848 127 2020-05-26 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1083849 127 2020-05-27 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085831 108 2020-06-29 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1085836 108 2020-07-04 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 06:40:00 +1023235 104 2020-01-28 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:00:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:00:00 +1023236 104 2020-01-29 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:00:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:00:00 +1023237 104 2020-01-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:00:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:00:00 +1023238 104 2020-01-31 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:00:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:00:00 +1023239 104 2020-02-01 \N \N \N \N \N 00:00:00 06:00:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1023240 104 2020-02-02 \N \N \N \N \N 00:00:00 06:00:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1023241 104 2020-02-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:00:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:00:00 +1023242 104 2020-02-04 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:00:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:00:00 +1023243 104 2020-02-05 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:00:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:00:00 +1023244 104 2020-02-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:00:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:00:00 +1023245 104 2020-02-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:00:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:00:00 +1023246 104 2020-02-08 \N \N \N \N \N 00:00:00 06:00:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1083850 127 2020-05-28 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1083851 127 2020-05-29 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1083852 127 2020-05-30 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +1083853 127 2020-05-31 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1083854 127 2020-06-01 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085310 106 2020-06-12 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 04:10:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 \N +1023247 104 2020-02-09 \N \N \N \N \N 00:00:00 06:00:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1023248 104 2020-02-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:00:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:00:00 +1023249 104 2020-02-11 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:00:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:00:00 +1023250 104 2020-02-12 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:00:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:00:00 +1023251 104 2020-02-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:00:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:00:00 +1023252 104 2020-02-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:00:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:00:00 +1025409 151 2020-02-19 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1025410 151 2020-02-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1025411 151 2020-02-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1025412 151 2020-02-22 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +1025413 151 2020-02-23 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1027530 138 2020-01-19 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1083855 127 2020-06-02 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1083856 127 2020-06-03 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1083871 149 2020-04-23 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1083872 149 2020-04-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1083873 149 2020-04-25 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +1085855 108 2020-07-23 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1085860 108 2020-07-28 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1085864 108 2020-08-01 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 06:40:00 +1027532 138 2020-01-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1027533 138 2020-01-22 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1027534 138 2020-01-23 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1027535 138 2020-01-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1027536 138 2020-01-25 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +1027537 138 2020-01-26 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1027538 138 2020-01-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1027539 138 2020-01-28 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1027540 138 2020-01-29 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1027541 138 2020-01-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1027542 138 2020-01-31 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1027543 138 2020-02-01 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +1083874 149 2020-04-26 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1083875 149 2020-04-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1083876 149 2020-04-28 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1083877 149 2020-04-29 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1083878 149 2020-04-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1085313 110 2020-04-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1085878 135 2020-06-20 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 06:40:00 +1027544 138 2020-02-02 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1027545 138 2020-02-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1027546 138 2020-02-04 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1027547 138 2020-02-05 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1027548 138 2020-02-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1027549 138 2020-02-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1027550 138 2020-02-08 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +1027551 138 2020-02-09 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1027557 138 2020-02-15 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +1029700 105 2020-02-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1029701 105 2020-02-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1029702 105 2020-02-08 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +1083879 149 2020-05-01 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1083880 149 2020-05-02 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +1083881 149 2020-05-03 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1083882 149 2020-05-04 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1083883 149 2020-05-05 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1085331 110 2020-05-08 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1085332 110 2020-05-09 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +1029703 105 2020-02-09 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1029704 105 2020-02-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1029705 105 2020-02-11 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1029706 105 2020-02-12 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1029707 105 2020-02-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1029708 105 2020-02-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1029709 105 2020-02-15 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +1029710 105 2020-02-16 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1029711 105 2020-02-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1029712 105 2020-02-18 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1029713 105 2020-02-19 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1029715 105 2020-02-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1029716 105 2020-02-22 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +1083884 149 2020-05-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1083885 149 2020-05-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1083900 149 2020-05-22 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1083901 149 2020-05-23 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +1083902 149 2020-05-24 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1029717 105 2020-02-23 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1031835 134 2020-01-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1031836 134 2020-01-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1031837 134 2020-01-22 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1031838 134 2020-01-23 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1031839 134 2020-01-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1031840 134 2020-01-25 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +1031841 134 2020-01-26 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1031842 134 2020-01-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1031843 134 2020-01-28 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1031844 134 2020-01-29 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1031845 134 2020-01-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1083903 149 2020-05-25 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1083904 149 2020-05-26 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1083905 149 2020-05-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1083906 149 2020-05-28 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1083907 149 2020-05-29 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1031846 134 2020-01-31 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1031847 134 2020-02-01 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +1031848 134 2020-02-02 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1031849 134 2020-02-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1031869 134 2020-02-23 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1033995 144 2020-01-28 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1033996 144 2020-01-29 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1033997 144 2020-01-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1033998 144 2020-01-31 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1033999 144 2020-02-01 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +1034000 144 2020-02-02 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1034001 144 2020-02-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1034002 144 2020-02-04 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1083908 149 2020-05-30 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +1083909 149 2020-05-31 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1083910 149 2020-06-01 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1083911 149 2020-06-02 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1083912 149 2020-06-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1085339 110 2020-05-16 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +1034003 144 2020-02-05 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1034004 144 2020-02-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1034005 144 2020-02-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1034006 144 2020-02-08 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +1034007 144 2020-02-09 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1034008 144 2020-02-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1034009 144 2020-02-11 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1034010 144 2020-02-12 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1034011 144 2020-02-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1034013 144 2020-02-15 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +1034014 144 2020-02-16 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1034015 144 2020-02-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1083913 149 2020-06-04 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1083914 149 2020-06-05 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1083929 103 2020-04-25 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +1083930 103 2020-04-26 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1083931 103 2020-04-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1083932 103 2020-04-28 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1085340 110 2020-05-17 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1034016 144 2020-02-18 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1034017 144 2020-02-19 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1034018 144 2020-02-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1034019 144 2020-02-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1034020 144 2020-02-22 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +1034021 144 2020-02-23 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1036139 102 2020-01-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1036140 102 2020-01-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1036141 102 2020-01-22 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1036142 102 2020-01-23 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1036143 102 2020-01-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1036144 102 2020-01-25 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +1036145 102 2020-01-26 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1083933 103 2020-04-29 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1083934 103 2020-04-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1083935 103 2020-05-01 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1083936 103 2020-05-02 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +1085341 110 2020-05-18 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1085897 135 2020-07-09 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1036146 102 2020-01-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1036147 102 2020-01-28 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1036148 102 2020-01-29 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1036149 102 2020-01-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1036150 102 2020-01-31 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1036169 102 2020-02-19 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1036170 102 2020-02-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1036171 102 2020-02-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1036172 102 2020-02-22 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +1036173 102 2020-02-23 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1038288 109 2020-01-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1038289 109 2020-01-18 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +1083937 103 2020-05-03 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1083938 103 2020-05-04 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1083939 103 2020-05-05 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1083940 103 2020-05-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1083941 103 2020-05-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1085342 110 2020-05-19 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1038290 109 2020-01-19 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1038291 109 2020-01-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1038292 109 2020-01-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1038293 109 2020-01-22 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1038294 109 2020-01-23 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1038295 109 2020-01-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1038296 109 2020-01-25 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +1038297 109 2020-01-26 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1038298 109 2020-01-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1038299 109 2020-01-28 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1038300 109 2020-01-29 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1038301 109 2020-01-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1083942 103 2020-05-08 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1083943 103 2020-05-09 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +1083944 103 2020-05-10 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1083959 103 2020-05-25 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1083960 103 2020-05-26 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1085362 110 2020-06-08 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1085906 135 2020-07-18 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 06:40:00 +1038302 109 2020-01-31 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1038303 109 2020-02-01 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +1038304 109 2020-02-02 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1038305 109 2020-02-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1038306 109 2020-02-04 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1038307 109 2020-02-05 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1038308 109 2020-02-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1038309 109 2020-02-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1038310 109 2020-02-08 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +1038311 109 2020-02-09 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1038312 109 2020-02-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1038313 109 2020-02-11 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1083961 103 2020-05-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1083962 103 2020-05-28 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1083963 103 2020-05-29 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1083964 103 2020-05-30 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +1083965 103 2020-05-31 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1083966 103 2020-06-01 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1085910 135 2020-07-22 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1085937 127 2020-06-23 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1038314 109 2020-02-12 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1038315 109 2020-02-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1038316 109 2020-02-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1038317 109 2020-02-15 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +1038318 109 2020-02-16 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1038319 109 2020-02-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1038320 109 2020-02-18 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1038321 109 2020-02-19 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1038322 109 2020-02-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1038323 109 2020-02-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1038324 109 2020-02-22 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +1038325 109 2020-02-23 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1083967 103 2020-06-02 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1083968 103 2020-06-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1083969 103 2020-06-04 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1083970 103 2020-06-05 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1083971 103 2020-06-06 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +1085363 110 2020-06-09 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1040443 118 2020-01-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1040444 118 2020-01-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1040445 118 2020-01-22 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1040446 118 2020-01-23 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1040447 118 2020-01-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1040448 118 2020-01-25 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +1040449 118 2020-01-26 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1040450 118 2020-01-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1040451 118 2020-01-28 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1040452 118 2020-01-29 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1040453 118 2020-01-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1083972 103 2020-06-07 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1083973 103 2020-06-08 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1083988 121 2020-04-28 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1083989 121 2020-04-29 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1083990 121 2020-04-30 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1083991 121 2020-05-01 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085956 127 2020-07-12 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1085960 127 2020-07-16 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1040454 118 2020-01-31 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1040473 118 2020-02-19 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1040474 118 2020-02-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1040475 118 2020-02-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1040476 118 2020-02-22 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +1040477 118 2020-02-23 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1042588 133 2020-01-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1042589 133 2020-01-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1042590 133 2020-01-15 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1042591 133 2020-01-16 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1042592 133 2020-01-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1042593 133 2020-01-18 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +1042594 133 2020-01-19 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1083992 121 2020-05-02 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +1083993 121 2020-05-03 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1083994 121 2020-05-04 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1083995 121 2020-05-05 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1083996 121 2020-05-06 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1042595 133 2020-01-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1042596 133 2020-01-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1042597 133 2020-01-22 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1042598 133 2020-01-23 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1042599 133 2020-01-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1042600 133 2020-01-25 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +1042601 133 2020-01-26 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1042602 133 2020-01-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1042603 133 2020-01-28 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1042604 133 2020-01-29 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1042605 133 2020-01-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1042606 133 2020-01-31 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1042607 133 2020-02-01 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +1042608 133 2020-02-02 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1083997 121 2020-05-07 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1083998 121 2020-05-08 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1083999 121 2020-05-09 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +1084000 121 2020-05-10 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1085961 127 2020-07-17 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1085984 127 2020-08-09 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1042609 133 2020-02-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1042610 133 2020-02-04 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1042611 133 2020-02-05 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1042612 133 2020-02-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1042613 133 2020-02-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1042614 133 2020-02-08 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +1042615 133 2020-02-09 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1042616 133 2020-02-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1042617 133 2020-02-11 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1042618 133 2020-02-12 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1042619 133 2020-02-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1042620 133 2020-02-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1042621 133 2020-02-15 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +1042622 133 2020-02-16 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1084001 121 2020-05-11 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1084002 121 2020-05-12 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1084017 121 2020-05-27 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1084018 121 2020-05-28 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +999541 108 2020-01-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +999542 108 2020-01-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +999543 108 2020-01-08 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +999544 108 2020-01-09 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +999545 108 2020-01-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +999546 108 2020-01-11 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +999547 108 2020-01-12 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +999548 108 2020-01-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +999549 108 2020-01-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +999550 108 2020-01-15 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +999551 108 2020-01-16 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +999552 108 2020-01-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +999553 108 2020-01-18 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +999554 108 2020-01-19 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +999555 108 2020-01-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +999556 108 2020-01-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +999557 108 2020-01-22 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +999558 108 2020-01-23 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +999576 108 2020-02-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +999577 108 2020-02-11 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +999578 108 2020-02-12 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +999579 108 2020-02-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +999580 108 2020-02-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +999582 108 2020-02-16 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +999583 108 2020-02-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +999584 108 2020-02-18 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +999585 108 2020-02-19 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +999586 108 2020-02-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +999587 108 2020-02-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +999588 108 2020-02-22 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +999589 108 2020-02-23 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1044755 111 2020-01-28 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1044756 111 2020-01-29 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1044757 111 2020-01-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1044758 111 2020-01-31 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1046894 128 2020-01-15 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1046895 128 2020-01-16 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1046896 128 2020-01-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1046897 128 2020-01-18 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +1046898 128 2020-01-19 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1046899 128 2020-01-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1046900 128 2020-01-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1046901 128 2020-01-22 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1046902 128 2020-01-23 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1046903 128 2020-01-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1046904 128 2020-01-25 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +1046905 128 2020-01-26 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1046906 128 2020-01-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1046907 128 2020-01-28 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1084026 121 2020-06-05 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1084027 121 2020-06-06 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +1084028 121 2020-06-07 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1084029 121 2020-06-08 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1046923 128 2020-02-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1046924 128 2020-02-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1046925 128 2020-02-15 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +1046926 128 2020-02-16 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1046927 128 2020-02-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1046928 128 2020-02-18 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1046929 128 2020-02-19 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1046930 128 2020-02-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1049050 142 2020-01-19 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1049051 142 2020-01-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1049052 142 2020-01-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1049053 142 2020-01-22 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1049054 142 2020-01-23 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1049055 142 2020-01-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1084049 117 2020-05-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1084050 117 2020-05-15 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1084051 117 2020-05-16 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +1084052 117 2020-05-17 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1085988 149 2020-06-18 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1051203 136 2020-01-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1051204 136 2020-01-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1051205 136 2020-01-22 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1051206 136 2020-01-23 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1051207 136 2020-01-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1051208 136 2020-01-25 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +1051209 136 2020-01-26 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1051210 136 2020-01-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1051211 136 2020-01-28 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1051212 136 2020-01-29 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1051213 136 2020-01-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1051214 136 2020-01-31 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1051215 136 2020-02-01 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +1051216 136 2020-02-02 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1084056 117 2020-05-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1084057 117 2020-05-22 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1084058 117 2020-05-23 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +1084059 117 2020-05-24 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1053357 140 2020-01-22 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1055506 139 2020-01-19 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1055507 139 2020-01-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1055508 139 2020-01-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1055509 139 2020-01-22 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1055510 139 2020-01-23 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1055511 139 2020-01-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1055512 139 2020-01-25 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +1055513 139 2020-01-26 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1055514 139 2020-01-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1055515 139 2020-01-28 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1055516 139 2020-01-29 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1055517 139 2020-01-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1055518 139 2020-01-31 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1055519 139 2020-02-01 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +1084079 117 2020-06-13 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +1084080 117 2020-06-14 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1084081 125 2020-04-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 03:20:00 +1057681 141 2020-02-11 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1057682 141 2020-02-12 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1057683 141 2020-02-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1057684 141 2020-02-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1057685 141 2020-02-15 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +1057686 141 2020-02-16 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1057687 141 2020-02-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1057688 141 2020-02-18 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1057689 141 2020-02-19 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1057690 141 2020-02-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1057691 141 2020-02-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1057692 141 2020-02-22 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +1057693 141 2020-02-23 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1059811 122 2020-01-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1084085 125 2020-04-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 03:20:00 +1084086 125 2020-04-25 \N \N \N \N \N 00:00:00 03:20:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 03:20:00 +1084087 125 2020-04-26 \N \N \N \N \N 00:00:00 03:20:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1084088 125 2020-04-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 03:20:00 +1061973 106 2020-01-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 04:10:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 04:10:00 +1061974 106 2020-01-31 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 04:10:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 \N +1061975 106 2020-02-01 \N \N \N \N \N 00:00:00 04:10:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1061976 106 2020-02-02 \N \N \N \N \N 00:00:00 04:10:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1061977 106 2020-02-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 04:10:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 04:10:00 +1061978 106 2020-02-04 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 04:10:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 04:10:00 +1061979 106 2020-02-05 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 04:10:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 04:10:00 +1061980 106 2020-02-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 04:10:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 04:10:00 +1061981 106 2020-02-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 04:10:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 \N +1061982 106 2020-02-08 \N \N \N \N \N 00:00:00 04:10:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1061983 106 2020-02-09 \N \N \N \N \N 00:00:00 04:10:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1061984 106 2020-02-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 04:10:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 04:10:00 +1061985 106 2020-02-11 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 04:10:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 04:10:00 +1061986 106 2020-02-12 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 04:10:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 04:10:00 +1084108 125 2020-05-17 \N \N \N \N \N 00:00:00 03:20:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1084109 125 2020-05-18 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 03:20:00 +1084110 125 2020-05-19 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 03:20:00 +1084111 125 2020-05-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 03:20:00 +1064119 110 2020-01-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1064120 110 2020-01-25 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +1064121 110 2020-01-26 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1064122 110 2020-01-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1064123 110 2020-01-28 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1064124 110 2020-01-29 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1064125 110 2020-01-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1064126 110 2020-01-31 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1064145 110 2020-02-19 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1064146 110 2020-02-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1064147 110 2020-02-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1064148 110 2020-02-22 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +1064149 110 2020-02-23 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1066264 145 2020-01-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1084116 125 2020-05-25 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 03:20:00 +1084117 125 2020-05-26 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 03:20:00 +1084118 125 2020-05-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 03:20:00 +1084133 125 2020-06-11 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 03:20:00 +1066281 145 2020-02-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1066282 145 2020-02-04 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1066283 145 2020-02-05 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1066284 145 2020-02-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1066285 145 2020-02-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1066286 145 2020-02-08 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +1066287 145 2020-02-09 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1066288 145 2020-02-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1066289 145 2020-02-11 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1066290 145 2020-02-12 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1066291 145 2020-02-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1066292 145 2020-02-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1066293 145 2020-02-15 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +1066294 145 2020-02-16 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1084138 119 2020-04-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1084139 119 2020-04-22 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1084140 119 2020-04-23 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1084141 119 2020-04-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1068427 148 2020-01-28 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1068428 148 2020-01-29 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1068429 148 2020-01-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1068430 148 2020-01-31 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1068449 148 2020-02-19 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1068450 148 2020-02-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1068451 148 2020-02-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1068452 148 2020-02-22 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +1068453 148 2020-02-23 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1070564 130 2020-01-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1070565 130 2020-01-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1070566 130 2020-01-15 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1070567 130 2020-01-16 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1084146 119 2020-04-29 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1084147 119 2020-04-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1084162 119 2020-05-15 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1084163 119 2020-05-16 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +1070585 130 2020-02-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1070586 130 2020-02-04 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1070587 130 2020-02-05 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1070588 130 2020-02-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1070589 130 2020-02-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1070590 130 2020-02-08 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +1070591 130 2020-02-09 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1070592 130 2020-02-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1070593 130 2020-02-11 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1070594 130 2020-02-12 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1070595 130 2020-02-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1070596 130 2020-02-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1070597 130 2020-02-15 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +1070598 130 2020-02-16 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1084169 119 2020-05-22 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1084170 119 2020-05-23 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +1084171 119 2020-05-24 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1084172 119 2020-05-25 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +914498 129 2020-02-04 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +914499 129 2020-02-05 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +914500 129 2020-02-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +914501 129 2020-02-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +914502 129 2020-02-08 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +914503 129 2020-02-09 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +914504 129 2020-02-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +914505 129 2020-02-11 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +914506 129 2020-02-12 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +914507 129 2020-02-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +914508 129 2020-02-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +914509 129 2020-02-15 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +914510 129 2020-02-16 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +914511 129 2020-02-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1084193 113 2020-04-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1084194 113 2020-04-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1084195 113 2020-04-22 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1084196 113 2020-04-23 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1074884 143 2020-01-29 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1074885 143 2020-01-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1074886 143 2020-01-31 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1074905 143 2020-02-19 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1074906 143 2020-02-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1074907 143 2020-02-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1074908 143 2020-02-22 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +1074909 143 2020-02-23 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1079160 146 2020-02-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079161 146 2020-02-25 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079162 146 2020-02-26 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079163 146 2020-02-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079164 146 2020-02-28 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079165 146 2020-02-29 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1084201 113 2020-04-28 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1084202 113 2020-04-29 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1084203 113 2020-04-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1085402 145 2020-05-23 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +1079182 146 2020-03-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079183 146 2020-03-18 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079184 146 2020-03-19 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079185 146 2020-03-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079186 146 2020-03-21 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1079187 146 2020-03-22 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1079188 146 2020-03-23 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079189 146 2020-03-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079190 146 2020-03-25 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079191 146 2020-03-26 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079192 146 2020-03-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079193 146 2020-03-28 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1079194 146 2020-03-29 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1079195 146 2020-03-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1084222 113 2020-05-19 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1084223 113 2020-05-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1084224 113 2020-05-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1079211 146 2020-04-15 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079212 146 2020-04-16 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079213 146 2020-04-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079214 146 2020-04-18 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1079215 146 2020-04-19 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1079216 115 2020-02-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079217 115 2020-02-25 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079218 115 2020-02-26 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079219 115 2020-02-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079220 115 2020-02-28 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079221 115 2020-02-29 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1079222 115 2020-03-01 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1079223 115 2020-03-02 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079224 115 2020-03-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1084230 113 2020-05-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1084231 113 2020-05-28 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1084232 113 2020-05-29 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1084233 113 2020-05-30 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +1079240 115 2020-03-19 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079241 115 2020-03-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079242 115 2020-03-21 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1079243 115 2020-03-22 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1079244 115 2020-03-23 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079245 115 2020-03-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079246 115 2020-03-25 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079247 115 2020-03-26 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079248 115 2020-03-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079249 115 2020-03-28 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1079250 115 2020-03-29 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1079251 115 2020-03-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079252 115 2020-03-31 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079253 115 2020-04-01 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1084252 147 2020-04-23 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1084253 147 2020-04-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1084254 147 2020-04-25 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +1084255 147 2020-04-26 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1079269 115 2020-04-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079270 115 2020-04-18 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1079271 115 2020-04-19 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1079272 114 2020-02-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079273 114 2020-02-25 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079274 114 2020-02-26 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079275 114 2020-02-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079276 114 2020-02-28 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079277 114 2020-02-29 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1079278 114 2020-03-01 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1079279 114 2020-03-02 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079280 114 2020-03-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079281 114 2020-03-04 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079282 114 2020-03-05 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1084260 147 2020-05-01 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1084261 147 2020-05-02 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +1084262 147 2020-05-03 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1084263 147 2020-05-04 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1079298 114 2020-03-21 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1079299 114 2020-03-22 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1079300 114 2020-03-23 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079301 114 2020-03-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079302 114 2020-03-25 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079303 114 2020-03-26 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079304 114 2020-03-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079305 114 2020-03-28 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1079306 114 2020-03-29 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1079307 114 2020-03-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079308 114 2020-03-31 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079309 114 2020-04-01 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079310 114 2020-04-02 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079311 114 2020-04-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1084283 147 2020-05-24 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1084284 147 2020-05-25 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1084285 147 2020-05-26 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1084286 147 2020-05-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1085989 149 2020-06-19 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1079328 112 2020-02-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079329 112 2020-02-25 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079330 112 2020-02-26 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079331 112 2020-02-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079332 112 2020-02-28 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079333 112 2020-02-29 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1079334 112 2020-03-01 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1079335 112 2020-03-02 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079336 112 2020-03-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079337 112 2020-03-04 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079338 112 2020-03-05 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079339 112 2020-03-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079340 112 2020-03-07 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1079341 112 2020-03-08 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1084291 147 2020-06-01 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1084292 147 2020-06-02 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1084293 147 2020-06-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1084308 131 2020-04-23 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 04:00:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 04:00:00 +1079357 112 2020-03-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079358 112 2020-03-25 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079359 112 2020-03-26 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079360 112 2020-03-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079361 112 2020-03-28 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1079362 112 2020-03-29 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1079363 112 2020-03-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079364 112 2020-03-31 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079365 112 2020-04-01 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079366 112 2020-04-02 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079367 112 2020-04-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079368 112 2020-04-04 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1079369 112 2020-04-05 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1079370 112 2020-04-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1084313 131 2020-04-28 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 04:00:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 04:00:00 +1084314 131 2020-04-29 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 04:00:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 04:00:00 +1084315 131 2020-04-30 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 04:00:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 04:00:00 +1084316 131 2020-05-01 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 04:00:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 04:00:00 +1001742 135 2019-12-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1001743 135 2019-12-31 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1079386 108 2020-02-26 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1079387 108 2020-02-27 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1079388 108 2020-02-28 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1079389 108 2020-02-29 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1079390 108 2020-03-01 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1079391 108 2020-03-02 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1079392 108 2020-03-03 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1079393 108 2020-03-04 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1079394 108 2020-03-05 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1079395 108 2020-03-06 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1079396 108 2020-03-07 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1079397 108 2020-03-08 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1084321 131 2020-05-06 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 04:00:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 04:00:00 +1084322 131 2020-05-07 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 04:00:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 04:00:00 +1084337 131 2020-05-22 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 04:00:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 04:00:00 +1084338 131 2020-05-23 \N \N \N \N \N 00:00:00 04:00:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1079413 108 2020-03-24 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1079414 108 2020-03-25 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1079415 108 2020-03-26 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1079416 108 2020-03-27 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1079417 108 2020-03-28 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1079418 108 2020-03-29 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1079419 108 2020-03-30 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1079420 108 2020-03-31 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1079421 108 2020-04-01 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1079422 108 2020-04-02 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1079423 108 2020-04-03 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1079424 108 2020-04-04 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1079425 108 2020-04-05 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1079426 108 2020-04-06 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1084343 131 2020-05-28 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 04:00:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 04:00:00 +1084344 131 2020-05-29 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 04:00:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 04:00:00 +1084345 131 2020-05-30 \N \N \N \N \N 00:00:00 04:00:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1084346 131 2020-05-31 \N \N \N \N \N 00:00:00 04:00:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1079443 135 2020-02-27 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1079444 135 2020-02-28 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1079445 135 2020-02-29 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1079446 135 2020-03-01 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1079447 135 2020-03-02 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1079448 135 2020-03-03 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1079449 135 2020-03-04 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1079450 135 2020-03-05 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1079451 135 2020-03-06 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1079452 135 2020-03-07 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1079453 135 2020-03-08 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1079454 135 2020-03-09 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1079455 135 2020-03-10 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1079456 135 2020-03-11 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1084351 131 2020-06-05 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 04:00:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 04:00:00 +1084352 131 2020-06-06 \N \N \N \N \N 00:00:00 04:00:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1084368 104 2020-04-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:00:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:00:00 +1085448 148 2020-05-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1079472 135 2020-03-27 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1079473 135 2020-03-28 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1079474 135 2020-03-29 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1079475 135 2020-03-30 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1079476 135 2020-03-31 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1079477 135 2020-04-01 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1079478 135 2020-04-02 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1079479 135 2020-04-03 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1079480 135 2020-04-04 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1079481 135 2020-04-05 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1079482 135 2020-04-06 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1079483 135 2020-04-07 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1079484 135 2020-04-08 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1079485 135 2020-04-09 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1084375 104 2020-05-04 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:00:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:00:00 +1084376 104 2020-05-05 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:00:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:00:00 +1084377 104 2020-05-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:00:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:00:00 +1085453 148 2020-05-18 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1001688 135 2020-01-01 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1001689 135 2020-01-02 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1001690 135 2020-01-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1001691 135 2020-01-04 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +1001692 135 2020-01-05 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1001693 135 2020-01-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1001694 135 2020-01-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1001695 135 2020-01-08 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1001696 135 2020-01-09 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1001697 135 2020-01-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1001698 135 2020-01-11 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +1001699 135 2020-01-12 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1001700 135 2020-01-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1001701 135 2020-01-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1001702 135 2020-01-15 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1001703 135 2020-01-16 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1001704 135 2020-01-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1079501 127 2020-02-29 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1001705 135 2020-01-18 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +1001706 135 2020-01-19 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1001707 135 2020-01-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1001708 135 2020-01-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1001709 135 2020-01-22 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1001710 135 2020-01-23 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1001711 135 2020-01-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1001712 135 2020-01-25 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +1001713 135 2020-01-26 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1001714 135 2020-01-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1001715 135 2020-01-28 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1001716 135 2020-01-29 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1001717 135 2020-01-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1001718 135 2020-01-31 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1001719 135 2020-02-01 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +1001720 135 2020-02-02 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1001721 135 2020-02-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1001722 135 2020-02-04 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1085994 149 2020-06-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1085998 149 2020-06-28 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1079505 127 2020-03-04 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1079506 127 2020-03-05 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1079507 127 2020-03-06 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1079508 127 2020-03-07 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1079509 127 2020-03-08 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1079510 127 2020-03-09 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1079511 127 2020-03-10 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1079512 127 2020-03-11 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1079513 127 2020-03-12 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1079514 127 2020-03-13 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1079515 127 2020-03-14 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1079516 127 2020-03-15 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1079517 127 2020-03-16 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1079518 127 2020-03-17 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1084398 104 2020-05-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:00:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:00:00 +1084399 104 2020-05-28 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:00:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:00:00 +1084400 104 2020-05-29 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:00:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:00:00 +1084401 104 2020-05-30 \N \N \N \N \N 00:00:00 06:00:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1079535 127 2020-04-03 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1079536 127 2020-04-04 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1079537 127 2020-04-05 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1079538 127 2020-04-06 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1079539 127 2020-04-07 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1079540 127 2020-04-08 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1079541 127 2020-04-09 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1079542 127 2020-04-10 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1079543 127 2020-04-11 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1079544 127 2020-04-12 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1079545 127 2020-04-13 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1079546 127 2020-04-14 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1079547 127 2020-04-15 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1079548 127 2020-04-16 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1084406 104 2020-06-04 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:00:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:00:00 +1084407 104 2020-06-05 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:00:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:00:00 +1084408 104 2020-06-06 \N \N \N \N \N 00:00:00 06:00:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1084409 104 2020-06-07 \N \N \N \N \N 00:00:00 06:00:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1079564 149 2020-03-07 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1079565 149 2020-03-08 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1079566 149 2020-03-09 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079567 149 2020-03-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079568 149 2020-03-11 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079569 149 2020-03-12 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079570 149 2020-03-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079571 149 2020-03-14 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1079572 149 2020-03-15 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1079573 149 2020-03-16 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079574 149 2020-03-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079575 149 2020-03-18 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079576 149 2020-03-19 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079577 149 2020-03-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1084428 151 2020-05-01 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1084429 151 2020-05-02 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +1084430 151 2020-05-03 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1084431 151 2020-05-04 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1079595 149 2020-04-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079596 149 2020-04-08 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079597 149 2020-04-09 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079598 149 2020-04-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079599 149 2020-04-11 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1079600 149 2020-04-12 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1079601 149 2020-04-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079602 149 2020-04-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079603 149 2020-04-15 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079604 149 2020-04-16 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079605 149 2020-04-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079606 149 2020-04-18 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1079607 149 2020-04-19 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1079608 103 2020-02-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1084437 151 2020-05-10 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1084438 151 2020-05-11 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1084439 151 2020-05-12 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1084452 151 2020-05-25 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1079625 103 2020-03-12 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079626 103 2020-03-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079627 103 2020-03-14 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1079628 103 2020-03-15 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1079629 103 2020-03-16 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079630 103 2020-03-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079631 103 2020-03-18 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079632 103 2020-03-19 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079633 103 2020-03-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079634 103 2020-03-21 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1079635 103 2020-03-22 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1079636 103 2020-03-23 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079637 103 2020-03-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079638 103 2020-03-25 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1084457 151 2020-05-30 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +1084458 151 2020-05-31 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1084459 151 2020-06-01 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1084460 151 2020-06-02 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1079654 103 2020-04-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079655 103 2020-04-11 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1079656 103 2020-04-12 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1079657 103 2020-04-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079658 103 2020-04-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079659 103 2020-04-15 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079660 103 2020-04-16 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079661 103 2020-04-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079662 103 2020-04-18 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1079663 103 2020-04-19 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1079664 121 2020-02-24 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1079665 121 2020-02-25 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1079666 121 2020-02-26 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1079667 121 2020-02-27 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1084470 151 2020-06-12 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1084471 151 2020-06-13 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +1084472 151 2020-06-14 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1084473 138 2020-04-20 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1079684 121 2020-03-15 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1079685 121 2020-03-16 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1079686 121 2020-03-17 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1079687 121 2020-03-18 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1079688 121 2020-03-19 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1079689 121 2020-03-20 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1079690 121 2020-03-21 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1079691 121 2020-03-22 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1079692 121 2020-03-23 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1079693 121 2020-03-24 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1079694 121 2020-03-25 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1079695 121 2020-03-26 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1079696 121 2020-03-27 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1079697 121 2020-03-28 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1079698 121 2020-03-29 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1084493 138 2020-05-10 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1084494 138 2020-05-11 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1084495 138 2020-05-12 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1079713 121 2020-04-13 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1079714 121 2020-04-14 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1079715 121 2020-04-15 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1079716 121 2020-04-16 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1079717 121 2020-04-17 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1079718 121 2020-04-18 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1079719 121 2020-04-19 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1079720 125 2020-02-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 03:20:00 +1079721 125 2020-02-25 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 03:20:00 +1079722 125 2020-02-26 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 03:20:00 +1079723 125 2020-02-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 03:20:00 +1079724 125 2020-02-28 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 03:20:00 +1079725 125 2020-02-29 \N \N \N \N \N 00:00:00 03:20:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 03:20:00 +1079726 125 2020-03-01 \N \N \N \N \N 00:00:00 03:20:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1084500 138 2020-05-17 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1084501 138 2020-05-18 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1084502 138 2020-05-19 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1084517 138 2020-06-03 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1086021 149 2020-07-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086026 149 2020-07-26 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1079743 125 2020-03-18 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 03:20:00 +1079744 125 2020-03-19 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 03:20:00 +1079745 125 2020-03-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 03:20:00 +1079746 125 2020-03-21 \N \N \N \N \N 00:00:00 03:20:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 03:20:00 +1079747 125 2020-03-22 \N \N \N \N \N 00:00:00 03:20:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1079748 125 2020-03-23 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 03:20:00 +1079749 125 2020-03-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 03:20:00 +1079750 125 2020-03-25 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 03:20:00 +1079751 125 2020-03-26 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 03:20:00 +1079752 125 2020-03-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 03:20:00 +1079753 125 2020-03-28 \N \N \N \N \N 00:00:00 03:20:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 03:20:00 +1079754 125 2020-03-29 \N \N \N \N \N 00:00:00 03:20:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1079755 125 2020-03-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 03:20:00 +1079756 125 2020-03-31 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 03:20:00 +1084522 138 2020-06-08 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1084523 138 2020-06-09 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1084524 138 2020-06-10 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1079772 125 2020-04-16 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 03:20:00 +1079773 125 2020-04-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 03:20:00 +1079774 125 2020-04-18 \N \N \N \N \N 00:00:00 03:20:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 03:20:00 +1079775 125 2020-04-19 \N \N \N \N \N 00:00:00 03:20:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1079776 119 2020-02-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079777 119 2020-02-25 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079778 119 2020-02-26 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079779 119 2020-02-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079780 119 2020-02-28 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079781 119 2020-02-29 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1079782 119 2020-03-01 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1079783 119 2020-03-02 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079784 119 2020-03-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079785 119 2020-03-04 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1084530 105 2020-04-21 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1084531 105 2020-04-22 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1084546 105 2020-05-07 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1084547 105 2020-05-08 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1079801 119 2020-03-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079802 119 2020-03-21 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1079803 119 2020-03-22 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1079804 119 2020-03-23 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079805 119 2020-03-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079806 119 2020-03-25 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079807 119 2020-03-26 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079808 119 2020-03-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079809 119 2020-03-28 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1079810 119 2020-03-29 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1079811 119 2020-03-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079812 119 2020-03-31 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079813 119 2020-04-01 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079814 119 2020-04-02 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1084552 105 2020-05-13 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1084553 105 2020-05-14 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1084554 105 2020-05-15 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1084555 105 2020-05-16 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +1086042 103 2020-06-16 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1079830 119 2020-04-18 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1079831 119 2020-04-19 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1079832 113 2020-02-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079833 113 2020-02-25 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079834 113 2020-02-26 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079835 113 2020-02-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079836 113 2020-02-28 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079837 113 2020-02-29 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1079838 113 2020-03-01 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1079839 113 2020-03-02 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079840 113 2020-03-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079841 113 2020-03-04 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079842 113 2020-03-05 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079843 113 2020-03-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1084560 105 2020-05-21 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1084575 105 2020-06-05 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1084576 105 2020-06-06 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +1084577 105 2020-06-07 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1079860 113 2020-03-23 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079861 113 2020-03-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079862 113 2020-03-25 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079863 113 2020-03-26 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079864 113 2020-03-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079865 113 2020-03-28 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1079866 113 2020-03-29 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1079867 113 2020-03-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079868 113 2020-03-31 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079869 113 2020-04-01 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079870 113 2020-04-02 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079871 113 2020-04-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079872 113 2020-04-04 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1079873 113 2020-04-05 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1084582 105 2020-06-12 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1084583 105 2020-06-13 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +1084584 105 2020-06-14 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1084585 134 2020-04-20 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1079889 147 2020-02-25 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079890 147 2020-02-26 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079891 147 2020-02-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079892 147 2020-02-28 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079893 147 2020-02-29 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1079894 147 2020-03-01 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1079895 147 2020-03-02 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079896 147 2020-03-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079897 147 2020-03-04 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079898 147 2020-03-05 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079899 147 2020-03-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079900 147 2020-03-07 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1079901 147 2020-03-08 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1079902 147 2020-03-09 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1084606 134 2020-05-11 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1084607 134 2020-05-12 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1084608 134 2020-05-13 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1084609 134 2020-05-14 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1079918 147 2020-03-25 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079919 147 2020-03-26 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079920 147 2020-03-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079921 147 2020-03-28 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1079922 147 2020-03-29 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1079923 147 2020-03-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079924 147 2020-03-31 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079925 147 2020-04-01 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079926 147 2020-04-02 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079927 147 2020-04-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079928 147 2020-04-04 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1079929 147 2020-04-05 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1079930 147 2020-04-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1079931 147 2020-04-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1084614 134 2020-05-19 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1084615 134 2020-05-20 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1084616 134 2020-05-21 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1084617 134 2020-05-22 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1079947 131 2020-02-27 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 04:00:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 04:00:00 +1079948 131 2020-02-28 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 04:00:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 04:00:00 +1079949 131 2020-02-29 \N \N \N \N \N 00:00:00 04:00:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1079950 131 2020-03-01 \N \N \N \N \N 00:00:00 04:00:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1079951 131 2020-03-02 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 04:00:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 04:00:00 +1079952 131 2020-03-03 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 04:00:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 04:00:00 +1079953 131 2020-03-04 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 04:00:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 04:00:00 +1079954 131 2020-03-05 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 04:00:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 04:00:00 +1079955 131 2020-03-06 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 04:00:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 04:00:00 +1079956 131 2020-03-07 \N \N \N \N \N 00:00:00 04:00:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1079957 131 2020-03-08 \N \N \N \N \N 00:00:00 04:00:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1079958 131 2020-03-09 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 04:00:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 04:00:00 +1079959 131 2020-03-10 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 04:00:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 04:00:00 +1079960 131 2020-03-11 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 04:00:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 04:00:00 +1084636 134 2020-06-10 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1084637 134 2020-06-11 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1084638 134 2020-06-12 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1084639 134 2020-06-13 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +1079976 131 2020-03-27 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 04:00:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 04:00:00 +1079977 131 2020-03-28 \N \N \N \N \N 00:00:00 04:00:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1079978 131 2020-03-29 \N \N \N \N \N 00:00:00 04:00:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1079979 131 2020-03-30 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 04:00:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 04:00:00 +1079980 131 2020-03-31 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 04:00:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 04:00:00 +1079981 131 2020-04-01 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 04:00:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 04:00:00 +1079982 131 2020-04-02 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 04:00:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 04:00:00 +1079983 131 2020-04-03 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 04:00:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 04:00:00 +1079984 131 2020-04-04 \N \N \N \N \N 00:00:00 04:00:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1079985 131 2020-04-05 \N \N \N \N \N 00:00:00 04:00:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1079986 131 2020-04-06 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 04:00:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 04:00:00 +1079987 131 2020-04-07 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 04:00:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 04:00:00 +1079988 131 2020-04-08 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 04:00:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 04:00:00 +1079989 131 2020-04-09 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 04:00:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 04:00:00 +1084644 102 2020-04-23 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1084645 102 2020-04-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1084646 102 2020-04-25 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +1084647 102 2020-04-26 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1080006 104 2020-03-01 \N \N \N \N \N 00:00:00 06:00:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1080007 104 2020-03-02 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:00:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:00:00 +1080008 104 2020-03-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:00:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:00:00 +1080009 104 2020-03-04 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:00:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:00:00 +1080010 104 2020-03-05 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:00:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:00:00 +1080011 104 2020-03-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:00:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:00:00 +1080012 104 2020-03-07 \N \N \N \N \N 00:00:00 06:00:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1080013 104 2020-03-08 \N \N \N \N \N 00:00:00 06:00:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1080014 104 2020-03-09 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:00:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:00:00 +1080015 104 2020-03-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:00:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:00:00 +1080016 104 2020-03-11 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:00:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:00:00 +1080017 104 2020-03-12 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:00:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:00:00 +1080018 104 2020-03-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:00:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:00:00 +1080019 104 2020-03-14 \N \N \N \N \N 00:00:00 06:00:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1080020 104 2020-03-15 \N \N \N \N \N 00:00:00 06:00:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1084666 102 2020-05-15 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1084667 102 2020-05-16 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +1084668 102 2020-05-17 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1080035 104 2020-03-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:00:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:00:00 +1080036 104 2020-03-31 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:00:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:00:00 +1080037 104 2020-04-01 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:00:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:00:00 +1080038 104 2020-04-02 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:00:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:00:00 +1080039 104 2020-04-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:00:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:00:00 +1080040 104 2020-04-04 \N \N \N \N \N 00:00:00 06:00:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1080041 104 2020-04-05 \N \N \N \N \N 00:00:00 06:00:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1080042 104 2020-04-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:00:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:00:00 +1080043 104 2020-04-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:00:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:00:00 +1080044 104 2020-04-08 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:00:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:00:00 +1080045 104 2020-04-09 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:00:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:00:00 +1080046 104 2020-04-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:00:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:00:00 +1080047 104 2020-04-11 \N \N \N \N \N 00:00:00 06:00:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1080048 104 2020-04-12 \N \N \N \N \N 00:00:00 06:00:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1084673 102 2020-05-22 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1084674 102 2020-05-23 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +1084675 102 2020-05-24 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1084676 102 2020-05-25 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1085514 130 2020-05-23 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +1080064 151 2020-03-03 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080065 151 2020-03-04 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080066 151 2020-03-05 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080067 151 2020-03-06 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080068 151 2020-03-07 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1080069 151 2020-03-08 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1080070 151 2020-03-09 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080071 151 2020-03-10 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080072 151 2020-03-11 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080073 151 2020-03-12 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080074 151 2020-03-13 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080075 151 2020-03-14 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1080076 151 2020-03-15 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1080077 151 2020-03-16 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1084695 102 2020-06-13 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +1084696 102 2020-06-14 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1084697 109 2020-04-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1084698 109 2020-04-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1080093 151 2020-04-01 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080094 151 2020-04-02 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080095 151 2020-04-03 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080096 151 2020-04-04 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1080097 151 2020-04-05 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1080098 151 2020-04-06 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080099 151 2020-04-07 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080100 151 2020-04-08 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080101 151 2020-04-09 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080102 151 2020-04-10 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080103 151 2020-04-11 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1080104 151 2020-04-12 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1080105 151 2020-04-13 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080106 151 2020-04-14 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1084704 109 2020-04-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1084705 109 2020-04-28 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1084706 109 2020-04-29 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1084721 109 2020-05-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1080122 138 2020-03-05 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080123 138 2020-03-06 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080124 138 2020-03-07 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1080125 138 2020-03-08 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1080126 138 2020-03-09 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080127 138 2020-03-10 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080128 138 2020-03-11 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080129 138 2020-03-12 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080130 138 2020-03-13 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080131 138 2020-03-14 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1080132 138 2020-03-15 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1080133 138 2020-03-16 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080134 138 2020-03-17 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080135 138 2020-03-18 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1084726 109 2020-05-19 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1084727 109 2020-05-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1084728 109 2020-05-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1085534 130 2020-06-12 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1080151 138 2020-04-03 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080152 138 2020-04-04 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1080153 138 2020-04-05 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1080154 138 2020-04-06 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080155 138 2020-04-07 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080156 138 2020-04-08 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080157 138 2020-04-09 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080158 138 2020-04-10 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080159 138 2020-04-11 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1080160 138 2020-04-12 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1080161 138 2020-04-13 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080162 138 2020-04-14 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080163 138 2020-04-15 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080164 138 2020-04-16 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1084734 109 2020-05-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1084735 109 2020-05-28 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1084750 109 2020-06-12 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1084751 109 2020-06-13 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +1080181 105 2020-03-08 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1080182 105 2020-03-09 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080183 105 2020-03-10 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080184 105 2020-03-11 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080185 105 2020-03-12 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080186 105 2020-03-13 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080187 105 2020-03-14 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1080188 105 2020-03-15 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1080189 105 2020-03-16 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080190 105 2020-03-17 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080191 105 2020-03-18 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080192 105 2020-03-19 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080193 105 2020-03-20 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080194 105 2020-03-21 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1084756 118 2020-04-23 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1084757 118 2020-04-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1084758 118 2020-04-25 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +1084759 118 2020-04-26 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1003840 127 2020-01-01 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1003841 127 2020-01-02 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1003842 127 2020-01-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1003843 127 2020-01-04 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +1003844 127 2020-01-05 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1003845 127 2020-01-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1003846 127 2020-01-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1003847 127 2020-01-08 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1003848 127 2020-01-09 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1003849 127 2020-01-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1003850 127 2020-01-11 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +1003851 127 2020-01-12 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1003852 127 2020-01-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1003853 127 2020-01-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1003854 127 2020-01-15 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1003855 127 2020-01-16 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1003856 127 2020-01-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1003857 127 2020-01-18 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +1086049 103 2020-06-23 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086053 103 2020-06-27 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 06:40:00 +1003874 127 2020-02-04 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1003875 127 2020-02-05 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1003876 127 2020-02-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1003877 127 2020-02-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1003878 127 2020-02-08 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +1003879 127 2020-02-09 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1003880 127 2020-02-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1003881 127 2020-02-11 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1003882 127 2020-02-12 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1003883 127 2020-02-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1003884 127 2020-02-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1003885 127 2020-02-15 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +1003886 127 2020-02-16 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1003887 127 2020-02-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1003888 127 2020-02-18 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1003889 127 2020-02-19 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1003890 127 2020-02-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1003891 127 2020-02-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1080211 105 2020-04-07 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080212 105 2020-04-08 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080213 105 2020-04-09 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080214 105 2020-04-10 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080215 105 2020-04-11 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1080216 105 2020-04-12 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1080217 105 2020-04-13 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080218 105 2020-04-14 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080219 105 2020-04-15 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080220 105 2020-04-16 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080221 105 2020-04-17 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080222 105 2020-04-18 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1080223 105 2020-04-19 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1080224 134 2020-02-24 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1084764 118 2020-05-01 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1084765 118 2020-05-02 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +1084781 118 2020-05-18 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1085538 129 2020-04-21 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1080240 134 2020-03-11 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080241 134 2020-03-12 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080242 134 2020-03-13 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080243 134 2020-03-14 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1080244 134 2020-03-15 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1080245 134 2020-03-16 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080246 134 2020-03-17 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080247 134 2020-03-18 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080248 134 2020-03-19 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080249 134 2020-03-20 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080250 134 2020-03-21 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1080251 134 2020-03-22 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1080252 134 2020-03-23 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080253 134 2020-03-24 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1084788 118 2020-05-25 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1084789 118 2020-05-26 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1084790 118 2020-05-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1084791 118 2020-05-28 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1080269 134 2020-04-09 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080270 134 2020-04-10 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080271 134 2020-04-11 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1080272 134 2020-04-12 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1080273 134 2020-04-13 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080274 134 2020-04-14 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080275 134 2020-04-15 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080276 134 2020-04-16 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080277 134 2020-04-17 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080278 134 2020-04-18 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1080279 134 2020-04-19 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1080280 144 2020-02-24 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080281 144 2020-02-25 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080282 144 2020-02-26 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1084810 133 2020-04-21 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1084811 133 2020-04-22 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1084812 133 2020-04-23 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1080298 144 2020-03-13 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080299 144 2020-03-14 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1080300 144 2020-03-15 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1080301 144 2020-03-16 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080302 144 2020-03-17 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080303 144 2020-03-18 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080304 144 2020-03-19 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080305 144 2020-03-20 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080306 144 2020-03-21 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1080307 144 2020-03-22 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1080308 144 2020-03-23 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080309 144 2020-03-24 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080310 144 2020-03-25 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080311 144 2020-03-26 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1084818 133 2020-04-29 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1084819 133 2020-04-30 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1084820 133 2020-05-01 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1084821 133 2020-05-02 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +1080328 102 2020-03-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1080329 102 2020-03-07 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1080330 102 2020-03-08 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1080331 102 2020-03-09 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1080332 102 2020-03-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1080333 102 2020-03-11 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1080334 102 2020-03-12 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1080335 102 2020-03-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1080336 102 2020-03-14 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1080337 102 2020-03-15 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1080338 102 2020-03-16 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1080339 102 2020-03-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1080340 102 2020-03-18 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1080341 102 2020-03-19 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1084840 133 2020-05-21 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1084841 133 2020-05-22 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1084842 133 2020-05-23 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +1084843 133 2020-05-24 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1080357 102 2020-04-04 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1080358 102 2020-04-05 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1080359 102 2020-04-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1080360 102 2020-04-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1080361 102 2020-04-08 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1080362 102 2020-04-09 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1080363 102 2020-04-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1080364 102 2020-04-11 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1080365 102 2020-04-12 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1080366 102 2020-04-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1080367 102 2020-04-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1080368 102 2020-04-15 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1080369 102 2020-04-16 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1080370 102 2020-04-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1084848 133 2020-05-29 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1084849 133 2020-05-30 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +1084850 133 2020-05-31 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1084851 133 2020-06-01 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1080387 109 2020-03-09 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1080388 109 2020-03-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1080389 109 2020-03-11 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1080390 109 2020-03-12 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1080391 109 2020-03-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1080392 109 2020-03-14 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1080393 109 2020-03-15 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1080394 109 2020-03-16 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1080395 109 2020-03-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1080396 109 2020-03-18 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1080397 109 2020-03-19 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1080398 109 2020-03-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1080399 109 2020-03-21 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1080400 109 2020-03-22 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1084870 111 2020-04-25 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +1084871 111 2020-04-26 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1084872 111 2020-04-27 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1084873 111 2020-04-28 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1080416 109 2020-04-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1080417 109 2020-04-08 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1080418 109 2020-04-09 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1080419 109 2020-04-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1080420 109 2020-04-11 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1080421 109 2020-04-12 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1080422 109 2020-04-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1080423 109 2020-04-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1080424 109 2020-04-15 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1080425 109 2020-04-16 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1080426 109 2020-04-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1080427 109 2020-04-18 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1080428 109 2020-04-19 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1080429 118 2020-02-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1084879 111 2020-05-04 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1084880 111 2020-05-05 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1084881 111 2020-05-06 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1084896 111 2020-05-21 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1080445 118 2020-03-11 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1080446 118 2020-03-12 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1080447 118 2020-03-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1080448 118 2020-03-14 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1080449 118 2020-03-15 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1080450 118 2020-03-16 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1080451 118 2020-03-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1080452 118 2020-03-18 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1080453 118 2020-03-19 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1080454 118 2020-03-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1080455 118 2020-03-21 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1080456 118 2020-03-22 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1080457 118 2020-03-23 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1080458 118 2020-03-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1084901 111 2020-05-26 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1084902 111 2020-05-27 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1084903 111 2020-05-28 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1084904 111 2020-05-29 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1080474 118 2020-04-09 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1080475 118 2020-04-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1080476 118 2020-04-11 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1080477 118 2020-04-12 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1080478 118 2020-04-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1080479 118 2020-04-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1080480 118 2020-04-15 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1080481 118 2020-04-16 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1080482 118 2020-04-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1080483 118 2020-04-18 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1080484 118 2020-04-19 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1080485 133 2020-02-24 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080486 133 2020-02-25 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080487 133 2020-02-26 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1084909 111 2020-06-03 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1084910 111 2020-06-04 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1084925 128 2020-04-24 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1084926 128 2020-04-25 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +1080503 133 2020-03-13 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080504 133 2020-03-14 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1080505 133 2020-03-15 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1080506 133 2020-03-16 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080507 133 2020-03-17 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080508 133 2020-03-18 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080509 133 2020-03-19 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080510 133 2020-03-20 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080511 133 2020-03-21 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1080512 133 2020-03-22 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1080513 133 2020-03-23 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080514 133 2020-03-24 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080515 133 2020-03-25 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080516 133 2020-03-26 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1084931 128 2020-04-30 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1084932 128 2020-05-01 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1084933 128 2020-05-02 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +1084934 128 2020-05-03 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1080532 133 2020-04-11 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1080533 133 2020-04-12 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1080534 133 2020-04-13 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080535 133 2020-04-14 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080536 133 2020-04-15 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080537 133 2020-04-16 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080538 133 2020-04-17 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080539 133 2020-04-18 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1080540 133 2020-04-19 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1080541 111 2020-02-24 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080542 111 2020-02-25 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080543 111 2020-02-26 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080544 111 2020-02-27 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080545 111 2020-02-28 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1084939 128 2020-05-08 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1084940 128 2020-05-09 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +1084956 128 2020-05-25 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1084957 128 2020-05-26 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1086072 103 2020-07-16 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1080562 111 2020-03-16 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080563 111 2020-03-17 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080564 111 2020-03-18 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080565 111 2020-03-19 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080566 111 2020-03-20 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080567 111 2020-03-21 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1080568 111 2020-03-22 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1080569 111 2020-03-23 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080570 111 2020-03-24 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080571 111 2020-03-25 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080572 111 2020-03-26 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080573 111 2020-03-27 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080574 111 2020-03-28 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1080575 111 2020-03-29 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1084962 128 2020-05-31 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1084963 128 2020-06-01 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1084964 128 2020-06-02 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1084965 128 2020-06-03 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1080591 111 2020-04-14 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080592 111 2020-04-15 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080593 111 2020-04-16 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080594 111 2020-04-17 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080595 111 2020-04-18 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1080596 111 2020-04-19 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1080597 128 2020-02-24 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080598 128 2020-02-25 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080599 128 2020-02-26 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080600 128 2020-02-27 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080601 128 2020-02-28 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080602 128 2020-02-29 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1080603 128 2020-03-01 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1080604 128 2020-03-02 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1084984 142 2020-04-27 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1084985 142 2020-04-28 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1084986 142 2020-04-29 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085575 129 2020-05-28 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1086081 103 2020-07-25 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 06:40:00 +1080620 128 2020-03-18 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080621 128 2020-03-19 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080622 128 2020-03-20 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080623 128 2020-03-21 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1080624 128 2020-03-22 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1080625 128 2020-03-23 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080626 128 2020-03-24 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080627 128 2020-03-25 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080628 128 2020-03-26 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080629 128 2020-03-27 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080630 128 2020-03-28 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1080631 128 2020-03-29 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1080632 128 2020-03-30 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080633 128 2020-03-31 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1084993 142 2020-05-06 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1084994 142 2020-05-07 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1084995 142 2020-05-08 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1084996 142 2020-05-09 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +1086082 103 2020-07-26 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1080649 128 2020-04-16 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080650 128 2020-04-17 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080651 128 2020-04-18 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1080652 128 2020-04-19 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1080653 142 2020-02-24 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080654 142 2020-02-25 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080655 142 2020-02-26 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080656 142 2020-02-27 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080657 142 2020-02-28 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080658 142 2020-02-29 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1080659 142 2020-03-01 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1080660 142 2020-03-02 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080661 142 2020-03-03 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080662 142 2020-03-04 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1085015 142 2020-05-28 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085016 142 2020-05-29 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085017 142 2020-05-30 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +1085018 142 2020-05-31 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1080678 142 2020-03-20 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080679 142 2020-03-21 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1080680 142 2020-03-22 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1080681 142 2020-03-23 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080682 142 2020-03-24 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080683 142 2020-03-25 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080684 142 2020-03-26 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080685 142 2020-03-27 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080686 142 2020-03-28 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1080687 142 2020-03-29 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1080688 142 2020-03-30 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080689 142 2020-03-31 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080690 142 2020-04-01 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080691 142 2020-04-02 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1085023 142 2020-06-05 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085024 142 2020-06-06 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +1085025 142 2020-06-07 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1085026 142 2020-06-08 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085578 129 2020-05-31 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1080707 142 2020-04-18 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1080708 142 2020-04-19 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1080709 136 2020-02-24 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080710 136 2020-02-25 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080711 136 2020-02-26 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080712 136 2020-02-27 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080713 136 2020-02-28 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080714 136 2020-02-29 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1080715 136 2020-03-01 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1080716 136 2020-03-02 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080717 136 2020-03-03 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080718 136 2020-03-04 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080719 136 2020-03-05 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080720 136 2020-03-06 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1085045 136 2020-05-02 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +1085046 136 2020-05-03 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1085047 136 2020-05-04 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085048 136 2020-05-05 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1080737 136 2020-03-23 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080738 136 2020-03-24 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080739 136 2020-03-25 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080740 136 2020-03-26 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080741 136 2020-03-27 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080742 136 2020-03-28 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1080743 136 2020-03-29 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1080744 136 2020-03-30 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080745 136 2020-03-31 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080746 136 2020-04-01 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080747 136 2020-04-02 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080748 136 2020-04-03 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080749 136 2020-04-04 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1080750 136 2020-04-05 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1085053 136 2020-05-10 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1085054 136 2020-05-11 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085055 136 2020-05-12 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085056 136 2020-05-13 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1086105 121 2020-06-23 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1086109 121 2020-06-27 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 06:40:00 +1080766 139 2020-02-25 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080767 139 2020-02-26 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080768 139 2020-02-27 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080769 139 2020-02-28 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080770 139 2020-02-29 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1080771 139 2020-03-01 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1080772 139 2020-03-02 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080773 139 2020-03-03 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080774 139 2020-03-04 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080775 139 2020-03-05 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080776 139 2020-03-06 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080777 139 2020-03-07 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1080778 139 2020-03-08 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1080779 139 2020-03-09 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1085075 136 2020-06-01 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085076 136 2020-06-02 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085077 136 2020-06-03 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085078 136 2020-06-04 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1080795 139 2020-03-25 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080796 139 2020-03-26 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080797 139 2020-03-27 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080798 139 2020-03-28 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1080799 139 2020-03-29 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1080800 139 2020-03-30 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080801 139 2020-03-31 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080802 139 2020-04-01 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080803 139 2020-04-02 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080804 139 2020-04-03 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080805 139 2020-04-04 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1080806 139 2020-04-05 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1080807 139 2020-04-06 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080808 139 2020-04-07 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1085097 139 2020-04-28 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085098 139 2020-04-29 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085099 139 2020-04-30 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085100 139 2020-05-01 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1080824 141 2020-02-27 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080825 141 2020-02-28 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080826 141 2020-02-29 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1080827 141 2020-03-01 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1080828 141 2020-03-02 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080829 141 2020-03-03 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080830 141 2020-03-04 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080831 141 2020-03-05 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080832 141 2020-03-06 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080833 141 2020-03-07 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1080834 141 2020-03-08 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1080835 141 2020-03-09 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080836 141 2020-03-10 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080837 141 2020-03-11 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1085105 139 2020-05-06 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085106 139 2020-05-07 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085107 139 2020-05-08 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085108 139 2020-05-09 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +1080853 141 2020-03-27 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080854 141 2020-03-28 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1080855 141 2020-03-29 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1080856 141 2020-03-30 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080857 141 2020-03-31 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080858 141 2020-04-01 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080859 141 2020-04-02 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080860 141 2020-04-03 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080861 141 2020-04-04 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1080862 141 2020-04-05 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1080863 141 2020-04-06 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080864 141 2020-04-07 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080865 141 2020-04-08 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1080866 141 2020-04-09 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1085127 139 2020-05-28 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085128 139 2020-05-29 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085129 139 2020-05-30 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +1085130 139 2020-05-31 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1085598 143 2020-04-25 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +1005992 149 2020-01-01 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1005993 149 2020-01-02 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1005994 149 2020-01-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1005995 149 2020-01-04 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +1005996 149 2020-01-05 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1005997 149 2020-01-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1005998 149 2020-01-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1005999 149 2020-01-08 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1006000 149 2020-01-09 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1006001 149 2020-01-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1080883 122 2020-03-01 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1080884 122 2020-03-02 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1080885 122 2020-03-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1080886 122 2020-03-04 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1080887 122 2020-03-05 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1080888 122 2020-03-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1080889 122 2020-03-07 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1085599 143 2020-04-26 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1006002 149 2020-01-11 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +1006003 149 2020-01-12 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1006004 149 2020-01-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1006005 149 2020-01-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1006006 149 2020-01-15 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1006007 149 2020-01-16 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1006008 149 2020-01-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1006009 149 2020-01-18 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +1006010 149 2020-01-19 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1006011 149 2020-01-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1006012 149 2020-01-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1006013 149 2020-01-22 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1006014 149 2020-01-23 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1006015 149 2020-01-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1006016 149 2020-01-25 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +1006017 149 2020-01-26 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1006018 149 2020-01-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1080897 122 2020-03-15 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1080898 122 2020-03-16 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1080901 122 2020-03-19 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1080902 122 2020-03-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1080903 122 2020-03-21 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1080904 122 2020-03-22 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1080905 122 2020-03-23 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1080906 122 2020-03-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1080907 122 2020-03-25 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1080908 122 2020-03-26 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1080909 122 2020-03-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1080910 122 2020-03-28 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1080911 122 2020-03-29 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1080912 122 2020-03-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1080913 122 2020-03-31 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1080914 122 2020-04-01 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1085140 139 2020-06-10 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085155 141 2020-04-30 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085156 141 2020-05-01 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085157 141 2020-05-02 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +1080930 122 2020-04-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1080931 122 2020-04-18 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1080932 122 2020-04-19 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1080933 106 2020-02-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 04:10:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 04:10:00 +1080934 106 2020-02-25 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 04:10:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 04:10:00 +1080935 106 2020-02-26 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 04:10:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 04:10:00 +1080936 106 2020-02-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 04:10:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 04:10:00 +1080937 106 2020-02-28 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 04:10:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 \N +1080938 106 2020-02-29 \N \N \N \N \N 00:00:00 04:10:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1080939 106 2020-03-01 \N \N \N \N \N 00:00:00 04:10:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1080940 106 2020-03-02 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 04:10:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 04:10:00 +1080941 106 2020-03-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 04:10:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 04:10:00 +1080942 106 2020-03-04 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 04:10:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 04:10:00 +1080943 106 2020-03-05 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 04:10:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 04:10:00 +1085162 141 2020-05-07 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085163 141 2020-05-08 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085164 141 2020-05-09 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +1085165 141 2020-05-10 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1080960 106 2020-03-22 \N \N \N \N \N 00:00:00 04:10:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1080961 106 2020-03-23 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 04:10:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 04:10:00 +1080962 106 2020-03-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 04:10:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 04:10:00 +1080963 106 2020-03-25 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 04:10:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 04:10:00 +1080964 106 2020-03-26 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 04:10:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 04:10:00 +1080965 106 2020-03-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 04:10:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 \N +1080966 106 2020-03-28 \N \N \N \N \N 00:00:00 04:10:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1080967 106 2020-03-29 \N \N \N \N \N 00:00:00 04:10:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1080968 106 2020-03-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 04:10:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 04:10:00 +1080969 106 2020-03-31 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 04:10:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 04:10:00 +1080970 106 2020-04-01 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 04:10:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 04:10:00 +1080971 106 2020-04-02 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 04:10:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 04:10:00 +1080972 106 2020-04-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 04:10:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 \N +1080973 106 2020-04-04 \N \N \N \N \N 00:00:00 04:10:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1085184 141 2020-05-29 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085185 141 2020-05-30 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +1085186 141 2020-05-31 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1085187 141 2020-06-01 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085622 143 2020-05-19 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1080990 110 2020-02-25 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1080991 110 2020-02-26 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1080992 110 2020-02-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1080993 110 2020-02-28 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1080994 110 2020-02-29 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1080995 110 2020-03-01 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1080996 110 2020-03-02 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1080997 110 2020-03-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1080998 110 2020-03-04 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1080999 110 2020-03-05 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1081000 110 2020-03-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1081001 110 2020-03-07 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1081002 110 2020-03-08 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1081003 110 2020-03-09 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1085192 141 2020-06-06 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +1085193 141 2020-06-07 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1085194 141 2020-06-08 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085195 141 2020-06-09 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085627 143 2020-05-24 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1081019 110 2020-03-25 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1081020 110 2020-03-26 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1081021 110 2020-03-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1081022 110 2020-03-28 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1081023 110 2020-03-29 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1081024 110 2020-03-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1081025 110 2020-03-31 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1081026 110 2020-04-01 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1081027 110 2020-04-02 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1081028 110 2020-04-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1081029 110 2020-04-04 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1081030 110 2020-04-05 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1081031 110 2020-04-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1081032 110 2020-04-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1085215 122 2020-05-04 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1085216 122 2020-05-05 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1085217 122 2020-05-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1085218 122 2020-05-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1081048 145 2020-02-27 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1081049 145 2020-02-28 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1081050 145 2020-02-29 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1081051 145 2020-03-01 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1081052 145 2020-03-02 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1081053 145 2020-03-03 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1081054 145 2020-03-04 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1081055 145 2020-03-05 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1081056 145 2020-03-06 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1081057 145 2020-03-07 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1081058 145 2020-03-08 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1081059 145 2020-03-09 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1081060 145 2020-03-10 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1081061 145 2020-03-11 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1085223 122 2020-05-12 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1085224 122 2020-05-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1085225 122 2020-05-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1085226 122 2020-05-15 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1081077 145 2020-03-27 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1081078 145 2020-03-28 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1081079 145 2020-03-29 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1081080 145 2020-03-30 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1081081 145 2020-03-31 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1081082 145 2020-04-01 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1081083 145 2020-04-02 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1081084 145 2020-04-03 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1081085 145 2020-04-04 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1081086 145 2020-04-05 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1081087 145 2020-04-06 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1081088 145 2020-04-07 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1081089 145 2020-04-08 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1081090 145 2020-04-09 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1085245 122 2020-06-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1085246 122 2020-06-04 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1085247 122 2020-06-05 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1085248 122 2020-06-06 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +1081106 148 2020-02-29 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1081107 148 2020-03-01 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1081108 148 2020-03-02 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1081109 148 2020-03-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1081110 148 2020-03-04 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1081111 148 2020-03-05 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1081112 148 2020-03-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1081113 148 2020-03-07 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1081114 148 2020-03-08 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1081115 148 2020-03-09 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1081116 148 2020-03-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1081117 148 2020-03-11 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1081118 148 2020-03-12 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1081119 148 2020-03-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1085253 122 2020-06-11 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1085254 122 2020-06-12 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1085255 122 2020-06-13 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +1085256 122 2020-06-14 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1081136 148 2020-03-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1081137 148 2020-03-31 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1081138 148 2020-04-01 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1081139 148 2020-04-02 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1081140 148 2020-04-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1081141 148 2020-04-04 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1081142 148 2020-04-05 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1081143 148 2020-04-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1081144 148 2020-04-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1081145 148 2020-04-08 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1081146 148 2020-04-09 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1081147 148 2020-04-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 06:40:00 +1081148 148 2020-04-11 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1081149 148 2020-04-12 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1085275 106 2020-05-08 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 04:10:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 \N +1085276 106 2020-05-09 \N \N \N \N \N 00:00:00 04:10:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1085277 106 2020-05-10 \N \N \N \N \N 00:00:00 04:10:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1085278 106 2020-05-11 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 04:10:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 04:10:00 +1081165 130 2020-03-03 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1081166 130 2020-03-04 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1081167 130 2020-03-05 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1081168 130 2020-03-06 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1081169 130 2020-03-07 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1081170 130 2020-03-08 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1081171 130 2020-03-09 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1081172 130 2020-03-10 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1081173 130 2020-03-11 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1081174 130 2020-03-12 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1081175 130 2020-03-13 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1081176 130 2020-03-14 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1081177 130 2020-03-15 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1081178 130 2020-03-16 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1085284 106 2020-05-17 \N \N \N \N \N 00:00:00 04:10:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1085285 106 2020-05-18 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 04:10:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 04:10:00 +1085286 106 2020-05-19 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 04:10:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 04:10:00 +1085301 106 2020-06-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 04:10:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 04:10:00 +1081194 130 2020-04-01 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1081195 130 2020-04-02 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1081196 130 2020-04-03 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1081197 130 2020-04-04 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1081198 130 2020-04-05 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1081199 130 2020-04-06 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1081200 130 2020-04-07 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1081201 130 2020-04-08 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1081202 130 2020-04-09 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1081203 130 2020-04-10 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1081204 130 2020-04-11 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1081205 130 2020-04-12 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1081206 130 2020-04-13 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1081207 130 2020-04-14 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1085306 106 2020-06-08 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 04:10:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 04:10:00 +1085307 106 2020-06-09 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 04:10:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 04:10:00 +1085308 106 2020-06-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 04:10:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 04:10:00 +1085309 106 2020-06-11 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 04:10:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 04:10:00 +1081223 129 2020-03-05 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1081224 129 2020-03-06 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1081225 129 2020-03-07 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1081226 129 2020-03-08 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1081227 129 2020-03-09 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1081228 129 2020-03-10 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1081229 129 2020-03-11 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1081230 129 2020-03-12 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1081231 129 2020-03-13 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1081232 129 2020-03-14 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1081233 129 2020-03-15 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1081234 129 2020-03-16 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1081235 129 2020-03-17 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1081236 129 2020-03-18 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1085314 110 2020-04-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1085315 110 2020-04-22 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1085330 110 2020-05-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1085635 143 2020-06-01 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1081253 129 2020-04-04 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1081254 129 2020-04-05 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1081255 129 2020-04-06 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1081256 129 2020-04-07 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1081257 129 2020-04-08 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1081258 129 2020-04-09 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1081259 129 2020-04-10 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1081260 129 2020-04-11 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1081261 129 2020-04-12 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1081262 129 2020-04-13 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1081263 129 2020-04-14 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1081264 129 2020-04-15 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1081265 129 2020-04-16 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1081266 129 2020-04-17 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1081267 129 2020-04-18 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1085336 110 2020-05-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1085337 110 2020-05-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1085338 110 2020-05-15 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1081282 143 2020-03-08 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1081283 143 2020-03-09 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1081284 143 2020-03-10 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1081285 143 2020-03-11 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1081286 143 2020-03-12 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1081287 143 2020-03-13 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1081288 143 2020-03-14 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1081289 143 2020-03-15 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1081290 143 2020-03-16 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1081291 143 2020-03-17 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1081292 143 2020-03-18 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1081293 143 2020-03-19 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1081294 143 2020-03-20 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1081295 143 2020-03-21 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1085343 110 2020-05-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1085344 110 2020-05-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1085359 110 2020-06-05 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1085360 110 2020-06-06 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +1086114 121 2020-07-02 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1081312 143 2020-04-07 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1081313 143 2020-04-08 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1081314 143 2020-04-09 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1081315 143 2020-04-10 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1081316 143 2020-04-11 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1081317 143 2020-04-12 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1081318 143 2020-04-13 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1081319 143 2020-04-14 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1081320 143 2020-04-15 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1081321 143 2020-04-16 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1081322 143 2020-04-17 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 06:40:00 +1081323 143 2020-04-18 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 06:40:00 +1081324 143 2020-04-19 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 \N +1083490 146 2020-04-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1085365 110 2020-06-11 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1085366 110 2020-06-12 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1085367 110 2020-06-13 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +1085368 110 2020-06-14 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1083506 146 2020-05-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1083507 146 2020-05-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1083508 146 2020-05-08 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1083509 146 2020-05-09 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +1083510 146 2020-05-10 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1083511 146 2020-05-11 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1083512 146 2020-05-12 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1083513 146 2020-05-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1083514 146 2020-05-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1083515 146 2020-05-15 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1083516 146 2020-05-16 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +1083517 146 2020-05-17 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1083518 146 2020-05-18 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1083519 146 2020-05-19 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1085373 145 2020-04-24 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085374 145 2020-04-25 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +1085390 145 2020-05-11 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085652 146 2020-06-18 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086137 121 2020-07-25 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 06:40:00 +1083535 146 2020-06-04 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1083536 146 2020-06-05 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1083537 146 2020-06-06 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +1083538 146 2020-06-07 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1083539 146 2020-06-08 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1083540 146 2020-06-09 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1083541 146 2020-06-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1083542 146 2020-06-11 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1083543 146 2020-06-12 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1083544 146 2020-06-13 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +1083545 146 2020-06-14 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1083546 115 2020-04-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1083547 115 2020-04-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1083548 115 2020-04-22 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1085397 145 2020-05-18 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085398 145 2020-05-19 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085399 145 2020-05-20 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1083564 115 2020-05-08 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1083565 115 2020-05-09 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +1083566 115 2020-05-10 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1083567 115 2020-05-11 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1083568 115 2020-05-12 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1083569 115 2020-05-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1083570 115 2020-05-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1083571 115 2020-05-15 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1083572 115 2020-05-16 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +1083573 115 2020-05-17 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1083574 115 2020-05-18 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1083575 115 2020-05-19 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1083576 115 2020-05-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1083577 115 2020-05-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1085419 145 2020-06-09 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085420 145 2020-06-10 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085421 145 2020-06-11 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085422 145 2020-06-12 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1083593 115 2020-06-06 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +1083594 115 2020-06-07 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1083595 115 2020-06-08 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1083596 115 2020-06-09 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1083597 115 2020-06-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1083598 115 2020-06-11 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1083599 115 2020-06-12 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1083600 115 2020-06-13 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +1083601 115 2020-06-14 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1083602 114 2020-04-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1083603 114 2020-04-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1083604 114 2020-04-22 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1083605 114 2020-04-23 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1083606 114 2020-04-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1085427 148 2020-04-22 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1085428 148 2020-04-23 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1085429 148 2020-04-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1085430 148 2020-04-25 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +1008198 103 2019-12-30 08:00:00 12:00:00 \N \N \N 04:00:00 06:40:00 \N 5 \N 04:00:00 00:00:00 \N 27 08:00:00 \N 00:00:00 06:40:00 +1008199 103 2019-12-31 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1083623 114 2020-05-11 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1083624 114 2020-05-12 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1083625 114 2020-05-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1083626 114 2020-05-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1083627 114 2020-05-15 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1083628 114 2020-05-16 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +1083629 114 2020-05-17 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1083630 114 2020-05-18 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1083631 114 2020-05-19 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1083632 114 2020-05-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1083633 114 2020-05-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1083634 114 2020-05-22 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1083635 114 2020-05-23 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +1085449 148 2020-05-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1085450 148 2020-05-15 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1085451 148 2020-05-16 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +1083648 114 2020-06-05 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1083649 114 2020-06-06 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +1083650 114 2020-06-07 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1083651 114 2020-06-08 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1083652 114 2020-06-09 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1083653 114 2020-06-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1083654 114 2020-06-11 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1083655 114 2020-06-12 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1083656 114 2020-06-13 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +1083657 114 2020-06-14 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1083658 112 2020-04-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1083659 112 2020-04-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1083660 112 2020-04-22 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1083661 112 2020-04-23 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1085455 148 2020-05-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1085456 148 2020-05-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1085457 148 2020-05-22 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1085458 148 2020-05-23 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +1086142 121 2020-07-30 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1083678 112 2020-05-10 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1083679 112 2020-05-11 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1083680 112 2020-05-12 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1083681 112 2020-05-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1083682 112 2020-05-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1083683 112 2020-05-15 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1083684 112 2020-05-16 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +1083685 112 2020-05-17 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1083686 112 2020-05-18 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1083687 112 2020-05-19 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1083688 112 2020-05-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1083689 112 2020-05-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1083690 112 2020-05-22 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1083691 112 2020-05-23 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +1083692 112 2020-05-24 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1085477 148 2020-06-11 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1085478 148 2020-06-12 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1085479 148 2020-06-13 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +1085480 148 2020-06-14 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1083707 108 2020-04-27 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1083708 108 2020-04-28 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1083709 108 2020-04-29 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1083710 108 2020-04-30 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1083711 108 2020-05-01 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1083712 108 2020-05-02 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +1083713 108 2020-05-03 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1083714 108 2020-05-04 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1083715 108 2020-05-05 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1083716 108 2020-05-06 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1083717 108 2020-05-07 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1083718 108 2020-05-08 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1083719 108 2020-05-09 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +1083720 108 2020-05-10 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1085484 130 2020-04-23 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085485 130 2020-04-24 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085486 130 2020-04-25 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +1085487 130 2020-04-26 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1083736 108 2020-05-26 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1083737 108 2020-05-27 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1083738 108 2020-05-28 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1083739 108 2020-05-29 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1083740 108 2020-05-30 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +1083741 108 2020-05-31 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1083742 108 2020-06-01 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1083743 108 2020-06-02 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1083744 108 2020-06-03 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1083745 108 2020-06-04 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1083746 108 2020-06-05 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1083747 108 2020-06-06 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +1083748 108 2020-06-07 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1083749 108 2020-06-08 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085506 130 2020-05-15 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085507 130 2020-05-16 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +1085508 130 2020-05-17 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1085509 130 2020-05-18 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1008144 103 2020-01-01 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1008145 103 2020-01-02 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1008146 103 2020-01-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1008147 103 2020-01-04 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +1008148 103 2020-01-05 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1008149 103 2020-01-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1008150 103 2020-01-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1008151 103 2020-01-08 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1008152 103 2020-01-09 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1008153 103 2020-01-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1008154 103 2020-01-11 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +1008155 103 2020-01-12 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1008156 103 2020-01-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1008157 103 2020-01-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1008158 103 2020-01-15 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1008159 103 2020-01-16 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1008160 103 2020-01-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1008161 103 2020-01-18 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +1086164 117 2020-07-05 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1008175 103 2020-02-01 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +1008176 103 2020-02-02 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1008177 103 2020-02-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1008178 103 2020-02-04 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1008179 103 2020-02-05 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1008180 103 2020-02-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1008181 103 2020-02-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1008182 103 2020-02-08 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +1008183 103 2020-02-09 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1008184 103 2020-02-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1008185 103 2020-02-11 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1008186 103 2020-02-12 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1008187 103 2020-02-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1008188 103 2020-02-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1008189 103 2020-02-15 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +1008190 103 2020-02-16 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1008191 103 2020-02-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1008192 103 2020-02-18 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1083769 135 2020-05-03 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1083770 135 2020-05-04 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1083771 135 2020-05-05 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1083772 135 2020-05-06 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1083773 135 2020-05-07 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1083774 135 2020-05-08 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1083775 135 2020-05-09 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +1083776 135 2020-05-10 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1083777 135 2020-05-11 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1083778 135 2020-05-12 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1083779 135 2020-05-13 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1083780 135 2020-05-14 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1083781 135 2020-05-15 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1083782 135 2020-05-16 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +1085517 130 2020-05-26 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085518 130 2020-05-27 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085519 130 2020-05-28 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085682 146 2020-07-18 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 06:40:00 +1083799 135 2020-06-02 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1083800 135 2020-06-03 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1083801 135 2020-06-04 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1083802 135 2020-06-05 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1083803 135 2020-06-06 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +1083804 135 2020-06-07 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1083805 135 2020-06-08 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1083806 135 2020-06-09 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1083807 135 2020-06-10 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1083808 135 2020-06-11 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1083809 135 2020-06-12 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1083810 135 2020-06-13 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +1083811 135 2020-06-14 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1083812 127 2020-04-20 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085539 129 2020-04-22 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085540 129 2020-04-23 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085541 129 2020-04-24 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085542 129 2020-04-25 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +1083828 127 2020-05-06 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1083829 127 2020-05-07 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1083830 127 2020-05-08 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1083831 127 2020-05-09 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +1083832 127 2020-05-10 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1083833 127 2020-05-11 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1083834 127 2020-05-12 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1083835 127 2020-05-13 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1083836 127 2020-05-14 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1083837 127 2020-05-15 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1083838 127 2020-05-16 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +1083839 127 2020-05-17 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1083840 127 2020-05-18 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1083841 127 2020-05-19 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085547 129 2020-04-30 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085548 129 2020-05-01 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085549 129 2020-05-02 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +1085565 129 2020-05-18 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1083857 127 2020-06-04 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1083858 127 2020-06-05 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1083859 127 2020-06-06 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +1083860 127 2020-06-07 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1083861 127 2020-06-08 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1083862 127 2020-06-09 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1083863 127 2020-06-10 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1083864 127 2020-06-11 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1083865 127 2020-06-12 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1083866 127 2020-06-13 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +1083867 127 2020-06-14 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1083868 149 2020-04-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1083869 149 2020-04-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1083870 149 2020-04-22 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1085570 129 2020-05-23 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +1085571 129 2020-05-24 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1085572 129 2020-05-25 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085573 129 2020-05-26 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085689 146 2020-07-25 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 06:40:00 +1083886 149 2020-05-08 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1083887 149 2020-05-09 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +1083888 149 2020-05-10 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1083889 149 2020-05-11 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1083890 149 2020-05-12 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1083891 149 2020-05-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1083892 149 2020-05-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1083893 149 2020-05-15 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1083894 149 2020-05-16 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +1083895 149 2020-05-17 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1083896 149 2020-05-18 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1083897 149 2020-05-19 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1083898 149 2020-05-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1083899 149 2020-05-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1085593 143 2020-04-20 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085594 143 2020-04-21 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085595 143 2020-04-22 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085690 146 2020-07-26 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1083915 149 2020-06-06 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +1083916 149 2020-06-07 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1083917 149 2020-06-08 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1083918 149 2020-06-09 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1083919 149 2020-06-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1083920 149 2020-06-11 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1083921 149 2020-06-12 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1083922 149 2020-06-13 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +1083923 149 2020-06-14 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1083924 103 2020-04-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1083925 103 2020-04-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1083926 103 2020-04-22 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1083927 103 2020-04-23 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1083928 103 2020-04-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1085601 143 2020-04-28 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085602 143 2020-04-29 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085603 143 2020-04-30 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085604 143 2020-05-01 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1083945 103 2020-05-11 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1083946 103 2020-05-12 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1083947 103 2020-05-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1083948 103 2020-05-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1083949 103 2020-05-15 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1083950 103 2020-05-16 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +1083951 103 2020-05-17 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1083952 103 2020-05-18 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1083953 103 2020-05-19 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1083954 103 2020-05-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1083955 103 2020-05-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1083956 103 2020-05-22 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1083957 103 2020-05-23 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +1083958 103 2020-05-24 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1085623 143 2020-05-20 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085624 143 2020-05-21 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085625 143 2020-05-22 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085626 143 2020-05-23 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +1083974 103 2020-06-09 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1083975 103 2020-06-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1083976 103 2020-06-11 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1083977 103 2020-06-12 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1083978 103 2020-06-13 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +1083979 103 2020-06-14 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1083980 121 2020-04-20 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1083981 121 2020-04-21 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1083982 121 2020-04-22 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1083983 121 2020-04-23 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1083984 121 2020-04-24 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1083985 121 2020-04-25 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +1083986 121 2020-04-26 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1083987 121 2020-04-27 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085631 143 2020-05-28 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085632 143 2020-05-29 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085633 143 2020-05-30 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +1085634 143 2020-05-31 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1085711 115 2020-06-21 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1084003 121 2020-05-13 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1084004 121 2020-05-14 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1084005 121 2020-05-15 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1084006 121 2020-05-16 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +1084007 121 2020-05-17 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1084008 121 2020-05-18 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1084009 121 2020-05-19 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1084010 121 2020-05-20 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1084011 121 2020-05-21 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1084012 121 2020-05-22 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1084013 121 2020-05-23 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +1084014 121 2020-05-24 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1084015 121 2020-05-25 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1084016 121 2020-05-26 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085653 146 2020-06-19 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1085654 146 2020-06-20 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 06:40:00 +1085655 146 2020-06-21 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1085656 146 2020-06-22 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1084032 121 2020-06-11 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1084033 121 2020-06-12 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1084034 121 2020-06-13 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +1084035 121 2020-06-14 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1084036 117 2020-05-01 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1084037 117 2020-05-02 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +1084038 117 2020-05-03 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1084039 117 2020-05-04 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1084040 117 2020-05-05 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1084041 117 2020-05-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1084042 117 2020-05-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1084043 117 2020-05-08 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1084044 117 2020-05-09 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +1084045 117 2020-05-10 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1084046 117 2020-05-11 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1085661 146 2020-06-27 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 06:40:00 +1085662 146 2020-06-28 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1085663 146 2020-06-29 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1085664 146 2020-06-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1084061 117 2020-05-26 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1084062 117 2020-05-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1084063 117 2020-05-28 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1084064 117 2020-05-29 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1084065 117 2020-05-30 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +1084066 117 2020-05-31 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1084067 117 2020-06-01 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1084068 117 2020-06-02 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1084069 117 2020-06-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1084070 117 2020-06-04 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1084071 117 2020-06-05 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1084072 117 2020-06-06 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +1084073 117 2020-06-07 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1084074 117 2020-06-08 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1085683 146 2020-07-19 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1085684 146 2020-07-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1085685 146 2020-07-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1085686 146 2020-07-22 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1084090 125 2020-04-29 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 03:20:00 +1084091 125 2020-04-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 03:20:00 +1084092 125 2020-05-01 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 03:20:00 +1084093 125 2020-05-02 \N \N \N \N \N 00:00:00 03:20:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 03:20:00 +1084094 125 2020-05-03 \N \N \N \N \N 00:00:00 03:20:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1084095 125 2020-05-04 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 03:20:00 +1084096 125 2020-05-05 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 03:20:00 +1084097 125 2020-05-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 03:20:00 +1084098 125 2020-05-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 03:20:00 +1084099 125 2020-05-08 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 03:20:00 +1084100 125 2020-05-09 \N \N \N \N \N 00:00:00 03:20:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 03:20:00 +1084101 125 2020-05-10 \N \N \N \N \N 00:00:00 03:20:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1084102 125 2020-05-11 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 03:20:00 +1084103 125 2020-05-12 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 03:20:00 +1085691 146 2020-07-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1085692 146 2020-07-28 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1085693 146 2020-07-29 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1085694 146 2020-07-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1084119 125 2020-05-28 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 03:20:00 +1084120 125 2020-05-29 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 03:20:00 +1084121 125 2020-05-30 \N \N \N \N \N 00:00:00 03:20:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 03:20:00 +1084122 125 2020-05-31 \N \N \N \N \N 00:00:00 03:20:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1084123 125 2020-06-01 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 03:20:00 +1084124 125 2020-06-02 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 03:20:00 +1084125 125 2020-06-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 03:20:00 +1084126 125 2020-06-04 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 03:20:00 +1084127 125 2020-06-05 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 03:20:00 +1084128 125 2020-06-06 \N \N \N \N \N 00:00:00 03:20:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 03:20:00 +1084129 125 2020-06-07 \N \N \N \N \N 00:00:00 03:20:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1084130 125 2020-06-08 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 03:20:00 +1084131 125 2020-06-09 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 03:20:00 +1084132 125 2020-06-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 03:20:00 +1085713 115 2020-06-23 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1085714 115 2020-06-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1085715 115 2020-06-25 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1085719 115 2020-06-29 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1084148 119 2020-05-01 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1084149 119 2020-05-02 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +1084150 119 2020-05-03 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1084151 119 2020-05-04 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1084152 119 2020-05-05 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1084153 119 2020-05-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1084154 119 2020-05-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1084155 119 2020-05-08 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1084156 119 2020-05-09 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +1084157 119 2020-05-10 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1084158 119 2020-05-11 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1084159 119 2020-05-12 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1084160 119 2020-05-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1084161 119 2020-05-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1085720 115 2020-06-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1085721 115 2020-07-01 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1085722 115 2020-07-02 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1085723 115 2020-07-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1084178 119 2020-05-31 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1084179 119 2020-06-01 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1084180 119 2020-06-02 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1084181 119 2020-06-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1084182 119 2020-06-04 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1084183 119 2020-06-05 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1084184 119 2020-06-06 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +1084185 119 2020-06-07 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1084186 119 2020-06-08 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1084187 119 2020-06-09 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1084188 119 2020-06-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1084189 119 2020-06-11 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1084190 119 2020-06-12 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1084191 119 2020-06-13 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +1084192 119 2020-06-14 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1085740 115 2020-07-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1085741 115 2020-07-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1085742 115 2020-07-22 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086165 117 2020-07-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1084207 113 2020-05-04 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1084208 113 2020-05-05 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1084209 113 2020-05-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1084210 113 2020-05-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1084211 113 2020-05-08 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1084212 113 2020-05-09 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +1084213 113 2020-05-10 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1084214 113 2020-05-11 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1084215 113 2020-05-12 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1084216 113 2020-05-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1084217 113 2020-05-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1084218 113 2020-05-15 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1084219 113 2020-05-16 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +1084220 113 2020-05-17 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1085743 115 2020-07-23 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1085744 115 2020-07-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1085745 115 2020-07-25 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 06:40:00 +1085746 115 2020-07-26 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1084236 113 2020-06-02 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1084237 113 2020-06-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1084238 113 2020-06-04 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1084239 113 2020-06-05 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1084240 113 2020-06-06 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +1084241 113 2020-06-07 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1084242 113 2020-06-08 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1084243 113 2020-06-09 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1084244 113 2020-06-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1084245 113 2020-06-11 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1084246 113 2020-06-12 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1084247 113 2020-06-13 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +1084248 113 2020-06-14 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1084249 147 2020-04-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1085748 115 2020-07-28 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1085749 115 2020-07-29 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1085750 115 2020-07-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1085751 115 2020-07-31 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1084265 147 2020-05-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1084266 147 2020-05-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1084267 147 2020-05-08 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1084268 147 2020-05-09 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +1084269 147 2020-05-10 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1084270 147 2020-05-11 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1084271 147 2020-05-12 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1084272 147 2020-05-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1084273 147 2020-05-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1084274 147 2020-05-15 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1084275 147 2020-05-16 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +1084276 147 2020-05-17 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1084277 147 2020-05-18 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1084278 147 2020-05-19 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1085752 115 2020-08-01 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 06:40:00 +1085753 115 2020-08-02 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1085768 114 2020-06-22 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1085769 114 2020-06-23 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1084294 147 2020-06-04 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1084295 147 2020-06-05 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1084296 147 2020-06-06 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +1084297 147 2020-06-07 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1084298 147 2020-06-08 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1084299 147 2020-06-09 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1084300 147 2020-06-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1084301 147 2020-06-11 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1084302 147 2020-06-12 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1084303 147 2020-06-13 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +1084304 147 2020-06-14 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1084305 131 2020-04-20 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 04:00:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 04:00:00 +1084306 131 2020-04-21 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 04:00:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 04:00:00 +1084307 131 2020-04-22 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 04:00:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 04:00:00 +1085771 114 2020-06-25 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1085772 114 2020-06-26 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1085773 114 2020-06-27 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 06:40:00 +1085774 114 2020-06-28 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1084323 131 2020-05-08 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 04:00:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 04:00:00 +1084324 131 2020-05-09 \N \N \N \N \N 00:00:00 04:00:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1084325 131 2020-05-10 \N \N \N \N \N 00:00:00 04:00:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1084326 131 2020-05-11 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 04:00:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 04:00:00 +1084327 131 2020-05-12 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 04:00:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 04:00:00 +1084328 131 2020-05-13 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 04:00:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 04:00:00 +1084329 131 2020-05-14 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 04:00:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 04:00:00 +1084330 131 2020-05-15 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 04:00:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 04:00:00 +1084331 131 2020-05-16 \N \N \N \N \N 00:00:00 04:00:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1084332 131 2020-05-17 \N \N \N \N \N 00:00:00 04:00:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1084333 131 2020-05-18 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 04:00:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 04:00:00 +1084334 131 2020-05-19 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 04:00:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 04:00:00 +1084335 131 2020-05-20 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 04:00:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 04:00:00 +1084336 131 2020-05-21 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 04:00:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 04:00:00 +1085776 114 2020-06-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1085777 114 2020-07-01 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1085778 114 2020-07-02 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1085779 114 2020-07-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1084353 131 2020-06-07 \N \N \N \N \N 00:00:00 04:00:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1084354 131 2020-06-08 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 04:00:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 04:00:00 +1084355 131 2020-06-09 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 04:00:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 04:00:00 +1084356 131 2020-06-10 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 04:00:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 04:00:00 +1084357 131 2020-06-11 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 04:00:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 04:00:00 +1084358 131 2020-06-12 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 04:00:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 04:00:00 +1084359 131 2020-06-13 \N \N \N \N \N 00:00:00 04:00:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1084360 131 2020-06-14 \N \N \N \N \N 00:00:00 04:00:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1084361 104 2020-04-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:00:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:00:00 +1084362 104 2020-04-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:00:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:00:00 +1084363 104 2020-04-22 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:00:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:00:00 +1084364 104 2020-04-23 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:00:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:00:00 +1084365 104 2020-04-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:00:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:00:00 +1084366 104 2020-04-25 \N \N \N \N \N 00:00:00 06:00:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1084367 104 2020-04-26 \N \N \N \N \N 00:00:00 06:00:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1085781 114 2020-07-05 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1085782 114 2020-07-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1085797 114 2020-07-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1085798 114 2020-07-22 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1084382 104 2020-05-11 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:00:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:00:00 +1084383 104 2020-05-12 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:00:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:00:00 +1084384 104 2020-05-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:00:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:00:00 +1084385 104 2020-05-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:00:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:00:00 +1084386 104 2020-05-15 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:00:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:00:00 +1084387 104 2020-05-16 \N \N \N \N \N 00:00:00 06:00:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1084388 104 2020-05-17 \N \N \N \N \N 00:00:00 06:00:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1084389 104 2020-05-18 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:00:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:00:00 +1084390 104 2020-05-19 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:00:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:00:00 +1084391 104 2020-05-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:00:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:00:00 +1084392 104 2020-05-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:00:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:00:00 +1084393 104 2020-05-22 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:00:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:00:00 +1084394 104 2020-05-23 \N \N \N \N \N 00:00:00 06:00:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1084395 104 2020-05-24 \N \N \N \N \N 00:00:00 06:00:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1085799 114 2020-07-23 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1085800 114 2020-07-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1085801 114 2020-07-25 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 06:40:00 +1085802 114 2020-07-26 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1084411 104 2020-06-09 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:00:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:00:00 +1084412 104 2020-06-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:00:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:00:00 +1084413 104 2020-06-11 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:00:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:00:00 +1084414 104 2020-06-12 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:00:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:00:00 +1084415 104 2020-06-13 \N \N \N \N \N 00:00:00 06:00:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1084416 104 2020-06-14 \N \N \N \N \N 00:00:00 06:00:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1084417 151 2020-04-20 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1084418 151 2020-04-21 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1084419 151 2020-04-22 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1084420 151 2020-04-23 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1084421 151 2020-04-24 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1084422 151 2020-04-25 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +1084423 151 2020-04-26 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1084424 151 2020-04-27 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085804 114 2020-07-28 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1085805 114 2020-07-29 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1085806 114 2020-07-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1085807 114 2020-07-31 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1010296 121 2020-01-01 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1010297 121 2020-01-02 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1010298 121 2020-01-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1084440 151 2020-05-13 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1084441 151 2020-05-14 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1084442 151 2020-05-15 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1084443 151 2020-05-16 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +1084444 151 2020-05-17 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1084445 151 2020-05-18 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1084446 151 2020-05-19 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1084447 151 2020-05-20 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1084448 151 2020-05-21 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1084449 151 2020-05-22 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1084450 151 2020-05-23 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +1084451 151 2020-05-24 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1085809 114 2020-08-02 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1085810 114 2020-08-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1085811 114 2020-08-04 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1010299 121 2020-01-04 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +1010300 121 2020-01-05 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1010301 121 2020-01-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1010302 121 2020-01-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1010303 121 2020-01-08 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1010304 121 2020-01-09 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1010305 121 2020-01-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1010306 121 2020-01-11 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +1010307 121 2020-01-12 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1010308 121 2020-01-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1010309 121 2020-01-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1010310 121 2020-01-15 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1010311 121 2020-01-16 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1084465 151 2020-06-07 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1084466 151 2020-06-08 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1084467 151 2020-06-09 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1084468 151 2020-06-10 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1084469 151 2020-06-11 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1086188 117 2020-07-29 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1084474 138 2020-04-21 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1084475 138 2020-04-22 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1084476 138 2020-04-23 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1084477 138 2020-04-24 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1084478 138 2020-04-25 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +1084479 138 2020-04-26 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1084480 138 2020-04-27 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1084481 138 2020-04-28 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1084482 138 2020-04-29 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1084483 138 2020-04-30 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1084484 138 2020-05-01 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1084485 138 2020-05-02 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +1084486 138 2020-05-03 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1084487 138 2020-05-04 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085827 108 2020-06-25 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1085828 108 2020-06-26 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1085829 108 2020-06-27 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 06:40:00 +1085830 108 2020-06-28 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1084503 138 2020-05-20 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1084504 138 2020-05-21 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1084505 138 2020-05-22 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1084506 138 2020-05-23 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +1084507 138 2020-05-24 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1084508 138 2020-05-25 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1084509 138 2020-05-26 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1084510 138 2020-05-27 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1084511 138 2020-05-28 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1084512 138 2020-05-29 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1084513 138 2020-05-30 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +1084514 138 2020-05-31 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1084515 138 2020-06-01 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1084516 138 2020-06-02 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085832 108 2020-06-30 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1085833 108 2020-07-01 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1085834 108 2020-07-02 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1085835 108 2020-07-03 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1084532 105 2020-04-23 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1084533 105 2020-04-24 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1084534 105 2020-04-25 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +1084535 105 2020-04-26 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1084536 105 2020-04-27 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1084537 105 2020-04-28 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1084538 105 2020-04-29 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1084539 105 2020-04-30 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1084540 105 2020-05-01 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1084541 105 2020-05-02 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +1084542 105 2020-05-03 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1084543 105 2020-05-04 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1084544 105 2020-05-05 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1084545 105 2020-05-06 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085837 108 2020-07-05 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1085838 108 2020-07-06 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1085839 108 2020-07-07 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1085840 108 2020-07-08 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1084561 105 2020-05-22 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1084562 105 2020-05-23 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +1084563 105 2020-05-24 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1084564 105 2020-05-25 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1084565 105 2020-05-26 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1084566 105 2020-05-27 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1084567 105 2020-05-28 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1084568 105 2020-05-29 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1084569 105 2020-05-30 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +1084570 105 2020-05-31 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1084571 105 2020-06-01 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1084572 105 2020-06-02 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1084573 105 2020-06-03 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1084574 105 2020-06-04 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085856 108 2020-07-24 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1085857 108 2020-07-25 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 06:40:00 +1085858 108 2020-07-26 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1085859 108 2020-07-27 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1084591 134 2020-04-26 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1084592 134 2020-04-27 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1084593 134 2020-04-28 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1084594 134 2020-04-29 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1084595 134 2020-04-30 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1084596 134 2020-05-01 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1084597 134 2020-05-02 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +1084598 134 2020-05-03 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1084599 134 2020-05-04 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1084600 134 2020-05-05 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1084601 134 2020-05-06 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1084602 134 2020-05-07 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1084603 134 2020-05-08 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1084604 134 2020-05-09 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +1084605 134 2020-05-10 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1085861 108 2020-07-29 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1085862 108 2020-07-30 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1085863 108 2020-07-31 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1084620 134 2020-05-25 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1084621 134 2020-05-26 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1084622 134 2020-05-27 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1084623 134 2020-05-28 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1084624 134 2020-05-29 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1084625 134 2020-05-30 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +1084626 134 2020-05-31 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1084627 134 2020-06-01 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1084628 134 2020-06-02 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1084629 134 2020-06-03 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1084630 134 2020-06-04 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1084631 134 2020-06-05 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1084632 134 2020-06-06 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +1084633 134 2020-06-07 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1085865 108 2020-08-02 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1085866 108 2020-08-03 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1085867 108 2020-08-04 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1085868 108 2020-08-05 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1086193 117 2020-08-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1084649 102 2020-04-28 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1084650 102 2020-04-29 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1084651 102 2020-04-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1084652 102 2020-05-01 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1084653 102 2020-05-02 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +1084654 102 2020-05-03 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1084655 102 2020-05-04 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1084656 102 2020-05-05 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1084657 102 2020-05-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1084658 102 2020-05-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1084659 102 2020-05-08 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1084660 102 2020-05-09 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +1084661 102 2020-05-10 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1084662 102 2020-05-11 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1085869 108 2020-08-06 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1085875 135 2020-06-17 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1085876 135 2020-06-18 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1085877 135 2020-06-19 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1084678 102 2020-05-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1084679 102 2020-05-28 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1084680 102 2020-05-29 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1084681 102 2020-05-30 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +1084682 102 2020-05-31 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1084683 102 2020-06-01 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1084684 102 2020-06-02 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1084685 102 2020-06-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1084686 102 2020-06-04 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1084687 102 2020-06-05 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1084688 102 2020-06-06 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +1084689 102 2020-06-07 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1084690 102 2020-06-08 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1084691 102 2020-06-09 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1085879 135 2020-06-21 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1085880 135 2020-06-22 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1085881 135 2020-06-23 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1085896 135 2020-07-08 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1086198 117 2020-08-08 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 06:40:00 +1084707 109 2020-04-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1084708 109 2020-05-01 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1084709 109 2020-05-02 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +1084710 109 2020-05-03 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1084711 109 2020-05-04 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1084712 109 2020-05-05 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1084713 109 2020-05-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1084714 109 2020-05-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1084715 109 2020-05-08 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1084716 109 2020-05-09 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +1084717 109 2020-05-10 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1084718 109 2020-05-11 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1084719 109 2020-05-12 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1084720 109 2020-05-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1085898 135 2020-07-10 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1085899 135 2020-07-11 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 06:40:00 +1085900 135 2020-07-12 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1085901 135 2020-07-13 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1086229 125 2020-07-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 03:20:00 +1086248 125 2020-08-02 \N \N \N \N \N 00:00:00 03:20:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1084736 109 2020-05-29 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1084737 109 2020-05-30 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +1084738 109 2020-05-31 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1084739 109 2020-06-01 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1084740 109 2020-06-02 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1084741 109 2020-06-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1084742 109 2020-06-04 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1084743 109 2020-06-05 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1084744 109 2020-06-06 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +1084745 109 2020-06-07 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1084746 109 2020-06-08 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1084747 109 2020-06-09 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1084748 109 2020-06-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1084749 109 2020-06-11 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1085902 135 2020-07-14 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1085903 135 2020-07-15 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1085904 135 2020-07-16 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1085905 135 2020-07-17 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1084766 118 2020-05-03 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1084767 118 2020-05-04 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1084768 118 2020-05-05 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1084769 118 2020-05-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1084770 118 2020-05-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1084771 118 2020-05-08 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1084772 118 2020-05-09 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +1084773 118 2020-05-10 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1084774 118 2020-05-11 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1084775 118 2020-05-12 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1084776 118 2020-05-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1084777 118 2020-05-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1084778 118 2020-05-15 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1084779 118 2020-05-16 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +1084780 118 2020-05-17 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1085907 135 2020-07-19 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1085908 135 2020-07-20 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1085909 135 2020-07-21 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1084795 118 2020-06-01 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1084796 118 2020-06-02 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1084797 118 2020-06-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1084798 118 2020-06-04 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1084799 118 2020-06-05 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1084800 118 2020-06-06 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +1084801 118 2020-06-07 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1084802 118 2020-06-08 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1084803 118 2020-06-09 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1084804 118 2020-06-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1084805 118 2020-06-11 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1084806 118 2020-06-12 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1084807 118 2020-06-13 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +1084808 118 2020-06-14 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1085925 135 2020-08-06 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1085926 135 2020-08-07 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1085927 135 2020-08-08 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 06:40:00 +1085928 135 2020-08-09 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1086258 119 2020-06-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086277 119 2020-07-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1084824 133 2020-05-05 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1084825 133 2020-05-06 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1084826 133 2020-05-07 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1084827 133 2020-05-08 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1084828 133 2020-05-09 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +1084829 133 2020-05-10 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1084830 133 2020-05-11 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1084831 133 2020-05-12 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1084832 133 2020-05-13 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1084833 133 2020-05-14 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1084834 133 2020-05-15 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1084835 133 2020-05-16 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +1084836 133 2020-05-17 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1084837 133 2020-05-18 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085929 127 2020-06-15 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1085930 127 2020-06-16 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1085931 127 2020-06-17 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1085932 127 2020-06-18 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1084853 133 2020-06-03 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1084854 133 2020-06-04 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1084855 133 2020-06-05 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1084856 133 2020-06-06 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +1084857 133 2020-06-07 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1084858 133 2020-06-08 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1084859 133 2020-06-09 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1084860 133 2020-06-10 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1084861 133 2020-06-11 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1084862 133 2020-06-12 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1084863 133 2020-06-13 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +1084864 133 2020-06-14 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1084865 111 2020-04-20 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1084866 111 2020-04-21 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085933 127 2020-06-19 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1085934 127 2020-06-20 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 06:40:00 +1085935 127 2020-06-21 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1085936 127 2020-06-22 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1084882 111 2020-05-07 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1084883 111 2020-05-08 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1084884 111 2020-05-09 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +1084885 111 2020-05-10 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1084886 111 2020-05-11 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1084887 111 2020-05-12 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1084888 111 2020-05-13 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1084889 111 2020-05-14 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1084890 111 2020-05-15 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1084891 111 2020-05-16 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +1084892 111 2020-05-17 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1084893 111 2020-05-18 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1084894 111 2020-05-19 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1084895 111 2020-05-20 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085938 127 2020-06-24 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1085939 127 2020-06-25 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1085954 127 2020-07-10 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1085955 127 2020-07-11 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 06:40:00 +1084911 111 2020-06-05 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1084912 111 2020-06-06 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +1084913 111 2020-06-07 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1084914 111 2020-06-08 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1084915 111 2020-06-09 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1084916 111 2020-06-10 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1084917 111 2020-06-11 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1084918 111 2020-06-12 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1084919 111 2020-06-13 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +1084920 111 2020-06-14 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1084921 128 2020-04-20 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1084922 128 2020-04-21 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1084923 128 2020-04-22 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1084924 128 2020-04-23 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085957 127 2020-07-13 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1085958 127 2020-07-14 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1085959 127 2020-07-15 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1084941 128 2020-05-10 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1084942 128 2020-05-11 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1084943 128 2020-05-12 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1084944 128 2020-05-13 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1084945 128 2020-05-14 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1084946 128 2020-05-15 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1084947 128 2020-05-16 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +1084948 128 2020-05-17 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1084949 128 2020-05-18 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1084950 128 2020-05-19 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1084951 128 2020-05-20 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1084952 128 2020-05-21 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1084953 128 2020-05-22 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1084954 128 2020-05-23 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +1084955 128 2020-05-24 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1085962 127 2020-07-18 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 06:40:00 +1085963 127 2020-07-19 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1085964 127 2020-07-20 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1085965 127 2020-07-21 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1084970 128 2020-06-08 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1084971 128 2020-06-09 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1084972 128 2020-06-10 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1084973 128 2020-06-11 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1084974 128 2020-06-12 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1084975 128 2020-06-13 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +1084976 128 2020-06-14 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1084977 142 2020-04-20 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1084978 142 2020-04-21 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1084979 142 2020-04-22 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1084980 142 2020-04-23 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1084981 142 2020-04-24 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1084982 142 2020-04-25 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +1084983 142 2020-04-26 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1085966 127 2020-07-22 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1085967 127 2020-07-23 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1085968 127 2020-07-24 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1085983 127 2020-08-08 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 06:40:00 +1084999 142 2020-05-12 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085000 142 2020-05-13 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085001 142 2020-05-14 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085002 142 2020-05-15 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085003 142 2020-05-16 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +1085004 142 2020-05-17 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1085005 142 2020-05-18 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085006 142 2020-05-19 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085007 142 2020-05-20 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085008 142 2020-05-21 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085009 142 2020-05-22 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085010 142 2020-05-23 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +1085011 142 2020-05-24 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1085012 142 2020-05-25 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085985 149 2020-06-15 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1085986 149 2020-06-16 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1085987 149 2020-06-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1085028 142 2020-06-10 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085029 142 2020-06-11 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085030 142 2020-06-12 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085031 142 2020-06-13 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +1085032 142 2020-06-14 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1085033 136 2020-04-20 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085034 136 2020-04-21 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085035 136 2020-04-22 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085036 136 2020-04-23 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085037 136 2020-04-24 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085038 136 2020-04-25 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +1085039 136 2020-04-26 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1085040 136 2020-04-27 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085041 136 2020-04-28 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085990 149 2020-06-20 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 06:40:00 +1085991 149 2020-06-21 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1085992 149 2020-06-22 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1085993 149 2020-06-23 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1012502 125 2019-12-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 03:20:00 +1012503 125 2019-12-31 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 03:20:00 +1085057 136 2020-05-14 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085058 136 2020-05-15 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085059 136 2020-05-16 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +1085060 136 2020-05-17 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1085061 136 2020-05-18 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085062 136 2020-05-19 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085063 136 2020-05-20 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085064 136 2020-05-21 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085065 136 2020-05-22 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085066 136 2020-05-23 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +1085067 136 2020-05-24 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1085068 136 2020-05-25 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085069 136 2020-05-26 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085995 149 2020-06-25 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1085996 149 2020-06-26 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1085997 149 2020-06-27 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 06:40:00 +1085083 136 2020-06-09 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085084 136 2020-06-10 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085085 136 2020-06-11 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085086 136 2020-06-12 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085087 136 2020-06-13 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +1085088 136 2020-06-14 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1085089 139 2020-04-20 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085090 139 2020-04-21 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085091 139 2020-04-22 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085092 139 2020-04-23 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085093 139 2020-04-24 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085094 139 2020-04-25 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +1085095 139 2020-04-26 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1085096 139 2020-04-27 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1086013 149 2020-07-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086014 149 2020-07-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086015 149 2020-07-15 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086016 149 2020-07-16 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1085112 139 2020-05-13 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085113 139 2020-05-14 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085114 139 2020-05-15 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085115 139 2020-05-16 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +1085116 139 2020-05-17 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1085117 139 2020-05-18 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085118 139 2020-05-19 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085119 139 2020-05-20 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085120 139 2020-05-21 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085121 139 2020-05-22 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085122 139 2020-05-23 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +1085123 139 2020-05-24 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1085124 139 2020-05-25 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085125 139 2020-05-26 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1086017 149 2020-07-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086018 149 2020-07-18 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 06:40:00 +1086019 149 2020-07-19 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1086020 149 2020-07-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1085141 139 2020-06-11 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085142 139 2020-06-12 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085143 139 2020-06-13 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +1085144 139 2020-06-14 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1085145 141 2020-04-20 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085146 141 2020-04-21 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085147 141 2020-04-22 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085148 141 2020-04-23 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085149 141 2020-04-24 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085150 141 2020-04-25 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +1085151 141 2020-04-26 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1085152 141 2020-04-27 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085153 141 2020-04-28 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085154 141 2020-04-29 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1086022 149 2020-07-22 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086023 149 2020-07-23 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086024 149 2020-07-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086025 149 2020-07-25 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 06:40:00 +1012448 125 2020-01-01 08:00:00 12:00:00 \N \N \N 00:00:00 03:20:00 \N \N \N 04:00:00 00:00:00 \N 27 04:00:00 \N 00:00:00 03:20:00 +1012449 125 2020-01-02 \N \N \N \N \N 00:00:00 03:20:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 03:20:00 +1012450 125 2020-01-03 \N \N \N \N \N 00:00:00 03:20:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 03:20:00 +1012451 125 2020-01-04 \N \N \N \N \N 00:00:00 03:20:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 03:20:00 +1012452 125 2020-01-05 \N \N \N \N \N 00:00:00 03:20:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1012453 125 2020-01-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 03:20:00 +1012454 125 2020-01-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 03:20:00 +1012455 125 2020-01-08 08:00:00 12:00:00 \N \N \N 00:00:00 03:20:00 \N \N \N 04:00:00 00:00:00 \N 27 04:00:00 \N 00:00:00 03:20:00 +1012456 125 2020-01-09 \N \N \N \N \N 00:00:00 03:20:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 03:20:00 +1012457 125 2020-01-10 \N \N \N \N \N 00:00:00 03:20:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 03:20:00 +1012458 125 2020-01-11 \N \N \N \N \N 00:00:00 03:20:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 03:20:00 +1012459 125 2020-01-12 \N \N \N \N \N 00:00:00 03:20:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1012460 125 2020-01-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 03:20:00 +1012461 125 2020-01-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 03:20:00 +1012462 125 2020-01-15 08:00:00 12:00:00 \N \N \N 00:00:00 03:20:00 \N \N \N 04:00:00 00:00:00 \N 27 04:00:00 \N 00:00:00 03:20:00 +1012463 125 2020-01-16 \N \N \N \N \N 00:00:00 03:20:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 03:20:00 +1012464 125 2020-01-17 \N \N \N \N \N 00:00:00 03:20:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 03:20:00 +1012465 125 2020-01-18 \N \N \N \N \N 00:00:00 03:20:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 03:20:00 +1012466 125 2020-01-19 \N \N \N \N \N 00:00:00 03:20:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1086027 149 2020-07-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1012479 125 2020-02-01 \N \N \N \N \N 00:00:00 03:20:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 03:20:00 +1012480 125 2020-02-02 \N \N \N \N \N 00:00:00 03:20:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1012481 125 2020-02-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 03:20:00 +1012482 125 2020-02-04 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 03:20:00 +1012483 125 2020-02-05 08:00:00 12:00:00 \N \N \N 00:00:00 03:20:00 \N \N \N 04:00:00 00:00:00 \N 27 04:00:00 \N 00:00:00 03:20:00 +1012484 125 2020-02-06 \N \N \N \N \N 00:00:00 03:20:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 03:20:00 +1012485 125 2020-02-07 \N \N \N \N \N 00:00:00 03:20:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 03:20:00 +1012486 125 2020-02-08 \N \N \N \N \N 00:00:00 03:20:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 03:20:00 +1012487 125 2020-02-09 \N \N \N \N \N 00:00:00 03:20:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1012488 125 2020-02-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 03:20:00 +1012489 125 2020-02-11 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 03:20:00 +1012490 125 2020-02-12 08:00:00 12:00:00 \N \N \N 00:00:00 03:20:00 \N \N \N 04:00:00 00:00:00 \N 27 04:00:00 \N 00:00:00 03:20:00 +1012491 125 2020-02-13 \N \N \N \N \N 00:00:00 03:20:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 03:20:00 +1012492 125 2020-02-14 \N \N \N \N \N 00:00:00 03:20:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 03:20:00 +1012493 125 2020-02-15 \N \N \N \N \N 00:00:00 03:20:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 03:20:00 +1012494 125 2020-02-16 \N \N \N \N \N 00:00:00 03:20:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1012495 125 2020-02-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 03:20:00 +1012496 125 2020-02-18 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 03:20:00 +1086043 103 2020-06-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086044 103 2020-06-18 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1085170 141 2020-05-15 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085171 141 2020-05-16 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +1085172 141 2020-05-17 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1085173 141 2020-05-18 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085174 141 2020-05-19 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085175 141 2020-05-20 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085176 141 2020-05-21 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085177 141 2020-05-22 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085178 141 2020-05-23 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +1085179 141 2020-05-24 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1085180 141 2020-05-25 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085181 141 2020-05-26 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085182 141 2020-05-27 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085183 141 2020-05-28 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1086045 103 2020-06-19 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086046 103 2020-06-20 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 06:40:00 +1086047 103 2020-06-21 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1086048 103 2020-06-22 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1085200 141 2020-06-14 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1085201 122 2020-04-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1085202 122 2020-04-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1085203 122 2020-04-22 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1085204 122 2020-04-23 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1085205 122 2020-04-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1085206 122 2020-04-25 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +1085207 122 2020-04-26 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1085208 122 2020-04-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1085209 122 2020-04-28 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1085210 122 2020-04-29 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1085211 122 2020-04-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1085212 122 2020-05-01 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1085213 122 2020-05-02 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +1085214 122 2020-05-03 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1086050 103 2020-06-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086051 103 2020-06-25 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086052 103 2020-06-26 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1085229 122 2020-05-18 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1085230 122 2020-05-19 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1085231 122 2020-05-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1085232 122 2020-05-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1085233 122 2020-05-22 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1085234 122 2020-05-23 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +1085235 122 2020-05-24 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1085236 122 2020-05-25 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1085237 122 2020-05-26 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1085238 122 2020-05-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1085239 122 2020-05-28 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1085240 122 2020-05-29 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1085241 122 2020-05-30 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +1085242 122 2020-05-31 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1086054 103 2020-06-28 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1086055 103 2020-06-29 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086056 103 2020-06-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086071 103 2020-07-15 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1085258 106 2020-04-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 04:10:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 04:10:00 +1085259 106 2020-04-22 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 04:10:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 04:10:00 +1085260 106 2020-04-23 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 04:10:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 04:10:00 +1085261 106 2020-04-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 04:10:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 \N +1085262 106 2020-04-25 \N \N \N \N \N 00:00:00 04:10:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1085263 106 2020-04-26 \N \N \N \N \N 00:00:00 04:10:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1085264 106 2020-04-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 04:10:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 04:10:00 +1085265 106 2020-04-28 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 04:10:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 04:10:00 +1085266 106 2020-04-29 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 04:10:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 04:10:00 +1085267 106 2020-04-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 04:10:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 04:10:00 +1085268 106 2020-05-01 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 04:10:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 \N +1085269 106 2020-05-02 \N \N \N \N \N 00:00:00 04:10:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1085270 106 2020-05-03 \N \N \N \N \N 00:00:00 04:10:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1085271 106 2020-05-04 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 04:10:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 04:10:00 +1086073 103 2020-07-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086074 103 2020-07-18 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 06:40:00 +1086075 103 2020-07-19 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1086076 103 2020-07-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086286 119 2020-07-15 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086305 119 2020-08-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086314 113 2020-06-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1085287 106 2020-05-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 04:10:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 04:10:00 +1085288 106 2020-05-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 04:10:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 04:10:00 +1085289 106 2020-05-22 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 04:10:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 \N +1085290 106 2020-05-23 \N \N \N \N \N 00:00:00 04:10:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1085291 106 2020-05-24 \N \N \N \N \N 00:00:00 04:10:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1085292 106 2020-05-25 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 04:10:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 04:10:00 +1085293 106 2020-05-26 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 04:10:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 04:10:00 +1085294 106 2020-05-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 04:10:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 04:10:00 +1085295 106 2020-05-28 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 04:10:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 04:10:00 +1085296 106 2020-05-29 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 04:10:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 \N +1085297 106 2020-05-30 \N \N \N \N \N 00:00:00 04:10:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1085298 106 2020-05-31 \N \N \N \N \N 00:00:00 04:10:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1085299 106 2020-06-01 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 04:10:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 04:10:00 +1085300 106 2020-06-02 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 04:10:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 04:10:00 +1086077 103 2020-07-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086078 103 2020-07-22 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086079 103 2020-07-23 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086080 103 2020-07-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1085316 110 2020-04-23 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1085317 110 2020-04-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1085318 110 2020-04-25 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +1085319 110 2020-04-26 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1085320 110 2020-04-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1085321 110 2020-04-28 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1085322 110 2020-04-29 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1085323 110 2020-04-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1085324 110 2020-05-01 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1085325 110 2020-05-02 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +1085326 110 2020-05-03 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1085327 110 2020-05-04 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1085328 110 2020-05-05 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1085329 110 2020-05-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1086083 103 2020-07-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086084 103 2020-07-28 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086085 103 2020-07-29 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086100 121 2020-06-18 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1085345 110 2020-05-22 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1085346 110 2020-05-23 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +1085347 110 2020-05-24 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1085348 110 2020-05-25 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1085349 110 2020-05-26 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1085350 110 2020-05-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1085351 110 2020-05-28 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1085352 110 2020-05-29 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1085353 110 2020-05-30 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +1085354 110 2020-05-31 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1085355 110 2020-06-01 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1085356 110 2020-06-02 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1085357 110 2020-06-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1085358 110 2020-06-04 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1086101 121 2020-06-19 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1086102 121 2020-06-20 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 06:40:00 +1086103 121 2020-06-21 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1086104 121 2020-06-22 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1085375 145 2020-04-26 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1085376 145 2020-04-27 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085377 145 2020-04-28 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085378 145 2020-04-29 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085379 145 2020-04-30 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085380 145 2020-05-01 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085381 145 2020-05-02 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +1085382 145 2020-05-03 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1085383 145 2020-05-04 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085384 145 2020-05-05 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085385 145 2020-05-06 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085386 145 2020-05-07 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085387 145 2020-05-08 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085388 145 2020-05-09 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +1085389 145 2020-05-10 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1086106 121 2020-06-24 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1086107 121 2020-06-25 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1086108 121 2020-06-26 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1085404 145 2020-05-25 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085405 145 2020-05-26 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085406 145 2020-05-27 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085407 145 2020-05-28 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085408 145 2020-05-29 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085409 145 2020-05-30 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +1085410 145 2020-05-31 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1085411 145 2020-06-01 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085412 145 2020-06-02 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085413 145 2020-06-03 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085414 145 2020-06-04 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085415 145 2020-06-05 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085416 145 2020-06-06 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +1085417 145 2020-06-07 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1086110 121 2020-06-28 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1086111 121 2020-06-29 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1086112 121 2020-06-30 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1086113 121 2020-07-01 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1085433 148 2020-04-28 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1085434 148 2020-04-29 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1085435 148 2020-04-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1085436 148 2020-05-01 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1085437 148 2020-05-02 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +1085438 148 2020-05-03 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1085439 148 2020-05-04 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1085440 148 2020-05-05 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1085441 148 2020-05-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1085442 148 2020-05-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1085443 148 2020-05-08 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1085444 148 2020-05-09 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +1085445 148 2020-05-10 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1085446 148 2020-05-11 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1086129 121 2020-07-17 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1086130 121 2020-07-18 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 06:40:00 +1086131 121 2020-07-19 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1086132 121 2020-07-20 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1086333 113 2020-07-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086342 113 2020-07-15 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1085462 148 2020-05-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1085463 148 2020-05-28 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1085464 148 2020-05-29 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1085465 148 2020-05-30 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +1085466 148 2020-05-31 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1085467 148 2020-06-01 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1085468 148 2020-06-02 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1085469 148 2020-06-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1085470 148 2020-06-04 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1085471 148 2020-06-05 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1085472 148 2020-06-06 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +1085473 148 2020-06-07 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1085474 148 2020-06-08 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1085475 148 2020-06-09 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 01:00:00 06:40:00 +1086133 121 2020-07-21 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1086134 121 2020-07-22 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1086135 121 2020-07-23 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1086136 121 2020-07-24 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1085491 130 2020-04-30 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085492 130 2020-05-01 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085493 130 2020-05-02 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +1085494 130 2020-05-03 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1085495 130 2020-05-04 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085496 130 2020-05-05 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085497 130 2020-05-06 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085498 130 2020-05-07 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085499 130 2020-05-08 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085500 130 2020-05-09 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +1085501 130 2020-05-10 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1085502 130 2020-05-11 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085503 130 2020-05-12 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085504 130 2020-05-13 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1086138 121 2020-07-26 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1086139 121 2020-07-27 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1086140 121 2020-07-28 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1086141 121 2020-07-29 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1085520 130 2020-05-29 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085521 130 2020-05-30 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +1085522 130 2020-05-31 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1085523 130 2020-06-01 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085524 130 2020-06-02 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085525 130 2020-06-03 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085526 130 2020-06-04 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085527 130 2020-06-05 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085528 130 2020-06-06 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +1085529 130 2020-06-07 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1085530 130 2020-06-08 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085531 130 2020-06-09 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085532 130 2020-06-10 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085533 130 2020-06-11 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1086143 121 2020-07-31 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1086158 117 2020-06-29 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086159 117 2020-06-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086160 117 2020-07-01 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1085550 129 2020-05-03 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1085551 129 2020-05-04 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085552 129 2020-05-05 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085553 129 2020-05-06 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085554 129 2020-05-07 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085555 129 2020-05-08 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085556 129 2020-05-09 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +1085557 129 2020-05-10 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1085558 129 2020-05-11 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085559 129 2020-05-12 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085560 129 2020-05-13 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085561 129 2020-05-14 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085562 129 2020-05-15 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085563 129 2020-05-16 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +1085564 129 2020-05-17 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1086161 117 2020-07-02 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086162 117 2020-07-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086163 117 2020-07-04 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 06:40:00 +1085579 129 2020-06-01 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085580 129 2020-06-02 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085581 129 2020-06-03 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085582 129 2020-06-04 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085583 129 2020-06-05 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085584 129 2020-06-06 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +1085585 129 2020-06-07 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1085586 129 2020-06-08 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085587 129 2020-06-09 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085588 129 2020-06-10 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085589 129 2020-06-11 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085590 129 2020-06-12 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085591 129 2020-06-13 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +1085592 129 2020-06-14 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1086166 117 2020-07-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086167 117 2020-07-08 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086168 117 2020-07-09 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086169 117 2020-07-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1085608 143 2020-05-05 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085609 143 2020-05-06 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085610 143 2020-05-07 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085611 143 2020-05-08 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085612 143 2020-05-09 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +1085613 143 2020-05-10 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1085614 143 2020-05-11 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085615 143 2020-05-12 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085616 143 2020-05-13 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085617 143 2020-05-14 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085618 143 2020-05-15 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085619 143 2020-05-16 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +1085620 143 2020-05-17 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1085621 143 2020-05-18 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1086170 117 2020-07-11 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 06:40:00 +1086171 117 2020-07-12 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1086172 117 2020-07-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086187 117 2020-07-28 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1085637 143 2020-06-03 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085638 143 2020-06-04 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085639 143 2020-06-05 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085640 143 2020-06-06 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +1085641 143 2020-06-07 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1085642 143 2020-06-08 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085643 143 2020-06-09 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085644 143 2020-06-10 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085645 143 2020-06-11 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085646 143 2020-06-12 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 30 08:00:00 \N 03:00:00 06:40:00 +1085647 143 2020-06-13 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 06:40:00 +1085648 143 2020-06-14 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 30 00:00:00 \N 00:00:00 \N +1085649 146 2020-06-15 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1085650 146 2020-06-16 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086189 117 2020-07-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086190 117 2020-07-31 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086191 117 2020-08-01 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 06:40:00 +1086192 117 2020-08-02 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1085666 146 2020-07-02 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1085667 146 2020-07-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1085668 146 2020-07-04 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 06:40:00 +1085669 146 2020-07-05 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1085670 146 2020-07-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1085671 146 2020-07-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1085672 146 2020-07-08 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1085673 146 2020-07-09 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1085674 146 2020-07-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1085675 146 2020-07-11 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 06:40:00 +1085676 146 2020-07-12 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1085677 146 2020-07-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1085678 146 2020-07-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1085679 146 2020-07-15 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086194 117 2020-08-04 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086195 117 2020-08-05 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086196 117 2020-08-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086197 117 2020-08-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1085695 146 2020-07-31 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1085696 146 2020-08-01 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 06:40:00 +1085697 146 2020-08-02 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1085698 146 2020-08-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1085699 146 2020-08-04 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1085700 146 2020-08-05 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1085701 146 2020-08-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1085702 146 2020-08-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1085703 146 2020-08-08 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 06:40:00 +1085704 146 2020-08-09 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1085705 115 2020-06-15 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1085706 115 2020-06-16 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1085707 115 2020-06-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1085708 115 2020-06-18 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086199 117 2020-08-09 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1086200 125 2020-06-15 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 03:20:00 +1086201 125 2020-06-16 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 03:20:00 +1086216 125 2020-07-01 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 03:20:00 +1086347 113 2020-07-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1085725 115 2020-07-05 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1085726 115 2020-07-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1085727 115 2020-07-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1085728 115 2020-07-08 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1085729 115 2020-07-09 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1085730 115 2020-07-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1085731 115 2020-07-11 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 06:40:00 +1085732 115 2020-07-12 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1085733 115 2020-07-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1085734 115 2020-07-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1085735 115 2020-07-15 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1085736 115 2020-07-16 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1085737 115 2020-07-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1085738 115 2020-07-18 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 06:40:00 +1085739 115 2020-07-19 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1086217 125 2020-07-02 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 03:20:00 +1086218 125 2020-07-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 03:20:00 +1086219 125 2020-07-04 \N \N \N \N \N 00:00:00 03:20:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 03:20:00 +1086220 125 2020-07-05 \N \N \N \N \N 00:00:00 03:20:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1085754 115 2020-08-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1085755 115 2020-08-04 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1085756 115 2020-08-05 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1085757 115 2020-08-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1085758 115 2020-08-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1085759 115 2020-08-08 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 06:40:00 +1085760 115 2020-08-09 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1085761 114 2020-06-15 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1085762 114 2020-06-16 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1085763 114 2020-06-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1085764 114 2020-06-18 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1085765 114 2020-06-19 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1085766 114 2020-06-20 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 06:40:00 +1085767 114 2020-06-21 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1086221 125 2020-07-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 03:20:00 +1086222 125 2020-07-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 03:20:00 +1086223 125 2020-07-08 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 03:20:00 +1086224 125 2020-07-09 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 03:20:00 +1086366 113 2020-08-08 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 06:40:00 +1085783 114 2020-07-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1085784 114 2020-07-08 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1085785 114 2020-07-09 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1085786 114 2020-07-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1085787 114 2020-07-11 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 06:40:00 +1085788 114 2020-07-12 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1085789 114 2020-07-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1085790 114 2020-07-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1085791 114 2020-07-15 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1085792 114 2020-07-16 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1085793 114 2020-07-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1085794 114 2020-07-18 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 06:40:00 +1085795 114 2020-07-19 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1085796 114 2020-07-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086225 125 2020-07-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 03:20:00 +1086226 125 2020-07-11 \N \N \N \N \N 00:00:00 03:20:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 03:20:00 +1086227 125 2020-07-12 \N \N \N \N \N 00:00:00 03:20:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1086228 125 2020-07-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 03:20:00 +1085812 114 2020-08-05 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1085813 114 2020-08-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1085814 114 2020-08-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1085815 114 2020-08-08 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 06:40:00 +1085816 114 2020-08-09 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1085817 108 2020-06-15 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1085818 108 2020-06-16 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1085819 108 2020-06-17 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1085820 108 2020-06-18 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1085821 108 2020-06-19 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1085822 108 2020-06-20 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 06:40:00 +1085823 108 2020-06-21 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1085824 108 2020-06-22 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1085825 108 2020-06-23 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1086230 125 2020-07-15 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 03:20:00 +1086245 125 2020-07-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 03:20:00 +1086246 125 2020-07-31 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 03:20:00 +1086247 125 2020-08-01 \N \N \N \N \N 00:00:00 03:20:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 03:20:00 +1085841 108 2020-07-09 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1085842 108 2020-07-10 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1085843 108 2020-07-11 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 06:40:00 +1085844 108 2020-07-12 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1085845 108 2020-07-13 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1085846 108 2020-07-14 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1085847 108 2020-07-15 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1085848 108 2020-07-16 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1085849 108 2020-07-17 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1085850 108 2020-07-18 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 06:40:00 +1085851 108 2020-07-19 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1085852 108 2020-07-20 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1085853 108 2020-07-21 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1085854 108 2020-07-22 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1086249 125 2020-08-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 03:20:00 +1086250 125 2020-08-04 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 03:20:00 +1086251 125 2020-08-05 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 03:20:00 +1086252 125 2020-08-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 03:20:00 +1014600 119 2020-01-01 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1014601 119 2020-01-02 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1014602 119 2020-01-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1014603 119 2020-01-04 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +1014604 119 2020-01-05 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1014605 119 2020-01-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1014606 119 2020-01-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1014607 119 2020-01-08 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1014608 119 2020-01-09 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1014609 119 2020-01-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1014610 119 2020-01-11 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +1014611 119 2020-01-12 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1085870 108 2020-08-07 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1085871 108 2020-08-08 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 06:40:00 +1085872 108 2020-08-09 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1085873 135 2020-06-15 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1085874 135 2020-06-16 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1086253 125 2020-08-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 03:20:00 +1086371 147 2020-06-18 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1085882 135 2020-06-24 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1085883 135 2020-06-25 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1085884 135 2020-06-26 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1085885 135 2020-06-27 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 06:40:00 +1085886 135 2020-06-28 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1085887 135 2020-06-29 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1085888 135 2020-06-30 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1085889 135 2020-07-01 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1085890 135 2020-07-02 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1085891 135 2020-07-03 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1085892 135 2020-07-04 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 06:40:00 +1085893 135 2020-07-05 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1085894 135 2020-07-06 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1085895 135 2020-07-07 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1086254 125 2020-08-08 \N \N \N \N \N 00:00:00 03:20:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 03:20:00 +1086255 125 2020-08-09 \N \N \N \N \N 00:00:00 03:20:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1086256 119 2020-06-15 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086257 119 2020-06-16 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1085911 135 2020-07-23 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1085912 135 2020-07-24 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1085913 135 2020-07-25 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 06:40:00 +1085914 135 2020-07-26 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1085915 135 2020-07-27 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1085916 135 2020-07-28 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1085917 135 2020-07-29 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1085918 135 2020-07-30 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1085919 135 2020-07-31 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1085920 135 2020-08-01 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 06:40:00 +1085921 135 2020-08-02 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1085922 135 2020-08-03 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1085923 135 2020-08-04 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1085924 135 2020-08-05 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1086259 119 2020-06-18 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086274 119 2020-07-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086275 119 2020-07-04 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 06:40:00 +1086276 119 2020-07-05 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1085940 127 2020-06-26 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1085941 127 2020-06-27 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 06:40:00 +1085942 127 2020-06-28 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1085943 127 2020-06-29 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1085944 127 2020-06-30 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1085945 127 2020-07-01 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1085946 127 2020-07-02 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1085947 127 2020-07-03 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1085948 127 2020-07-04 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 06:40:00 +1085949 127 2020-07-05 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1085950 127 2020-07-06 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1085951 127 2020-07-07 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1085952 127 2020-07-08 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1085953 127 2020-07-09 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1086278 119 2020-07-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086279 119 2020-07-08 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086280 119 2020-07-09 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086281 119 2020-07-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1085969 127 2020-07-25 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 06:40:00 +1085970 127 2020-07-26 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1085971 127 2020-07-27 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1085972 127 2020-07-28 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1085973 127 2020-07-29 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1085974 127 2020-07-30 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1085975 127 2020-07-31 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1085976 127 2020-08-01 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 06:40:00 +1085977 127 2020-08-02 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1085978 127 2020-08-03 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1085979 127 2020-08-04 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1085980 127 2020-08-05 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1085981 127 2020-08-06 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1085982 127 2020-08-07 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1086282 119 2020-07-11 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 06:40:00 +1086283 119 2020-07-12 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1086284 119 2020-07-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086285 119 2020-07-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1085999 149 2020-06-29 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086000 149 2020-06-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086001 149 2020-07-01 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086002 149 2020-07-02 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086003 149 2020-07-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086004 149 2020-07-04 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 06:40:00 +1086005 149 2020-07-05 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1086006 149 2020-07-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086007 149 2020-07-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086008 149 2020-07-08 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086009 149 2020-07-09 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086010 149 2020-07-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086011 149 2020-07-11 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 06:40:00 +1086012 149 2020-07-12 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1086287 119 2020-07-16 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086288 119 2020-07-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086303 119 2020-08-01 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 06:40:00 +1086304 119 2020-08-02 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1086028 149 2020-07-28 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086029 149 2020-07-29 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086030 149 2020-07-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086031 149 2020-07-31 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086032 149 2020-08-01 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 06:40:00 +1086033 149 2020-08-02 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1086034 149 2020-08-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086035 149 2020-08-04 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086036 149 2020-08-05 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086037 149 2020-08-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086038 149 2020-08-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086039 149 2020-08-08 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 06:40:00 +1086040 149 2020-08-09 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1086041 103 2020-06-15 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086306 119 2020-08-04 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086307 119 2020-08-05 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086308 119 2020-08-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086309 119 2020-08-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086394 147 2020-07-11 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 06:40:00 +1086057 103 2020-07-01 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086058 103 2020-07-02 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086059 103 2020-07-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086060 103 2020-07-04 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 06:40:00 +1086061 103 2020-07-05 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1086062 103 2020-07-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086063 103 2020-07-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086064 103 2020-07-08 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086065 103 2020-07-09 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086066 103 2020-07-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086067 103 2020-07-11 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 06:40:00 +1086068 103 2020-07-12 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1086069 103 2020-07-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086070 103 2020-07-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086310 119 2020-08-08 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 06:40:00 +1086311 119 2020-08-09 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1086312 113 2020-06-15 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086313 113 2020-06-16 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086086 103 2020-07-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086087 103 2020-07-31 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086088 103 2020-08-01 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 06:40:00 +1086089 103 2020-08-02 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1086090 103 2020-08-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086091 103 2020-08-04 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086092 103 2020-08-05 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086093 103 2020-08-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086094 103 2020-08-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086095 103 2020-08-08 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 06:40:00 +1086096 103 2020-08-09 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1086097 121 2020-06-15 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1086098 121 2020-06-16 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1086099 121 2020-06-17 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1086315 113 2020-06-18 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086316 113 2020-06-19 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086317 113 2020-06-20 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 06:40:00 +1086318 113 2020-06-21 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1086115 121 2020-07-03 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1086116 121 2020-07-04 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 06:40:00 +1086117 121 2020-07-05 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1086118 121 2020-07-06 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1086119 121 2020-07-07 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1086120 121 2020-07-08 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1086121 121 2020-07-09 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1086122 121 2020-07-10 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1086123 121 2020-07-11 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 06:40:00 +1086124 121 2020-07-12 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1086125 121 2020-07-13 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1086126 121 2020-07-14 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1086127 121 2020-07-15 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1086128 121 2020-07-16 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1086334 113 2020-07-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086335 113 2020-07-08 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086336 113 2020-07-09 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086337 113 2020-07-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086144 117 2020-06-15 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086145 117 2020-06-16 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086146 117 2020-06-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086147 117 2020-06-18 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086148 117 2020-06-19 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086149 117 2020-06-20 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 06:40:00 +1086150 117 2020-06-21 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1086151 117 2020-06-22 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086152 117 2020-06-23 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086153 117 2020-06-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086154 117 2020-06-25 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086155 117 2020-06-26 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086156 117 2020-06-27 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 06:40:00 +1086157 117 2020-06-28 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1086338 113 2020-07-11 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 06:40:00 +1086339 113 2020-07-12 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1086340 113 2020-07-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086341 113 2020-07-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086173 117 2020-07-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086174 117 2020-07-15 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086175 117 2020-07-16 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086176 117 2020-07-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086177 117 2020-07-18 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 06:40:00 +1086178 117 2020-07-19 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1086179 117 2020-07-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086180 117 2020-07-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086181 117 2020-07-22 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086182 117 2020-07-23 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086183 117 2020-07-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086184 117 2020-07-25 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 06:40:00 +1086185 117 2020-07-26 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1086186 117 2020-07-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086343 113 2020-07-16 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086344 113 2020-07-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086345 113 2020-07-18 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 06:40:00 +1086346 113 2020-07-19 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1086202 125 2020-06-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 03:20:00 +1086203 125 2020-06-18 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 03:20:00 +1086204 125 2020-06-19 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 03:20:00 +1086205 125 2020-06-20 \N \N \N \N \N 00:00:00 03:20:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 03:20:00 +1086206 125 2020-06-21 \N \N \N \N \N 00:00:00 03:20:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1086207 125 2020-06-22 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 03:20:00 +1086208 125 2020-06-23 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 03:20:00 +1086209 125 2020-06-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 03:20:00 +1086210 125 2020-06-25 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 03:20:00 +1086211 125 2020-06-26 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 03:20:00 +1086212 125 2020-06-27 \N \N \N \N \N 00:00:00 03:20:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 03:20:00 +1086213 125 2020-06-28 \N \N \N \N \N 00:00:00 03:20:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1086214 125 2020-06-29 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 03:20:00 +1086215 125 2020-06-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 03:20:00 +1086362 113 2020-08-04 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086363 113 2020-08-05 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086364 113 2020-08-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086365 113 2020-08-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086231 125 2020-07-16 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 03:20:00 +1086232 125 2020-07-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 03:20:00 +1086233 125 2020-07-18 \N \N \N \N \N 00:00:00 03:20:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 03:20:00 +1086234 125 2020-07-19 \N \N \N \N \N 00:00:00 03:20:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1086235 125 2020-07-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 03:20:00 +1086236 125 2020-07-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 03:20:00 +1086237 125 2020-07-22 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 03:20:00 +1086238 125 2020-07-23 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 03:20:00 +1086239 125 2020-07-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 03:20:00 +1086240 125 2020-07-25 \N \N \N \N \N 00:00:00 03:20:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 03:20:00 +1086241 125 2020-07-26 \N \N \N \N \N 00:00:00 03:20:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1086242 125 2020-07-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 03:20:00 +1086243 125 2020-07-28 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 03:20:00 +1086244 125 2020-07-29 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 03:20:00 +1086367 113 2020-08-09 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1086368 147 2020-06-15 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086369 147 2020-06-16 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086370 147 2020-06-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086260 119 2020-06-19 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086261 119 2020-06-20 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 06:40:00 +1086262 119 2020-06-21 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1086263 119 2020-06-22 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086264 119 2020-06-23 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086265 119 2020-06-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086266 119 2020-06-25 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086267 119 2020-06-26 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086268 119 2020-06-27 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 06:40:00 +1086269 119 2020-06-28 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1086270 119 2020-06-29 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086271 119 2020-06-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086272 119 2020-07-01 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086273 119 2020-07-02 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086372 147 2020-06-19 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086373 147 2020-06-20 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 06:40:00 +1086374 147 2020-06-21 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1086375 147 2020-06-22 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086399 147 2020-07-16 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086289 119 2020-07-18 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 06:40:00 +1086290 119 2020-07-19 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1086291 119 2020-07-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086292 119 2020-07-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086293 119 2020-07-22 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086294 119 2020-07-23 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086295 119 2020-07-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086296 119 2020-07-25 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 06:40:00 +1086297 119 2020-07-26 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1086298 119 2020-07-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086299 119 2020-07-28 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086300 119 2020-07-29 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086301 119 2020-07-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086302 119 2020-07-31 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086376 147 2020-06-23 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086391 147 2020-07-08 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086392 147 2020-07-09 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086393 147 2020-07-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086319 113 2020-06-22 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086320 113 2020-06-23 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086321 113 2020-06-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086322 113 2020-06-25 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086323 113 2020-06-26 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086324 113 2020-06-27 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 06:40:00 +1086325 113 2020-06-28 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1086326 113 2020-06-29 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086327 113 2020-06-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086328 113 2020-07-01 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086329 113 2020-07-02 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086330 113 2020-07-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086331 113 2020-07-04 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 06:40:00 +1086332 113 2020-07-05 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1086395 147 2020-07-12 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1086396 147 2020-07-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086397 147 2020-07-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086398 147 2020-07-15 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086348 113 2020-07-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086349 113 2020-07-22 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086350 113 2020-07-23 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086351 113 2020-07-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086352 113 2020-07-25 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 06:40:00 +1086353 113 2020-07-26 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1086354 113 2020-07-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086355 113 2020-07-28 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086356 113 2020-07-29 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086357 113 2020-07-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086358 113 2020-07-31 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086359 113 2020-08-01 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 06:40:00 +1086360 113 2020-08-02 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1086361 113 2020-08-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086400 147 2020-07-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086401 147 2020-07-18 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 06:40:00 +1086402 147 2020-07-19 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1086403 147 2020-07-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086377 147 2020-06-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086378 147 2020-06-25 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086379 147 2020-06-26 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086380 147 2020-06-27 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 06:40:00 +1086381 147 2020-06-28 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1086382 147 2020-06-29 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086383 147 2020-06-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086384 147 2020-07-01 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086385 147 2020-07-02 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086386 147 2020-07-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086387 147 2020-07-04 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 06:40:00 +1086388 147 2020-07-05 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1086389 147 2020-07-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086390 147 2020-07-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086404 147 2020-07-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086405 147 2020-07-22 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086420 147 2020-08-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086421 147 2020-08-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086406 147 2020-07-23 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086407 147 2020-07-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086408 147 2020-07-25 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 06:40:00 +1086409 147 2020-07-26 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1086410 147 2020-07-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086411 147 2020-07-28 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086412 147 2020-07-29 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086413 147 2020-07-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086414 147 2020-07-31 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086415 147 2020-08-01 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 06:40:00 +1086416 147 2020-08-02 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1086417 147 2020-08-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086418 147 2020-08-04 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086419 147 2020-08-05 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086422 147 2020-08-08 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 06:40:00 +1086423 147 2020-08-09 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1086424 131 2020-06-15 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 04:00:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 04:00:00 +1086425 131 2020-06-16 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 04:00:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 04:00:00 +1086426 131 2020-06-17 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 04:00:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 04:00:00 +1086427 131 2020-06-18 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 04:00:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 04:00:00 +1086428 131 2020-06-19 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 04:00:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 04:00:00 +1086429 131 2020-06-20 \N \N \N \N \N 00:00:00 04:00:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1086430 131 2020-06-21 \N \N \N \N \N 00:00:00 04:00:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1086431 131 2020-06-22 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 04:00:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 04:00:00 +1086432 131 2020-06-23 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 04:00:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 04:00:00 +1086433 131 2020-06-24 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 04:00:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 04:00:00 +1086434 131 2020-06-25 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 04:00:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 04:00:00 +1086435 131 2020-06-26 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 04:00:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 04:00:00 +1086436 131 2020-06-27 \N \N \N \N \N 00:00:00 04:00:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1086437 131 2020-06-28 \N \N \N \N \N 00:00:00 04:00:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1086438 131 2020-06-29 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 04:00:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 04:00:00 +1086439 131 2020-06-30 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 04:00:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 04:00:00 +1086440 131 2020-07-01 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 04:00:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 04:00:00 +1086441 131 2020-07-02 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 04:00:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 04:00:00 +1086442 131 2020-07-03 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 04:00:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 04:00:00 +1086443 131 2020-07-04 \N \N \N \N \N 00:00:00 04:00:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1086444 131 2020-07-05 \N \N \N \N \N 00:00:00 04:00:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1086445 131 2020-07-06 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 04:00:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 04:00:00 +1016806 113 2019-12-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1016807 113 2019-12-31 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1086446 131 2020-07-07 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 04:00:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 04:00:00 +1086447 131 2020-07-08 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 04:00:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 04:00:00 +1086448 131 2020-07-09 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 04:00:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 04:00:00 +1086449 131 2020-07-10 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 04:00:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 04:00:00 +1086450 131 2020-07-11 \N \N \N \N \N 00:00:00 04:00:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1086451 131 2020-07-12 \N \N \N \N \N 00:00:00 04:00:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1086452 131 2020-07-13 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 04:00:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 04:00:00 +1086453 131 2020-07-14 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 04:00:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 04:00:00 +1086454 131 2020-07-15 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 04:00:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 04:00:00 +1086455 131 2020-07-16 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 04:00:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 04:00:00 +1086456 131 2020-07-17 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 04:00:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 04:00:00 +1086457 131 2020-07-18 \N \N \N \N \N 00:00:00 04:00:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1086458 131 2020-07-19 \N \N \N \N \N 00:00:00 04:00:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1086459 131 2020-07-20 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 04:00:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 04:00:00 +1086460 131 2020-07-21 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 04:00:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 04:00:00 +1086461 131 2020-07-22 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 04:00:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 04:00:00 +1086462 131 2020-07-23 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 04:00:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 04:00:00 +1086463 131 2020-07-24 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 04:00:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 04:00:00 +1086464 131 2020-07-25 \N \N \N \N \N 00:00:00 04:00:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1086465 131 2020-07-26 \N \N \N \N \N 00:00:00 04:00:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1086466 131 2020-07-27 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 04:00:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 04:00:00 +1086467 131 2020-07-28 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 04:00:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 04:00:00 +1086468 131 2020-07-29 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 04:00:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 04:00:00 +1086469 131 2020-07-30 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 04:00:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 04:00:00 +1086470 131 2020-07-31 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 04:00:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 04:00:00 +1086471 131 2020-08-01 \N \N \N \N \N 00:00:00 04:00:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1086472 131 2020-08-02 \N \N \N \N \N 00:00:00 04:00:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1086473 131 2020-08-03 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 04:00:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 04:00:00 +1086474 131 2020-08-04 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 04:00:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 04:00:00 +1086475 131 2020-08-05 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 04:00:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 04:00:00 +1086476 131 2020-08-06 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 04:00:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 04:00:00 +1086477 131 2020-08-07 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 04:00:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 04:00:00 +1086478 131 2020-08-08 \N \N \N \N \N 00:00:00 04:00:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1086479 131 2020-08-09 \N \N \N \N \N 00:00:00 04:00:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1086480 104 2020-06-15 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:00:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:00:00 +1086481 104 2020-06-16 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:00:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:00:00 +1086482 104 2020-06-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:00:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:00:00 +1086483 104 2020-06-18 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:00:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:00:00 +1086484 104 2020-06-19 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:00:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:00:00 +1086485 104 2020-06-20 \N \N \N \N \N 00:00:00 06:00:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1086486 104 2020-06-21 \N \N \N \N \N 00:00:00 06:00:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1086487 104 2020-06-22 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:00:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:00:00 +1086488 104 2020-06-23 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:00:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:00:00 +1086489 104 2020-06-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:00:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:00:00 +1086490 104 2020-06-25 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:00:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:00:00 +1086491 104 2020-06-26 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:00:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:00:00 +1086492 104 2020-06-27 \N \N \N \N \N 00:00:00 06:00:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1086493 104 2020-06-28 \N \N \N \N \N 00:00:00 06:00:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1086494 104 2020-06-29 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:00:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:00:00 +1086495 104 2020-06-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:00:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:00:00 +1086496 104 2020-07-01 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:00:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:00:00 +1086497 104 2020-07-02 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:00:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:00:00 +1086498 104 2020-07-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:00:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:00:00 +1086499 104 2020-07-04 \N \N \N \N \N 00:00:00 06:00:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1086500 104 2020-07-05 \N \N \N \N \N 00:00:00 06:00:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1086501 104 2020-07-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:00:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:00:00 +1086502 104 2020-07-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:00:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:00:00 +1086503 104 2020-07-08 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:00:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:00:00 +1086504 104 2020-07-09 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:00:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:00:00 +1086505 104 2020-07-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:00:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:00:00 +1086506 104 2020-07-11 \N \N \N \N \N 00:00:00 06:00:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1086507 104 2020-07-12 \N \N \N \N \N 00:00:00 06:00:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1086508 104 2020-07-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:00:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:00:00 +1086509 104 2020-07-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:00:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:00:00 +1086510 104 2020-07-15 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:00:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:00:00 +1086511 104 2020-07-16 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:00:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:00:00 +1086512 104 2020-07-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:00:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:00:00 +1086513 104 2020-07-18 \N \N \N \N \N 00:00:00 06:00:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1086514 104 2020-07-19 \N \N \N \N \N 00:00:00 06:00:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1086515 104 2020-07-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:00:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:00:00 +1086516 104 2020-07-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:00:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:00:00 +1086517 104 2020-07-22 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:00:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:00:00 +1016752 113 2020-01-01 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1016753 113 2020-01-02 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1016754 113 2020-01-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1016755 113 2020-01-04 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +1016756 113 2020-01-05 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1016757 113 2020-01-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1016758 113 2020-01-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1016759 113 2020-01-08 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1016760 113 2020-01-09 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1016761 113 2020-01-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1016762 113 2020-01-11 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +1016763 113 2020-01-12 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1016764 113 2020-01-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1016765 113 2020-01-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1016766 113 2020-01-15 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1016767 113 2020-01-16 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1016768 113 2020-01-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1016769 113 2020-01-18 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +1086518 104 2020-07-23 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:00:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:00:00 +1016783 113 2020-02-01 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +1016784 113 2020-02-02 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1016785 113 2020-02-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1016786 113 2020-02-04 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1016787 113 2020-02-05 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1016788 113 2020-02-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1016789 113 2020-02-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1016790 113 2020-02-08 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +1016791 113 2020-02-09 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1016792 113 2020-02-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1016793 113 2020-02-11 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1016794 113 2020-02-12 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1016795 113 2020-02-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1016796 113 2020-02-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1016797 113 2020-02-15 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +1016798 113 2020-02-16 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1016799 113 2020-02-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1016800 113 2020-02-18 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1086519 104 2020-07-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:00:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:00:00 +1086520 104 2020-07-25 \N \N \N \N \N 00:00:00 06:00:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1086521 104 2020-07-26 \N \N \N \N \N 00:00:00 06:00:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1086522 104 2020-07-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:00:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:00:00 +1086523 104 2020-07-28 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:00:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:00:00 +1086524 104 2020-07-29 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:00:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:00:00 +1086525 104 2020-07-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:00:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:00:00 +1086526 104 2020-07-31 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:00:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:00:00 +1086527 104 2020-08-01 \N \N \N \N \N 00:00:00 06:00:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1086528 104 2020-08-02 \N \N \N \N \N 00:00:00 06:00:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1086529 104 2020-08-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:00:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:00:00 +1086530 104 2020-08-04 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:00:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:00:00 +1086531 104 2020-08-05 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:00:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:00:00 +1086532 104 2020-08-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:00:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:00:00 +1086533 104 2020-08-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:00:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:00:00 +1086534 104 2020-08-08 \N \N \N \N \N 00:00:00 06:00:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1086535 104 2020-08-09 \N \N \N \N \N 00:00:00 06:00:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1086536 151 2020-06-15 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1086537 151 2020-06-16 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1086538 151 2020-06-17 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1086539 151 2020-06-18 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1086540 151 2020-06-19 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1086541 151 2020-06-20 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 06:40:00 +1086542 151 2020-06-21 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1086543 151 2020-06-22 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1086544 151 2020-06-23 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1086545 151 2020-06-24 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1086546 151 2020-06-25 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1086547 151 2020-06-26 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1086548 151 2020-06-27 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 06:40:00 +1086549 151 2020-06-28 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1086550 151 2020-06-29 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1086551 151 2020-06-30 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1086552 151 2020-07-01 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1086553 151 2020-07-02 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1086554 151 2020-07-03 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1086555 151 2020-07-04 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 06:40:00 +1086556 151 2020-07-05 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1086557 151 2020-07-06 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1086558 151 2020-07-07 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1086559 151 2020-07-08 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1086560 151 2020-07-09 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1086561 151 2020-07-10 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1086562 151 2020-07-11 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 06:40:00 +1086563 151 2020-07-12 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1086564 151 2020-07-13 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1086565 151 2020-07-14 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1086566 151 2020-07-15 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1086567 151 2020-07-16 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1086568 151 2020-07-17 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1086569 151 2020-07-18 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 06:40:00 +1086570 151 2020-07-19 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1086571 151 2020-07-20 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1086572 151 2020-07-21 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1086573 151 2020-07-22 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1086574 151 2020-07-23 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1086575 151 2020-07-24 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1086576 151 2020-07-25 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 06:40:00 +1086577 151 2020-07-26 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1086578 151 2020-07-27 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1086579 151 2020-07-28 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1086580 151 2020-07-29 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1086581 151 2020-07-30 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1086582 151 2020-07-31 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1086583 151 2020-08-01 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 06:40:00 +1086584 151 2020-08-02 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1086585 151 2020-08-03 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1086586 151 2020-08-04 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1086587 151 2020-08-05 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1086588 151 2020-08-06 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1086589 151 2020-08-07 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1086590 151 2020-08-08 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 06:40:00 +1086591 151 2020-08-09 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1086592 138 2020-06-15 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1086593 138 2020-06-16 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1086594 138 2020-06-17 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1086595 138 2020-06-18 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1086596 138 2020-06-19 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1086597 138 2020-06-20 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 06:40:00 +1086598 138 2020-06-21 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1086599 138 2020-06-22 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1086600 138 2020-06-23 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1086601 138 2020-06-24 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1086602 138 2020-06-25 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1086603 138 2020-06-26 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1086604 138 2020-06-27 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 06:40:00 +1086605 138 2020-06-28 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1086606 138 2020-06-29 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1086607 138 2020-06-30 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1086608 105 2020-06-15 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1086609 105 2020-06-16 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1086610 105 2020-06-17 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1086611 105 2020-06-18 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1086612 105 2020-06-19 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1086613 105 2020-06-20 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 06:40:00 +1086614 105 2020-06-21 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1086615 105 2020-06-22 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1086616 105 2020-06-23 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1086617 105 2020-06-24 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1086618 105 2020-06-25 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1086619 105 2020-06-26 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1086620 105 2020-06-27 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 06:40:00 +1086621 105 2020-06-28 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1086622 105 2020-06-29 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1086623 105 2020-06-30 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1086624 105 2020-07-01 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1086625 105 2020-07-02 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1086626 105 2020-07-03 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1086627 105 2020-07-04 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 06:40:00 +1086628 105 2020-07-05 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1086629 105 2020-07-06 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1086630 105 2020-07-07 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1086631 105 2020-07-08 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1086632 105 2020-07-09 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1086633 105 2020-07-10 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1086634 105 2020-07-11 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 06:40:00 +1086635 105 2020-07-12 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1086636 105 2020-07-13 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1086637 105 2020-07-14 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1086638 105 2020-07-15 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1086639 105 2020-07-16 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1086640 105 2020-07-17 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1086641 105 2020-07-18 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 06:40:00 +1086642 105 2020-07-19 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1086643 105 2020-07-20 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1086644 105 2020-07-21 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1086645 105 2020-07-22 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1086646 105 2020-07-23 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1086647 105 2020-07-24 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1086648 105 2020-07-25 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 06:40:00 +1086649 105 2020-07-26 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1086650 105 2020-07-27 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1086651 105 2020-07-28 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1086652 105 2020-07-29 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1086653 105 2020-07-30 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1086654 105 2020-07-31 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1086655 105 2020-08-01 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 06:40:00 +1086656 105 2020-08-02 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1086657 105 2020-08-03 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1086658 105 2020-08-04 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1086659 105 2020-08-05 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1086660 105 2020-08-06 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1086661 105 2020-08-07 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1086662 105 2020-08-08 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 06:40:00 +1086663 105 2020-08-09 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1086664 134 2020-06-15 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1086665 134 2020-06-16 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1086666 134 2020-06-17 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1086667 134 2020-06-18 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1086668 134 2020-06-19 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1086669 134 2020-06-20 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 06:40:00 +1086670 134 2020-06-21 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1086671 134 2020-06-22 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1086672 134 2020-06-23 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1086673 134 2020-06-24 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1086674 134 2020-06-25 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1086675 134 2020-06-26 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1086676 134 2020-06-27 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 06:40:00 +1086677 134 2020-06-28 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1086678 134 2020-06-29 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1086679 134 2020-06-30 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1086680 134 2020-07-01 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1086681 134 2020-07-02 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1086682 134 2020-07-03 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1086683 134 2020-07-04 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 06:40:00 +1086684 134 2020-07-05 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1086685 134 2020-07-06 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1086686 134 2020-07-07 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1086687 134 2020-07-08 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1086688 134 2020-07-09 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1086689 134 2020-07-10 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1086690 134 2020-07-11 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 06:40:00 +1086691 134 2020-07-12 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1086692 134 2020-07-13 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1086693 134 2020-07-14 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1086694 134 2020-07-15 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1086695 134 2020-07-16 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1086696 134 2020-07-17 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1086697 134 2020-07-18 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 06:40:00 +1086698 134 2020-07-19 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1086699 134 2020-07-20 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1086700 134 2020-07-21 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1086701 134 2020-07-22 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1086702 134 2020-07-23 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1086703 134 2020-07-24 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1086704 134 2020-07-25 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 06:40:00 +1086705 134 2020-07-26 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1086706 134 2020-07-27 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1086707 134 2020-07-28 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1086708 134 2020-07-29 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1086709 134 2020-07-30 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1086710 134 2020-07-31 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1086711 134 2020-08-01 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 06:40:00 +1086712 134 2020-08-02 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1086713 134 2020-08-03 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1086714 134 2020-08-04 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1086715 134 2020-08-05 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1086716 134 2020-08-06 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1086717 134 2020-08-07 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1086718 134 2020-08-08 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 06:40:00 +1086719 134 2020-08-09 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1086720 102 2020-06-15 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086721 102 2020-06-16 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086722 102 2020-06-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086723 102 2020-06-18 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086724 102 2020-06-19 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086725 102 2020-06-20 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 06:40:00 +1086726 102 2020-06-21 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1086727 102 2020-06-22 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086728 102 2020-06-23 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086729 102 2020-06-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086730 102 2020-06-25 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086731 102 2020-06-26 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086732 102 2020-06-27 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 06:40:00 +1086733 102 2020-06-28 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1086734 102 2020-06-29 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086735 102 2020-06-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086736 102 2020-07-01 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086737 102 2020-07-02 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086738 102 2020-07-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086739 102 2020-07-04 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 06:40:00 +1086740 102 2020-07-05 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1086741 102 2020-07-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086742 102 2020-07-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086743 102 2020-07-08 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086744 102 2020-07-09 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086745 102 2020-07-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086746 102 2020-07-11 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 06:40:00 +1086747 102 2020-07-12 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1086748 102 2020-07-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086749 102 2020-07-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086750 102 2020-07-15 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086751 102 2020-07-16 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086752 102 2020-07-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086753 102 2020-07-18 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 06:40:00 +1086754 102 2020-07-19 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1086755 102 2020-07-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086756 102 2020-07-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086757 102 2020-07-22 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086758 102 2020-07-23 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086759 102 2020-07-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086760 102 2020-07-25 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 06:40:00 +1086761 102 2020-07-26 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1086762 102 2020-07-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086763 102 2020-07-28 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086764 102 2020-07-29 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086765 102 2020-07-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086766 102 2020-07-31 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086767 102 2020-08-01 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 06:40:00 +1086768 102 2020-08-02 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1086769 102 2020-08-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086770 102 2020-08-04 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086771 102 2020-08-05 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086772 102 2020-08-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086773 102 2020-08-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086774 102 2020-08-08 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 06:40:00 +1086775 102 2020-08-09 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1086776 109 2020-06-15 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086777 109 2020-06-16 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086778 109 2020-06-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086779 109 2020-06-18 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086780 109 2020-06-19 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086781 109 2020-06-20 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 06:40:00 +1086782 109 2020-06-21 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1086783 109 2020-06-22 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086784 109 2020-06-23 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086785 109 2020-06-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086786 109 2020-06-25 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086787 109 2020-06-26 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086788 109 2020-06-27 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 06:40:00 +1086789 109 2020-06-28 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1086790 109 2020-06-29 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086791 109 2020-06-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086792 109 2020-07-01 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086793 109 2020-07-02 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086794 109 2020-07-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086795 109 2020-07-04 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 06:40:00 +1086796 109 2020-07-05 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1086797 109 2020-07-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086798 109 2020-07-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086799 109 2020-07-08 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086800 109 2020-07-09 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086801 109 2020-07-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086802 109 2020-07-11 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 06:40:00 +1086803 109 2020-07-12 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1086804 109 2020-07-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086805 109 2020-07-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086806 109 2020-07-15 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086807 109 2020-07-16 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086808 109 2020-07-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086809 109 2020-07-18 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 06:40:00 +1086810 109 2020-07-19 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1086811 109 2020-07-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086812 109 2020-07-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086813 109 2020-07-22 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086814 109 2020-07-23 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086815 109 2020-07-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086816 109 2020-07-25 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 06:40:00 +1086817 109 2020-07-26 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1086818 109 2020-07-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086819 109 2020-07-28 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086820 109 2020-07-29 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086821 109 2020-07-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086822 109 2020-07-31 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086823 109 2020-08-01 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 06:40:00 +1086824 109 2020-08-02 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1086825 109 2020-08-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086826 109 2020-08-04 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086827 109 2020-08-05 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086828 109 2020-08-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086829 109 2020-08-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086830 109 2020-08-08 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 06:40:00 +1086831 109 2020-08-09 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1086832 118 2020-06-15 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086833 118 2020-06-16 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086834 118 2020-06-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086835 118 2020-06-18 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086836 118 2020-06-19 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086837 118 2020-06-20 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 06:40:00 +1086838 118 2020-06-21 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1086839 118 2020-06-22 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086840 118 2020-06-23 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086841 118 2020-06-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086842 118 2020-06-25 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086843 118 2020-06-26 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086844 118 2020-06-27 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 06:40:00 +1086845 118 2020-06-28 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1086846 118 2020-06-29 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086847 118 2020-06-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086848 118 2020-07-01 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086849 118 2020-07-02 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086850 118 2020-07-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086851 118 2020-07-04 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 06:40:00 +1086852 118 2020-07-05 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1086853 118 2020-07-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086854 118 2020-07-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086855 118 2020-07-08 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086856 118 2020-07-09 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086857 118 2020-07-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086858 118 2020-07-11 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 06:40:00 +1086859 118 2020-07-12 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1086860 118 2020-07-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086861 118 2020-07-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086862 118 2020-07-15 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086863 118 2020-07-16 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086864 118 2020-07-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086865 118 2020-07-18 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 06:40:00 +1086866 118 2020-07-19 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1086867 118 2020-07-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086868 118 2020-07-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086869 118 2020-07-22 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086870 118 2020-07-23 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086871 118 2020-07-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086872 118 2020-07-25 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 06:40:00 +1086873 118 2020-07-26 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1086874 118 2020-07-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086875 118 2020-07-28 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086876 118 2020-07-29 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086877 118 2020-07-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086878 118 2020-07-31 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086879 118 2020-08-01 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 06:40:00 +1086880 118 2020-08-02 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1086881 118 2020-08-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086882 118 2020-08-04 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086883 118 2020-08-05 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086884 118 2020-08-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086885 118 2020-08-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1086886 118 2020-08-08 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 06:40:00 +1086887 118 2020-08-09 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1086888 133 2020-06-15 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1086889 133 2020-06-16 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1086890 133 2020-06-17 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1086891 133 2020-06-18 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1086892 133 2020-06-19 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1086893 133 2020-06-20 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 06:40:00 +1086894 133 2020-06-21 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1086895 133 2020-06-22 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1086896 133 2020-06-23 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1086897 133 2020-06-24 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1086898 133 2020-06-25 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1086899 133 2020-06-26 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1086900 133 2020-06-27 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 06:40:00 +1086901 133 2020-06-28 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1086902 133 2020-06-29 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1086903 133 2020-06-30 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1086904 133 2020-07-01 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1086905 133 2020-07-02 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1086906 133 2020-07-03 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1086907 133 2020-07-04 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 06:40:00 +1086908 133 2020-07-05 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1086909 133 2020-07-06 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1086910 133 2020-07-07 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1086911 133 2020-07-08 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1086912 133 2020-07-09 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1086913 133 2020-07-10 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1086914 133 2020-07-11 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 06:40:00 +1086915 133 2020-07-12 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1086916 133 2020-07-13 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1086917 133 2020-07-14 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1086918 133 2020-07-15 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1086919 133 2020-07-16 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1086920 133 2020-07-17 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1086921 133 2020-07-18 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 06:40:00 +1086922 133 2020-07-19 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1086923 133 2020-07-20 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1086924 133 2020-07-21 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1086925 133 2020-07-22 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1086926 133 2020-07-23 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1086927 133 2020-07-24 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1086928 133 2020-07-25 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 06:40:00 +1086929 133 2020-07-26 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1086930 133 2020-07-27 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1086931 133 2020-07-28 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1086932 133 2020-07-29 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1086933 133 2020-07-30 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1086934 133 2020-07-31 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1086935 133 2020-08-01 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 06:40:00 +1086936 133 2020-08-02 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1086937 133 2020-08-03 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1086938 133 2020-08-04 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1086939 133 2020-08-05 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1086940 133 2020-08-06 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1086941 133 2020-08-07 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1086942 133 2020-08-08 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 06:40:00 +1086943 133 2020-08-09 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1086944 111 2020-06-15 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1086945 111 2020-06-16 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1086946 111 2020-06-17 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1086947 111 2020-06-18 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1086948 111 2020-06-19 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1086949 111 2020-06-20 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 06:40:00 +1086950 111 2020-06-21 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1086951 111 2020-06-22 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1086952 111 2020-06-23 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1086953 111 2020-06-24 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1086954 111 2020-06-25 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1086955 111 2020-06-26 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1086956 111 2020-06-27 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 06:40:00 +1086957 111 2020-06-28 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1086958 111 2020-06-29 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1086959 111 2020-06-30 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1086960 111 2020-07-01 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1086961 111 2020-07-02 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1086962 111 2020-07-03 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1018904 147 2020-01-01 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1018905 147 2020-01-02 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1018906 147 2020-01-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1018907 147 2020-01-04 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +1018908 147 2020-01-05 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1018909 147 2020-01-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1018910 147 2020-01-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1018911 147 2020-01-08 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1018912 147 2020-01-09 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1018913 147 2020-01-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1018914 147 2020-01-11 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +1018915 147 2020-01-12 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1018916 147 2020-01-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1086963 111 2020-07-04 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 06:40:00 +1086964 111 2020-07-05 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1086965 111 2020-07-06 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1086966 111 2020-07-07 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1086967 111 2020-07-08 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1086968 111 2020-07-09 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1018955 147 2020-02-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1018956 147 2020-02-22 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +1018957 147 2020-02-23 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1086969 111 2020-07-10 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1086970 111 2020-07-11 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 06:40:00 +1086971 111 2020-07-12 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1086972 111 2020-07-13 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1086973 111 2020-07-14 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1086974 111 2020-07-15 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1086975 111 2020-07-16 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1086976 111 2020-07-17 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1086977 111 2020-07-18 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 06:40:00 +1086978 111 2020-07-19 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1086979 111 2020-07-20 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1086980 111 2020-07-21 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1086981 111 2020-07-22 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1086982 111 2020-07-23 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1086983 111 2020-07-24 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1086984 111 2020-07-25 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 06:40:00 +1086985 111 2020-07-26 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1086986 111 2020-07-27 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1086987 111 2020-07-28 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1086988 111 2020-07-29 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1086989 111 2020-07-30 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1086990 111 2020-07-31 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1086991 111 2020-08-01 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 06:40:00 +1086992 111 2020-08-02 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1086993 111 2020-08-03 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1086994 111 2020-08-04 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1086995 111 2020-08-05 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1086996 111 2020-08-06 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1086997 111 2020-08-07 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1086998 111 2020-08-08 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 06:40:00 +1086999 111 2020-08-09 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1087000 128 2020-06-15 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087001 128 2020-06-16 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087002 128 2020-06-17 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087003 128 2020-06-18 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087004 128 2020-06-19 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087005 128 2020-06-20 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 06:40:00 +1087006 128 2020-06-21 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1087007 128 2020-06-22 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087008 128 2020-06-23 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087009 128 2020-06-24 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087010 128 2020-06-25 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087011 128 2020-06-26 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087012 128 2020-06-27 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 06:40:00 +1087013 128 2020-06-28 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1087014 128 2020-06-29 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087015 128 2020-06-30 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087016 128 2020-07-01 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087017 128 2020-07-02 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087018 128 2020-07-03 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087019 128 2020-07-04 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 06:40:00 +1087020 128 2020-07-05 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1087021 128 2020-07-06 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087022 128 2020-07-07 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087023 128 2020-07-08 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087024 128 2020-07-09 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087025 128 2020-07-10 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087026 128 2020-07-11 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 06:40:00 +1087027 128 2020-07-12 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1087028 128 2020-07-13 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087029 128 2020-07-14 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087030 128 2020-07-15 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087031 128 2020-07-16 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087032 128 2020-07-17 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087033 128 2020-07-18 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 06:40:00 +1087034 128 2020-07-19 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1087035 128 2020-07-20 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087036 128 2020-07-21 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087037 128 2020-07-22 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087038 128 2020-07-23 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087039 128 2020-07-24 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087040 128 2020-07-25 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 06:40:00 +1087041 128 2020-07-26 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1087042 128 2020-07-27 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087043 128 2020-07-28 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087044 128 2020-07-29 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087045 128 2020-07-30 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087046 128 2020-07-31 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087047 128 2020-08-01 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 06:40:00 +1087048 128 2020-08-02 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1087049 128 2020-08-03 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087050 128 2020-08-04 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087051 128 2020-08-05 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087052 128 2020-08-06 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087053 128 2020-08-07 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087054 128 2020-08-08 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 06:40:00 +1087055 128 2020-08-09 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1087056 142 2020-06-15 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087057 142 2020-06-16 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087058 142 2020-06-17 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087059 142 2020-06-18 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087060 142 2020-06-19 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087061 142 2020-06-20 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 06:40:00 +1087062 142 2020-06-21 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1087063 142 2020-06-22 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087064 142 2020-06-23 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087065 142 2020-06-24 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087066 142 2020-06-25 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087067 142 2020-06-26 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087068 142 2020-06-27 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 06:40:00 +1087069 142 2020-06-28 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1087070 142 2020-06-29 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087071 142 2020-06-30 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087072 142 2020-07-01 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087073 142 2020-07-02 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087074 142 2020-07-03 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087075 142 2020-07-04 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 06:40:00 +1087076 142 2020-07-05 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1087077 142 2020-07-06 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087078 142 2020-07-07 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087079 142 2020-07-08 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087080 142 2020-07-09 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087081 142 2020-07-10 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087082 142 2020-07-11 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 06:40:00 +1087083 142 2020-07-12 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1087084 142 2020-07-13 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087085 142 2020-07-14 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087086 142 2020-07-15 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087087 142 2020-07-16 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087088 142 2020-07-17 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087089 142 2020-07-18 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 06:40:00 +1087090 142 2020-07-19 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1087091 142 2020-07-20 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087092 142 2020-07-21 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087093 142 2020-07-22 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087094 142 2020-07-23 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087095 142 2020-07-24 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087096 142 2020-07-25 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 06:40:00 +1087097 142 2020-07-26 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1087098 142 2020-07-27 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087099 142 2020-07-28 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087100 142 2020-07-29 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087101 142 2020-07-30 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087102 142 2020-07-31 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087103 142 2020-08-01 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 06:40:00 +1087104 142 2020-08-02 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1087105 142 2020-08-03 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087106 142 2020-08-04 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087107 142 2020-08-05 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087108 142 2020-08-06 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087109 142 2020-08-07 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087110 142 2020-08-08 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 06:40:00 +1087111 142 2020-08-09 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1087112 136 2020-06-15 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087113 136 2020-06-16 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087114 136 2020-06-17 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087115 136 2020-06-18 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087116 136 2020-06-19 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087117 136 2020-06-20 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 06:40:00 +1087118 136 2020-06-21 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1087119 136 2020-06-22 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087120 136 2020-06-23 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087121 136 2020-06-24 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087122 136 2020-06-25 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087123 136 2020-06-26 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087124 136 2020-06-27 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 06:40:00 +1087125 136 2020-06-28 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1087126 136 2020-06-29 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087127 136 2020-06-30 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087128 136 2020-07-01 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087129 136 2020-07-02 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087130 136 2020-07-03 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087131 136 2020-07-04 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 06:40:00 +1087132 136 2020-07-05 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1087133 136 2020-07-06 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087134 136 2020-07-07 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087135 136 2020-07-08 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087136 136 2020-07-09 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087137 136 2020-07-10 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087138 136 2020-07-11 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 06:40:00 +1087139 136 2020-07-12 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1087140 136 2020-07-13 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087141 136 2020-07-14 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087142 136 2020-07-15 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087143 136 2020-07-16 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087144 136 2020-07-17 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087145 136 2020-07-18 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 06:40:00 +1087146 136 2020-07-19 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1087147 136 2020-07-20 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087148 136 2020-07-21 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087149 136 2020-07-22 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087150 136 2020-07-23 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087151 136 2020-07-24 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087152 136 2020-07-25 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 06:40:00 +1087153 136 2020-07-26 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1087154 136 2020-07-27 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087155 136 2020-07-28 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087156 136 2020-07-29 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087157 136 2020-07-30 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087158 136 2020-07-31 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087159 136 2020-08-01 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 06:40:00 +1087160 136 2020-08-02 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1087161 136 2020-08-03 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087162 136 2020-08-04 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087163 136 2020-08-05 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087164 136 2020-08-06 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087165 136 2020-08-07 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087166 136 2020-08-08 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 06:40:00 +1087167 136 2020-08-09 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1087168 139 2020-06-15 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087169 139 2020-06-16 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087170 139 2020-06-17 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087171 139 2020-06-18 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087172 139 2020-06-19 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087173 139 2020-06-20 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 06:40:00 +1087174 139 2020-06-21 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1087175 139 2020-06-22 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087176 139 2020-06-23 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087177 139 2020-06-24 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087178 139 2020-06-25 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087179 139 2020-06-26 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087180 139 2020-06-27 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 06:40:00 +1087181 139 2020-06-28 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1087182 139 2020-06-29 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087183 139 2020-06-30 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087184 139 2020-07-01 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087185 139 2020-07-02 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087186 139 2020-07-03 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087187 139 2020-07-04 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 06:40:00 +1087188 139 2020-07-05 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1087189 139 2020-07-06 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087190 139 2020-07-07 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087191 139 2020-07-08 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087192 139 2020-07-09 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087193 139 2020-07-10 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087194 139 2020-07-11 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 06:40:00 +1087195 139 2020-07-12 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1087196 139 2020-07-13 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087197 139 2020-07-14 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087198 139 2020-07-15 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087199 139 2020-07-16 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087200 139 2020-07-17 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087201 139 2020-07-18 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 06:40:00 +1087202 139 2020-07-19 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1087203 139 2020-07-20 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087204 139 2020-07-21 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087205 139 2020-07-22 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087206 139 2020-07-23 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087207 139 2020-07-24 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087208 139 2020-07-25 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 06:40:00 +1087209 139 2020-07-26 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1087210 139 2020-07-27 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087211 139 2020-07-28 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087212 139 2020-07-29 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087213 139 2020-07-30 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087214 139 2020-07-31 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087215 139 2020-08-01 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 06:40:00 +1087216 139 2020-08-02 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1087217 139 2020-08-03 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087218 139 2020-08-04 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087219 139 2020-08-05 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087220 139 2020-08-06 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087221 139 2020-08-07 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087222 139 2020-08-08 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 06:40:00 +1087223 139 2020-08-09 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1087224 141 2020-06-15 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087225 141 2020-06-16 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087226 141 2020-06-17 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087227 141 2020-06-18 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087228 141 2020-06-19 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087229 141 2020-06-20 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 06:40:00 +1087230 141 2020-06-21 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1087231 141 2020-06-22 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087232 141 2020-06-23 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087233 141 2020-06-24 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087234 141 2020-06-25 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087235 141 2020-06-26 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087236 141 2020-06-27 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 06:40:00 +1087237 141 2020-06-28 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1087238 141 2020-06-29 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087239 141 2020-06-30 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087240 141 2020-07-01 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087241 141 2020-07-02 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087242 141 2020-07-03 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087243 141 2020-07-04 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 06:40:00 +1087244 141 2020-07-05 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1087245 141 2020-07-06 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087246 141 2020-07-07 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087247 141 2020-07-08 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087248 141 2020-07-09 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087249 141 2020-07-10 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087250 141 2020-07-11 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 06:40:00 +1087251 141 2020-07-12 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1087252 141 2020-07-13 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087253 141 2020-07-14 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087254 141 2020-07-15 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087255 141 2020-07-16 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087256 141 2020-07-17 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087257 141 2020-07-18 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 06:40:00 +1087258 141 2020-07-19 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1087259 141 2020-07-20 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087260 141 2020-07-21 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087261 141 2020-07-22 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087262 141 2020-07-23 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087263 141 2020-07-24 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087264 141 2020-07-25 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 06:40:00 +1087265 141 2020-07-26 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1087266 141 2020-07-27 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087267 141 2020-07-28 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087268 141 2020-07-29 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087269 141 2020-07-30 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087270 141 2020-07-31 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087271 141 2020-08-01 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 06:40:00 +1087272 141 2020-08-02 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1087273 141 2020-08-03 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087274 141 2020-08-04 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087275 141 2020-08-05 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087276 141 2020-08-06 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087277 141 2020-08-07 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087278 141 2020-08-08 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 06:40:00 +1087279 141 2020-08-09 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1087280 122 2020-06-15 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1087281 122 2020-06-16 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1087282 122 2020-06-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1087283 122 2020-06-18 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1087284 122 2020-06-19 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1087285 122 2020-06-20 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 06:40:00 +1087286 122 2020-06-21 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1087287 122 2020-06-22 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1087288 122 2020-06-23 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1087289 122 2020-06-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1087290 122 2020-06-25 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1087291 122 2020-06-26 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1087292 122 2020-06-27 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 06:40:00 +1087293 122 2020-06-28 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1087294 122 2020-06-29 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1087295 122 2020-06-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1087296 122 2020-07-01 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1087297 122 2020-07-02 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1087298 122 2020-07-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1087299 122 2020-07-04 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 06:40:00 +1087300 122 2020-07-05 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1087301 122 2020-07-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1087302 122 2020-07-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1087303 122 2020-07-08 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1087304 122 2020-07-09 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1087305 122 2020-07-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1087306 122 2020-07-11 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 06:40:00 +1087307 122 2020-07-12 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1087308 122 2020-07-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1087309 122 2020-07-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1087310 122 2020-07-15 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1087311 122 2020-07-16 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1087312 122 2020-07-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1087313 122 2020-07-18 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 06:40:00 +1087314 122 2020-07-19 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1087315 122 2020-07-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1087316 122 2020-07-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1087317 122 2020-07-22 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1087318 122 2020-07-23 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1087319 122 2020-07-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1087320 122 2020-07-25 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 06:40:00 +1087321 122 2020-07-26 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1087322 122 2020-07-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1087323 122 2020-07-28 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1087324 122 2020-07-29 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1087325 122 2020-07-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1087326 122 2020-07-31 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1087327 122 2020-08-01 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 06:40:00 +1087328 122 2020-08-02 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1087329 122 2020-08-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1087330 122 2020-08-04 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1087331 122 2020-08-05 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1087332 122 2020-08-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1087333 122 2020-08-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1087334 122 2020-08-08 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 06:40:00 +1087335 122 2020-08-09 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1087336 106 2020-06-15 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 04:10:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 04:10:00 +1087337 106 2020-06-16 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 04:10:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 04:10:00 +1021110 131 2019-12-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 04:00:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 04:00:00 +1021111 131 2019-12-31 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 04:00:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 04:00:00 +1087338 106 2020-06-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 04:10:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 04:10:00 +1087339 106 2020-06-18 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 04:10:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 04:10:00 +1087340 106 2020-06-19 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 04:10:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 \N +1087341 106 2020-06-20 \N \N \N \N \N 00:00:00 04:10:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1087342 106 2020-06-21 \N \N \N \N \N 00:00:00 04:10:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1087343 106 2020-06-22 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 04:10:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 04:10:00 +1087344 106 2020-06-23 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 04:10:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 04:10:00 +1087345 106 2020-06-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 04:10:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 04:10:00 +1087346 106 2020-06-25 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 04:10:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 04:10:00 +1087347 106 2020-06-26 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 04:10:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 \N +1087348 106 2020-06-27 \N \N \N \N \N 00:00:00 04:10:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1087349 106 2020-06-28 \N \N \N \N \N 00:00:00 04:10:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1087350 106 2020-06-29 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 04:10:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 04:10:00 +1087351 106 2020-06-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 04:10:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 04:10:00 +1087352 106 2020-07-01 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 04:10:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 04:10:00 +1087353 106 2020-07-02 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 04:10:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 04:10:00 +1087354 106 2020-07-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 04:10:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 \N +1087355 106 2020-07-04 \N \N \N \N \N 00:00:00 04:10:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1087356 106 2020-07-05 \N \N \N \N \N 00:00:00 04:10:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1087357 106 2020-07-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 04:10:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 04:10:00 +1087358 106 2020-07-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 04:10:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 04:10:00 +1087359 106 2020-07-08 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 04:10:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 04:10:00 +1087360 106 2020-07-09 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 04:10:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 04:10:00 +1087361 106 2020-07-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 04:10:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 \N +1087362 106 2020-07-11 \N \N \N \N \N 00:00:00 04:10:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1087363 106 2020-07-12 \N \N \N \N \N 00:00:00 04:10:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1087364 106 2020-07-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 04:10:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 04:10:00 +1087365 106 2020-07-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 04:10:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 04:10:00 +1087366 106 2020-07-15 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 04:10:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 04:10:00 +1087367 106 2020-07-16 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 04:10:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 04:10:00 +1087368 106 2020-07-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 04:10:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 \N +1087369 106 2020-07-18 \N \N \N \N \N 00:00:00 04:10:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1087370 106 2020-07-19 \N \N \N \N \N 00:00:00 04:10:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1087371 106 2020-07-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 04:10:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 04:10:00 +1087372 106 2020-07-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 04:10:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 04:10:00 +1087373 106 2020-07-22 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 04:10:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 04:10:00 +1087374 106 2020-07-23 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 04:10:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 04:10:00 +1087375 106 2020-07-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 04:10:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 \N +1087376 106 2020-07-25 \N \N \N \N \N 00:00:00 04:10:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1087377 106 2020-07-26 \N \N \N \N \N 00:00:00 04:10:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1087378 106 2020-07-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 04:10:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 04:10:00 +1087379 106 2020-07-28 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 04:10:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 04:10:00 +1087380 106 2020-07-29 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 04:10:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 04:10:00 +1087381 106 2020-07-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 04:10:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 04:10:00 +1087382 106 2020-07-31 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 04:10:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 \N +1087383 106 2020-08-01 \N \N \N \N \N 00:00:00 04:10:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1087384 106 2020-08-02 \N \N \N \N \N 00:00:00 04:10:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1087385 106 2020-08-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 04:10:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 04:10:00 +1087386 106 2020-08-04 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 04:10:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 04:10:00 +1087387 106 2020-08-05 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 04:10:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 04:10:00 +1087388 106 2020-08-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 04:10:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 04:10:00 +1087389 106 2020-08-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 04:10:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 \N +1087390 106 2020-08-08 \N \N \N \N \N 00:00:00 04:10:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1087391 106 2020-08-09 \N \N \N \N \N 00:00:00 04:10:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1087547 148 2020-07-28 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1087548 148 2020-07-29 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1087549 148 2020-07-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1087550 148 2020-07-31 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1087551 148 2020-08-01 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 06:40:00 +1087552 148 2020-08-02 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1087553 148 2020-08-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1087392 110 2020-06-15 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1087393 110 2020-06-16 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1087394 110 2020-06-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1087395 110 2020-06-18 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1087396 110 2020-06-19 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1087397 110 2020-06-20 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 06:40:00 +1087398 110 2020-06-21 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1087399 110 2020-06-22 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1087400 110 2020-06-23 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1087401 110 2020-06-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1087402 110 2020-06-25 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1087403 110 2020-06-26 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1087404 110 2020-06-27 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 06:40:00 +1087405 110 2020-06-28 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1087554 148 2020-08-04 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1087555 148 2020-08-05 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1087556 148 2020-08-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1087571 130 2020-06-26 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087572 130 2020-06-27 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 06:40:00 +1087573 130 2020-06-28 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1087574 130 2020-06-29 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1021056 131 2020-01-01 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 04:00:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 04:00:00 +1021057 131 2020-01-02 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 04:00:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 04:00:00 +1021058 131 2020-01-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 04:00:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 04:00:00 +1021059 131 2020-01-04 \N \N \N \N \N 00:00:00 04:00:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1021060 131 2020-01-05 \N \N \N \N \N 00:00:00 04:00:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1021061 131 2020-01-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 04:00:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 04:00:00 +1021062 131 2020-01-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 04:00:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 04:00:00 +1021063 131 2020-01-08 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 04:00:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 04:00:00 +1021064 131 2020-01-09 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 04:00:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 04:00:00 +1021065 131 2020-01-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 04:00:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 04:00:00 +1021066 131 2020-01-11 \N \N \N \N \N 00:00:00 04:00:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1021067 131 2020-01-12 \N \N \N \N \N 00:00:00 04:00:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1021068 131 2020-01-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 04:00:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 04:00:00 +1021069 131 2020-01-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 04:00:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 04:00:00 +1021070 131 2020-01-15 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 04:00:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 04:00:00 +1021071 131 2020-01-16 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 04:00:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 04:00:00 +1021072 131 2020-01-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 04:00:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 04:00:00 +1021073 131 2020-01-18 \N \N \N \N \N 00:00:00 04:00:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1087575 130 2020-06-30 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1021084 131 2020-01-29 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 04:00:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 04:00:00 +1021085 131 2020-01-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 04:00:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 04:00:00 +1021086 131 2020-01-31 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 04:00:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 04:00:00 +1021087 131 2020-02-01 \N \N \N \N \N 00:00:00 04:00:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1021088 131 2020-02-02 \N \N \N \N \N 00:00:00 04:00:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1021089 131 2020-02-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 04:00:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 04:00:00 +1021090 131 2020-02-04 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 04:00:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 04:00:00 +1021091 131 2020-02-05 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 04:00:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 04:00:00 +1021092 131 2020-02-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 04:00:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 04:00:00 +1021093 131 2020-02-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 04:00:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 04:00:00 +1021094 131 2020-02-08 \N \N \N \N \N 00:00:00 04:00:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1021095 131 2020-02-09 \N \N \N \N \N 00:00:00 04:00:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1021096 131 2020-02-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 04:00:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 04:00:00 +1021097 131 2020-02-11 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 04:00:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 04:00:00 +1021098 131 2020-02-12 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 04:00:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 04:00:00 +1021099 131 2020-02-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 04:00:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 04:00:00 +1021100 131 2020-02-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 04:00:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 04:00:00 +1087576 130 2020-07-01 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087406 110 2020-06-29 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1087407 110 2020-06-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1087408 110 2020-07-01 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1087409 110 2020-07-02 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1087410 110 2020-07-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1087411 110 2020-07-04 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 06:40:00 +1087412 110 2020-07-05 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1087413 110 2020-07-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1087414 110 2020-07-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1087415 110 2020-07-08 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1087416 110 2020-07-09 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1087417 110 2020-07-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1087418 110 2020-07-11 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 06:40:00 +1087419 110 2020-07-12 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1087577 130 2020-07-02 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087578 130 2020-07-03 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087579 130 2020-07-04 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 06:40:00 +1087580 130 2020-07-05 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1087581 130 2020-07-06 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087582 130 2020-07-07 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087583 130 2020-07-08 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087420 110 2020-07-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1087421 110 2020-07-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1087422 110 2020-07-15 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1087423 110 2020-07-16 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1087424 110 2020-07-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1087425 110 2020-07-18 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 06:40:00 +1087426 110 2020-07-19 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1087427 110 2020-07-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1087428 110 2020-07-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1087429 110 2020-07-22 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1087430 110 2020-07-23 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1087431 110 2020-07-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1087432 110 2020-07-25 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 06:40:00 +1087433 110 2020-07-26 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1087584 130 2020-07-09 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087599 130 2020-07-24 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087600 130 2020-07-25 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 06:40:00 +1087601 130 2020-07-26 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1087602 130 2020-07-27 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087603 130 2020-07-28 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087604 130 2020-07-29 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087434 110 2020-07-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1087435 110 2020-07-28 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1087436 110 2020-07-29 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1087437 110 2020-07-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1087438 110 2020-07-31 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1087439 110 2020-08-01 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 06:40:00 +1087440 110 2020-08-02 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1087441 110 2020-08-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1087442 110 2020-08-04 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1087443 110 2020-08-05 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1087444 110 2020-08-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1087445 110 2020-08-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1087446 110 2020-08-08 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 06:40:00 +1087447 110 2020-08-09 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1087605 130 2020-07-30 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087606 130 2020-07-31 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087607 130 2020-08-01 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 06:40:00 +1087608 130 2020-08-02 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1087609 130 2020-08-03 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087610 130 2020-08-04 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087611 130 2020-08-05 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087448 145 2020-06-15 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087449 145 2020-06-16 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087450 145 2020-06-17 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087451 145 2020-06-18 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087452 145 2020-06-19 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087453 145 2020-06-20 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 06:40:00 +1087454 145 2020-06-21 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1087455 145 2020-06-22 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087456 145 2020-06-23 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087457 145 2020-06-24 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087458 145 2020-06-25 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087459 145 2020-06-26 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087460 145 2020-06-27 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 06:40:00 +1087461 145 2020-06-28 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1087612 130 2020-08-06 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087627 129 2020-06-26 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087628 129 2020-06-27 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 06:40:00 +1087629 129 2020-06-28 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1087630 129 2020-06-29 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087631 129 2020-06-30 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087632 129 2020-07-01 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087462 145 2020-06-29 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087463 145 2020-06-30 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087464 145 2020-07-01 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087465 145 2020-07-02 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087466 145 2020-07-03 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087467 145 2020-07-04 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 06:40:00 +1087468 145 2020-07-05 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1087469 145 2020-07-06 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087470 145 2020-07-07 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087471 145 2020-07-08 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087472 145 2020-07-09 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087473 145 2020-07-10 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087474 145 2020-07-11 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 06:40:00 +1087475 145 2020-07-12 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1087633 129 2020-07-02 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087634 129 2020-07-03 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087635 129 2020-07-04 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 06:40:00 +1087636 129 2020-07-05 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1087637 129 2020-07-06 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087638 129 2020-07-07 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087639 129 2020-07-08 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087476 145 2020-07-13 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087477 145 2020-07-14 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087478 145 2020-07-15 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087479 145 2020-07-16 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087480 145 2020-07-17 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087481 145 2020-07-18 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 06:40:00 +1087482 145 2020-07-19 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1087483 145 2020-07-20 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087484 145 2020-07-21 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087485 145 2020-07-22 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087486 145 2020-07-23 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087487 145 2020-07-24 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087488 145 2020-07-25 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 06:40:00 +1087489 145 2020-07-26 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1087640 129 2020-07-09 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087655 129 2020-07-24 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087656 129 2020-07-25 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 06:40:00 +1087657 129 2020-07-26 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1087658 129 2020-07-27 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087659 129 2020-07-28 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087660 129 2020-07-29 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087490 145 2020-07-27 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087491 145 2020-07-28 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087492 145 2020-07-29 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087493 145 2020-07-30 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087494 145 2020-07-31 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087495 145 2020-08-01 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 06:40:00 +1087496 145 2020-08-02 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1087497 145 2020-08-03 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087498 145 2020-08-04 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087499 145 2020-08-05 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087500 145 2020-08-06 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087501 145 2020-08-07 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087502 145 2020-08-08 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 06:40:00 +1087503 145 2020-08-09 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1087661 129 2020-07-30 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087662 129 2020-07-31 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087663 129 2020-08-01 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 06:40:00 +1087664 129 2020-08-02 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1087665 129 2020-08-03 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087666 129 2020-08-04 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087667 129 2020-08-05 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087504 148 2020-06-15 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1087505 148 2020-06-16 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1087506 148 2020-06-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1087507 148 2020-06-18 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1087508 148 2020-06-19 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1087509 148 2020-06-20 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 06:40:00 +1087510 148 2020-06-21 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1087511 148 2020-06-22 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1087512 148 2020-06-23 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1087513 148 2020-06-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1087514 148 2020-06-25 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1087515 148 2020-06-26 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1087516 148 2020-06-27 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 06:40:00 +1087517 148 2020-06-28 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1087668 129 2020-08-06 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087683 143 2020-06-26 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087684 143 2020-06-27 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 06:40:00 +1087685 143 2020-06-28 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1087686 143 2020-06-29 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087687 143 2020-06-30 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087688 143 2020-07-01 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087518 148 2020-06-29 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1087519 148 2020-06-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1087520 148 2020-07-01 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1087521 148 2020-07-02 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1087522 148 2020-07-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1087523 148 2020-07-04 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 06:40:00 +1087524 148 2020-07-05 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1087525 148 2020-07-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1087526 148 2020-07-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1087527 148 2020-07-08 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1087528 148 2020-07-09 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1087529 148 2020-07-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1087530 148 2020-07-11 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 06:40:00 +1087531 148 2020-07-12 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1087689 143 2020-07-02 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087690 143 2020-07-03 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087691 143 2020-07-04 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 06:40:00 +1087692 143 2020-07-05 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1087693 143 2020-07-06 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087694 143 2020-07-07 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087695 143 2020-07-08 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087532 148 2020-07-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1087533 148 2020-07-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1087534 148 2020-07-15 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1087535 148 2020-07-16 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1087536 148 2020-07-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1087537 148 2020-07-18 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 06:40:00 +1087538 148 2020-07-19 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1087539 148 2020-07-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1087540 148 2020-07-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1087541 148 2020-07-22 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1087542 148 2020-07-23 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1087543 148 2020-07-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1087544 148 2020-07-25 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 06:40:00 +1087545 148 2020-07-26 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1087546 148 2020-07-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1087557 148 2020-08-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 01:00:00 06:40:00 +1087558 148 2020-08-08 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 06:40:00 +1087559 148 2020-08-09 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1087560 130 2020-06-15 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087561 130 2020-06-16 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087562 130 2020-06-17 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087563 130 2020-06-18 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087564 130 2020-06-19 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087565 130 2020-06-20 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 06:40:00 +1087566 130 2020-06-21 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1087567 130 2020-06-22 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087568 130 2020-06-23 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087569 130 2020-06-24 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087570 130 2020-06-25 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087585 130 2020-07-10 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087586 130 2020-07-11 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 06:40:00 +1087587 130 2020-07-12 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1087588 130 2020-07-13 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087589 130 2020-07-14 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087590 130 2020-07-15 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087591 130 2020-07-16 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087592 130 2020-07-17 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087593 130 2020-07-18 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 06:40:00 +1087594 130 2020-07-19 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1087595 130 2020-07-20 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087596 130 2020-07-21 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087597 130 2020-07-22 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087598 130 2020-07-23 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087613 130 2020-08-07 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087614 130 2020-08-08 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 06:40:00 +1087615 130 2020-08-09 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1087616 129 2020-06-15 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087617 129 2020-06-16 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087618 129 2020-06-17 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087619 129 2020-06-18 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087620 129 2020-06-19 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087621 129 2020-06-20 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 06:40:00 +1087622 129 2020-06-21 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1087623 129 2020-06-22 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087624 129 2020-06-23 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087625 129 2020-06-24 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087626 129 2020-06-25 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087641 129 2020-07-10 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087642 129 2020-07-11 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 06:40:00 +1087643 129 2020-07-12 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1087644 129 2020-07-13 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087645 129 2020-07-14 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087646 129 2020-07-15 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087647 129 2020-07-16 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087648 129 2020-07-17 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087649 129 2020-07-18 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 06:40:00 +1087650 129 2020-07-19 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1087651 129 2020-07-20 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087652 129 2020-07-21 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087653 129 2020-07-22 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087654 129 2020-07-23 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087669 129 2020-08-07 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087670 129 2020-08-08 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 06:40:00 +1087671 129 2020-08-09 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1087672 143 2020-06-15 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087673 143 2020-06-16 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087674 143 2020-06-17 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087675 143 2020-06-18 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087676 143 2020-06-19 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087677 143 2020-06-20 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 06:40:00 +1087678 143 2020-06-21 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1087679 143 2020-06-22 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087680 143 2020-06-23 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087681 143 2020-06-24 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087682 143 2020-06-25 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087696 143 2020-07-09 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087697 143 2020-07-10 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087698 143 2020-07-11 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 06:40:00 +1087699 143 2020-07-12 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1087700 143 2020-07-13 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087701 143 2020-07-14 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087702 143 2020-07-15 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087703 143 2020-07-16 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087704 143 2020-07-17 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087705 143 2020-07-18 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 06:40:00 +1087706 143 2020-07-19 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1087707 143 2020-07-20 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087708 143 2020-07-21 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087709 143 2020-07-22 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087710 143 2020-07-23 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087711 143 2020-07-24 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087712 143 2020-07-25 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 06:40:00 +1087713 143 2020-07-26 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1087714 143 2020-07-27 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087715 143 2020-07-28 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087716 143 2020-07-29 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087717 143 2020-07-30 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087718 143 2020-07-31 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087719 143 2020-08-01 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 06:40:00 +1087720 143 2020-08-02 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1087721 143 2020-08-03 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087722 143 2020-08-04 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087723 143 2020-08-05 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087724 143 2020-08-06 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087725 143 2020-08-07 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 31 08:00:00 \N 03:00:00 06:40:00 +1087726 143 2020-08-08 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 06:40:00 +1087727 143 2020-08-09 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 31 00:00:00 \N 00:00:00 \N +1023262 104 2019-12-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:00:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:00:00 +1023263 104 2019-12-31 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:00:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:00:00 +1023208 104 2020-01-01 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:00:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:00:00 +1023209 104 2020-01-02 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:00:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:00:00 +1023210 104 2020-01-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:00:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:00:00 +1023211 104 2020-01-04 \N \N \N \N \N 00:00:00 06:00:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1023212 104 2020-01-05 \N \N \N \N \N 00:00:00 06:00:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1023213 104 2020-01-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:00:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:00:00 +1023214 104 2020-01-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:00:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:00:00 +1023215 104 2020-01-08 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:00:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:00:00 +1023216 104 2020-01-09 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:00:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:00:00 +1023217 104 2020-01-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:00:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:00:00 +1023218 104 2020-01-11 \N \N \N \N \N 00:00:00 06:00:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1023219 104 2020-01-12 \N \N \N \N \N 00:00:00 06:00:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1023220 104 2020-01-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:00:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:00:00 +1023221 104 2020-01-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:00:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:00:00 +1023222 104 2020-01-15 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:00:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:00:00 +1023253 104 2020-02-15 \N \N \N \N \N 00:00:00 06:00:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1023254 104 2020-02-16 \N \N \N \N \N 00:00:00 06:00:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1023255 104 2020-02-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:00:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:00:00 +1023256 104 2020-02-18 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:00:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:00:00 +1023257 104 2020-02-19 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:00:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:00:00 +1023258 104 2020-02-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:00:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:00:00 +1023259 104 2020-02-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:00:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:00:00 +1023260 104 2020-02-22 \N \N \N \N \N 00:00:00 06:00:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1023261 104 2020-02-23 \N \N \N \N \N 00:00:00 06:00:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1025391 151 2020-02-01 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +1025392 151 2020-02-02 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1025393 151 2020-02-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1025394 151 2020-02-04 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1025395 151 2020-02-05 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1025396 151 2020-02-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1025397 151 2020-02-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1025398 151 2020-02-08 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +1025399 151 2020-02-09 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1025400 151 2020-02-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1025401 151 2020-02-11 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1025402 151 2020-02-12 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1025403 151 2020-02-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1025404 151 2020-02-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1025405 151 2020-02-15 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +1025406 151 2020-02-16 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1025407 151 2020-02-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1025408 151 2020-02-18 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1027512 138 2020-01-01 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1027513 138 2020-01-02 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1027514 138 2020-01-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1027515 138 2020-01-04 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +1027516 138 2020-01-05 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1027517 138 2020-01-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1027518 138 2020-01-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1027519 138 2020-01-08 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1027520 138 2020-01-09 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1027521 138 2020-01-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1027522 138 2020-01-11 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +1027523 138 2020-01-12 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1027524 138 2020-01-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1027525 138 2020-01-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1027526 138 2020-01-15 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1027527 138 2020-01-16 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1027528 138 2020-01-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1027529 138 2020-01-18 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +1027552 138 2020-02-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1027553 138 2020-02-11 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1027554 138 2020-02-12 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1027555 138 2020-02-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1027556 138 2020-02-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1027558 138 2020-02-16 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1027559 138 2020-02-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1027560 138 2020-02-18 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1027561 138 2020-02-19 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1027562 138 2020-02-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1027563 138 2020-02-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1027564 138 2020-02-22 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +1027565 138 2020-02-23 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1029718 105 2019-12-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1029719 105 2019-12-31 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1029664 105 2020-01-01 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1029665 105 2020-01-02 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1029666 105 2020-01-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1029667 105 2020-01-04 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +1029668 105 2020-01-05 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1029669 105 2020-01-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1029670 105 2020-01-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1029671 105 2020-01-08 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1029672 105 2020-01-09 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1029673 105 2020-01-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1029674 105 2020-01-11 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +1029675 105 2020-01-12 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1029676 105 2020-01-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1029677 105 2020-01-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1029678 105 2020-01-15 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1029679 105 2020-01-16 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1029680 105 2020-01-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1029681 105 2020-01-18 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +1029682 105 2020-01-19 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1029683 105 2020-01-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1029684 105 2020-01-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1029685 105 2020-01-22 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1029686 105 2020-01-23 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1029687 105 2020-01-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1029688 105 2020-01-25 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +1029689 105 2020-01-26 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1029690 105 2020-01-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1029691 105 2020-01-28 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1029692 105 2020-01-29 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1029693 105 2020-01-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1029694 105 2020-01-31 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1029695 105 2020-02-01 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +1029696 105 2020-02-02 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1029697 105 2020-02-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1029698 105 2020-02-04 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1031816 134 2020-01-01 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1031817 134 2020-01-02 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1031818 134 2020-01-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1031819 134 2020-01-04 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +1031820 134 2020-01-05 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1031821 134 2020-01-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1031822 134 2020-01-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1031823 134 2020-01-08 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1031824 134 2020-01-09 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1031825 134 2020-01-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1031826 134 2020-01-11 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +1031827 134 2020-01-12 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1031828 134 2020-01-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1031829 134 2020-01-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1031830 134 2020-01-15 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1031831 134 2020-01-16 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1031832 134 2020-01-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1031833 134 2020-01-18 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +1031850 134 2020-02-04 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1031851 134 2020-02-05 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1031852 134 2020-02-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1031853 134 2020-02-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1031854 134 2020-02-08 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +1031855 134 2020-02-09 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1031856 134 2020-02-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1031857 134 2020-02-11 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1031858 134 2020-02-12 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1031859 134 2020-02-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1031860 134 2020-02-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1031861 134 2020-02-15 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +1031862 134 2020-02-16 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1031863 134 2020-02-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1031864 134 2020-02-18 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1031865 134 2020-02-19 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1031866 134 2020-02-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1031867 134 2020-02-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1033968 144 2020-01-01 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1033969 144 2020-01-02 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1033970 144 2020-01-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1033971 144 2020-01-04 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +1033972 144 2020-01-05 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1033973 144 2020-01-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1033974 144 2020-01-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1033975 144 2020-01-08 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1033976 144 2020-01-09 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1033977 144 2020-01-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1033978 144 2020-01-11 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +1033979 144 2020-01-12 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1033980 144 2020-01-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1033981 144 2020-01-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1033982 144 2020-01-15 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1033983 144 2020-01-16 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1033984 144 2020-01-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1033985 144 2020-01-18 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +1033986 144 2020-01-19 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1033987 144 2020-01-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1033988 144 2020-01-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1033989 144 2020-01-22 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1033990 144 2020-01-23 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1033991 144 2020-01-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1033992 144 2020-01-25 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +1033993 144 2020-01-26 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1033994 144 2020-01-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1036120 102 2020-01-01 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1036121 102 2020-01-02 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1036122 102 2020-01-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1036123 102 2020-01-04 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +1036124 102 2020-01-05 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1036125 102 2020-01-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1036126 102 2020-01-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1036127 102 2020-01-08 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1036128 102 2020-01-09 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1036129 102 2020-01-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1036130 102 2020-01-11 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +1036131 102 2020-01-12 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1036132 102 2020-01-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1036133 102 2020-01-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1036134 102 2020-01-15 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1036135 102 2020-01-16 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1036136 102 2020-01-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1036137 102 2020-01-18 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +1036151 102 2020-02-01 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +1036152 102 2020-02-02 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1036153 102 2020-02-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1036154 102 2020-02-04 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1036155 102 2020-02-05 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1036156 102 2020-02-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1036157 102 2020-02-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1036158 102 2020-02-08 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +1036159 102 2020-02-09 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1036160 102 2020-02-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1036161 102 2020-02-11 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1036162 102 2020-02-12 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1036163 102 2020-02-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1036164 102 2020-02-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1036165 102 2020-02-15 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +1036166 102 2020-02-16 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1036167 102 2020-02-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1036168 102 2020-02-18 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1038326 109 2019-12-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1038327 109 2019-12-31 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1038272 109 2020-01-01 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1038273 109 2020-01-02 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1038274 109 2020-01-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1038275 109 2020-01-04 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +1038276 109 2020-01-05 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1038277 109 2020-01-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1038278 109 2020-01-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1038279 109 2020-01-08 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1038280 109 2020-01-09 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1038281 109 2020-01-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1038282 109 2020-01-11 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +1038283 109 2020-01-12 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1038284 109 2020-01-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1038285 109 2020-01-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1038286 109 2020-01-15 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1038287 109 2020-01-16 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1040478 118 2019-12-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1040479 118 2019-12-31 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1040424 118 2020-01-01 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1040425 118 2020-01-02 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1040426 118 2020-01-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1040427 118 2020-01-04 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +1040428 118 2020-01-05 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1040429 118 2020-01-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1040430 118 2020-01-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1040431 118 2020-01-08 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1040432 118 2020-01-09 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1040433 118 2020-01-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1040434 118 2020-01-11 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +1040435 118 2020-01-12 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1040436 118 2020-01-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1040437 118 2020-01-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1040438 118 2020-01-15 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1040439 118 2020-01-16 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1040440 118 2020-01-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1040441 118 2020-01-18 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +1040455 118 2020-02-01 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +1040456 118 2020-02-02 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1040457 118 2020-02-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1040458 118 2020-02-04 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1040459 118 2020-02-05 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1040460 118 2020-02-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1040461 118 2020-02-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1040462 118 2020-02-08 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +1040463 118 2020-02-09 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1040464 118 2020-02-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1040465 118 2020-02-11 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1040466 118 2020-02-12 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1040467 118 2020-02-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1040468 118 2020-02-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1040469 118 2020-02-15 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +1040470 118 2020-02-16 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1040471 118 2020-02-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1040472 118 2020-02-18 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1042630 133 2019-12-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1042631 133 2019-12-31 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1042576 133 2020-01-01 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1042577 133 2020-01-02 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1042578 133 2020-01-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1042579 133 2020-01-04 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +1042580 133 2020-01-05 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1042581 133 2020-01-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1042582 133 2020-01-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1042583 133 2020-01-08 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1042584 133 2020-01-09 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1042585 133 2020-01-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1042586 133 2020-01-11 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +1042587 133 2020-01-12 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1044728 111 2020-01-01 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1044729 111 2020-01-02 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1044730 111 2020-01-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1044731 111 2020-01-04 08:00:00 10:40:00 \N \N \N 00:00:00 06:40:00 \N \N \N 02:40:00 00:00:00 \N 27 02:40:00 \N 00:00:00 06:40:00 +1044732 111 2020-01-05 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1044733 111 2020-01-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1044734 111 2020-01-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1044735 111 2020-01-08 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1044736 111 2020-01-09 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1044737 111 2020-01-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1044738 111 2020-01-11 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +1044739 111 2020-01-12 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1044740 111 2020-01-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1044741 111 2020-01-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1044742 111 2020-01-15 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1044743 111 2020-01-16 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1044744 111 2020-01-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1044745 111 2020-01-18 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +1044759 111 2020-02-01 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +1044760 111 2020-02-02 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1044761 111 2020-02-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1044762 111 2020-02-04 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1044763 111 2020-02-05 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1044764 111 2020-02-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1044765 111 2020-02-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1044766 111 2020-02-08 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +1044767 111 2020-02-09 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1044768 111 2020-02-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1044769 111 2020-02-11 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1044770 111 2020-02-12 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1044771 111 2020-02-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1044772 111 2020-02-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1044773 111 2020-02-15 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +1044774 111 2020-02-16 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1044775 111 2020-02-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1044776 111 2020-02-18 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1046880 128 2020-01-01 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1046881 128 2020-01-02 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1046882 128 2020-01-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1046883 128 2020-01-04 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +1046884 128 2020-01-05 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1046885 128 2020-01-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1046886 128 2020-01-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1046887 128 2020-01-08 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1046888 128 2020-01-09 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1046889 128 2020-01-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1046890 128 2020-01-11 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +1046891 128 2020-01-12 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1046892 128 2020-01-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1046931 128 2020-02-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1046932 128 2020-02-22 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +1046933 128 2020-02-23 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1049086 142 2019-12-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1049087 142 2019-12-31 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1049032 142 2020-01-01 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1049033 142 2020-01-02 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1049034 142 2020-01-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1049035 142 2020-01-04 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +1049036 142 2020-01-05 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1049037 142 2020-01-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1049038 142 2020-01-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1049039 142 2020-01-08 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1049040 142 2020-01-09 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1049041 142 2020-01-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1049042 142 2020-01-11 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +1049043 142 2020-01-12 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1049044 142 2020-01-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1049045 142 2020-01-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1049046 142 2020-01-15 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1049047 142 2020-01-16 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1049048 142 2020-01-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1049049 142 2020-01-18 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +1049060 142 2020-01-29 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1049061 142 2020-01-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1049062 142 2020-01-31 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1049063 142 2020-02-01 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +1049064 142 2020-02-02 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1049065 142 2020-02-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1049066 142 2020-02-04 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1049067 142 2020-02-05 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1049068 142 2020-02-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1049069 142 2020-02-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1049070 142 2020-02-08 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +1049071 142 2020-02-09 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1049072 142 2020-02-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1049073 142 2020-02-11 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1049074 142 2020-02-12 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1049075 142 2020-02-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1049076 142 2020-02-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1051238 136 2019-12-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1051239 136 2019-12-31 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1051184 136 2020-01-01 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1051185 136 2020-01-02 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1051186 136 2020-01-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1051187 136 2020-01-04 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +1051188 136 2020-01-05 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1051189 136 2020-01-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1051190 136 2020-01-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1051191 136 2020-01-08 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1051192 136 2020-01-09 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1051193 136 2020-01-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1051194 136 2020-01-11 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +1051195 136 2020-01-12 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1051196 136 2020-01-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1051197 136 2020-01-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1051198 136 2020-01-15 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1051229 136 2020-02-15 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +1051230 136 2020-02-16 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1051231 136 2020-02-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1051232 136 2020-02-18 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1051233 136 2020-02-19 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1051234 136 2020-02-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1051235 136 2020-02-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1051236 136 2020-02-22 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +1051237 136 2020-02-23 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1053336 140 2020-01-01 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1053337 140 2020-01-02 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1053338 140 2020-01-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1053339 140 2020-01-04 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +1053340 140 2020-01-05 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1053341 140 2020-01-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1053342 140 2020-01-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1053343 140 2020-01-08 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1053344 140 2020-01-09 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1053345 140 2020-01-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1053346 140 2020-01-11 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +1053347 140 2020-01-12 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1053348 140 2020-01-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1053349 140 2020-01-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1053350 140 2020-01-15 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1053351 140 2020-01-16 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1053352 140 2020-01-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1053353 140 2020-01-18 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +1053358 140 2020-01-23 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1053359 140 2020-01-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1053360 140 2020-01-25 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +1053361 140 2020-01-26 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1053362 140 2020-01-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1053363 140 2020-01-28 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1053364 140 2020-01-29 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1053365 140 2020-01-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1053366 140 2020-01-31 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1055488 139 2020-01-01 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1055489 139 2020-01-02 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1055490 139 2020-01-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1055491 139 2020-01-04 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +1055492 139 2020-01-05 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1055493 139 2020-01-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1055494 139 2020-01-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1055495 139 2020-01-08 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1055496 139 2020-01-09 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1055497 139 2020-01-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1055498 139 2020-01-11 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +1055499 139 2020-01-12 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1055500 139 2020-01-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1055501 139 2020-01-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1055502 139 2020-01-15 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1055503 139 2020-01-16 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1055504 139 2020-01-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1055505 139 2020-01-18 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +1055528 139 2020-02-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1055529 139 2020-02-11 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1055530 139 2020-02-12 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1055531 139 2020-02-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1055532 139 2020-02-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1055534 139 2020-02-16 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1055535 139 2020-02-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1055536 139 2020-02-18 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1055537 139 2020-02-19 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1055538 139 2020-02-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1055539 139 2020-02-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1055540 139 2020-02-22 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +1055541 139 2020-02-23 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1057640 141 2020-01-01 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1057641 141 2020-01-02 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1057642 141 2020-01-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1057643 141 2020-01-04 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +1057644 141 2020-01-05 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1057645 141 2020-01-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1057646 141 2020-01-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1057647 141 2020-01-08 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1057648 141 2020-01-09 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1057649 141 2020-01-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1057650 141 2020-01-11 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +1057651 141 2020-01-12 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1057652 141 2020-01-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1057653 141 2020-01-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1057654 141 2020-01-15 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1057655 141 2020-01-16 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1057656 141 2020-01-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1057657 141 2020-01-18 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +1057658 141 2020-01-19 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1057659 141 2020-01-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1057660 141 2020-01-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1057661 141 2020-01-22 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1057662 141 2020-01-23 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1057663 141 2020-01-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1057664 141 2020-01-25 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +1057665 141 2020-01-26 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1057666 141 2020-01-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1057667 141 2020-01-28 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1057668 141 2020-01-29 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1057669 141 2020-01-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1057670 141 2020-01-31 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1057671 141 2020-02-01 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +1057672 141 2020-02-02 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1057673 141 2020-02-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1057674 141 2020-02-04 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1059846 122 2019-12-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1059847 122 2019-12-31 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1059792 122 2020-01-01 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1059793 122 2020-01-02 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1059794 122 2020-01-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1059795 122 2020-01-04 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +1059796 122 2020-01-05 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1059797 122 2020-01-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1059798 122 2020-01-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1059799 122 2020-01-08 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1059800 122 2020-01-09 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1059801 122 2020-01-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1059802 122 2020-01-11 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +1059803 122 2020-01-12 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1059804 122 2020-01-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1059805 122 2020-01-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1059806 122 2020-01-15 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1059807 122 2020-01-16 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1059808 122 2020-01-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1059809 122 2020-01-18 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +1059826 122 2020-02-04 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1059827 122 2020-02-05 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1059828 122 2020-02-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1059829 122 2020-02-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1059830 122 2020-02-08 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +1059831 122 2020-02-09 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1059832 122 2020-02-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1059833 122 2020-02-11 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1059834 122 2020-02-12 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1059835 122 2020-02-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1059836 122 2020-02-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1059837 122 2020-02-15 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +1059838 122 2020-02-16 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1059839 122 2020-02-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1059840 122 2020-02-18 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1059841 122 2020-02-19 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1059842 122 2020-02-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1059843 122 2020-02-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1061998 106 2019-12-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 04:10:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 04:10:00 +1061999 106 2019-12-31 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 04:10:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 04:10:00 +1061944 106 2020-01-01 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 04:10:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 04:10:00 +1061945 106 2020-01-02 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 04:10:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 04:10:00 +1061946 106 2020-01-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 04:10:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 \N +1061947 106 2020-01-04 \N \N \N \N \N 00:00:00 04:10:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1061948 106 2020-01-05 \N \N \N \N \N 00:00:00 04:10:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1061949 106 2020-01-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 04:10:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 04:10:00 +1061950 106 2020-01-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 04:10:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 04:10:00 +1061951 106 2020-01-08 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 04:10:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 04:10:00 +1061952 106 2020-01-09 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 04:10:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 04:10:00 +1061953 106 2020-01-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 04:10:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 \N +1061954 106 2020-01-11 \N \N \N \N \N 00:00:00 04:10:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1061955 106 2020-01-12 \N \N \N \N \N 00:00:00 04:10:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1061956 106 2020-01-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 04:10:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 04:10:00 +1061957 106 2020-01-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 04:10:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 04:10:00 +1061958 106 2020-01-15 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 04:10:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 04:10:00 +1061959 106 2020-01-16 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 04:10:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 04:10:00 +1061960 106 2020-01-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 04:10:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 \N +1061961 106 2020-01-18 \N \N \N \N \N 00:00:00 04:10:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1061962 106 2020-01-19 \N \N \N \N \N 00:00:00 04:10:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1061963 106 2020-01-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 04:10:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 04:10:00 +1061964 106 2020-01-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 04:10:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 04:10:00 +1061965 106 2020-01-22 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 04:10:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 04:10:00 +1061966 106 2020-01-23 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 04:10:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 04:10:00 +1061967 106 2020-01-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 04:10:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 \N +1061968 106 2020-01-25 \N \N \N \N \N 00:00:00 04:10:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1061969 106 2020-01-26 \N \N \N \N \N 00:00:00 04:10:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1061970 106 2020-01-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 04:10:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 04:10:00 +1064096 110 2020-01-01 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1064097 110 2020-01-02 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1064098 110 2020-01-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1064099 110 2020-01-04 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +1064100 110 2020-01-05 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1064101 110 2020-01-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1064102 110 2020-01-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1064103 110 2020-01-08 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1064104 110 2020-01-09 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1064105 110 2020-01-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1064106 110 2020-01-11 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +1064107 110 2020-01-12 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1064108 110 2020-01-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1064109 110 2020-01-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1064110 110 2020-01-15 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1064111 110 2020-01-16 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1064112 110 2020-01-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1064113 110 2020-01-18 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +1064127 110 2020-02-01 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +1064128 110 2020-02-02 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1064129 110 2020-02-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1064130 110 2020-02-04 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1064131 110 2020-02-05 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1064132 110 2020-02-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1064133 110 2020-02-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1064134 110 2020-02-08 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +1064135 110 2020-02-09 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1064136 110 2020-02-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1064137 110 2020-02-11 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1064138 110 2020-02-12 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1064139 110 2020-02-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1064140 110 2020-02-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1064141 110 2020-02-15 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +1064142 110 2020-02-16 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1064143 110 2020-02-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1064144 110 2020-02-18 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1066248 145 2020-01-01 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1066249 145 2020-01-02 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1066250 145 2020-01-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1066251 145 2020-01-04 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +1066252 145 2020-01-05 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1066253 145 2020-01-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1066254 145 2020-01-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1066255 145 2020-01-08 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1066256 145 2020-01-09 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1066257 145 2020-01-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1066258 145 2020-01-11 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +1066259 145 2020-01-12 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1066260 145 2020-01-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1066261 145 2020-01-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1066262 145 2020-01-15 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1066263 145 2020-01-16 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1068400 148 2020-01-01 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1068401 148 2020-01-02 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1068402 148 2020-01-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1068403 148 2020-01-04 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +1068404 148 2020-01-05 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1068405 148 2020-01-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1068406 148 2020-01-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1068407 148 2020-01-08 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1068408 148 2020-01-09 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1068409 148 2020-01-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1068410 148 2020-01-11 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +1068411 148 2020-01-12 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1068412 148 2020-01-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1068413 148 2020-01-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1068414 148 2020-01-15 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1068415 148 2020-01-16 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1068416 148 2020-01-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1068417 148 2020-01-18 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +1068431 148 2020-02-01 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +1068432 148 2020-02-02 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1068433 148 2020-02-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1068434 148 2020-02-04 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1068435 148 2020-02-05 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1068436 148 2020-02-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1068437 148 2020-02-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1068438 148 2020-02-08 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +1068439 148 2020-02-09 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1068440 148 2020-02-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1068441 148 2020-02-11 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1068442 148 2020-02-12 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1068443 148 2020-02-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1068444 148 2020-02-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1068445 148 2020-02-15 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +1068446 148 2020-02-16 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1068447 148 2020-02-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1068448 148 2020-02-18 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1070606 130 2019-12-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1070607 130 2019-12-31 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1070552 130 2020-01-01 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1070553 130 2020-01-02 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1070554 130 2020-01-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1070555 130 2020-01-04 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +1070556 130 2020-01-05 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1070557 130 2020-01-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1070558 130 2020-01-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1070559 130 2020-01-08 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1070560 130 2020-01-09 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1070561 130 2020-01-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1070562 130 2020-01-11 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +1070563 130 2020-01-12 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +914518 129 2019-12-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +914519 129 2019-12-31 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +914464 129 2020-01-01 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +914465 129 2020-01-02 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +914466 129 2020-01-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +914467 129 2020-01-04 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +914468 129 2020-01-05 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +914469 129 2020-01-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +914470 129 2020-01-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +914471 129 2020-01-08 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +914472 129 2020-01-09 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +914473 129 2020-01-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +914474 129 2020-01-11 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +914475 129 2020-01-12 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +914476 129 2020-01-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +914477 129 2020-01-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +914478 129 2020-01-15 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +914481 129 2020-01-18 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +914479 129 2020-01-16 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +914480 129 2020-01-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +914482 129 2020-01-19 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +914483 129 2020-01-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +914484 129 2020-01-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +914485 129 2020-01-22 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +914486 129 2020-01-23 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +914487 129 2020-01-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +914488 129 2020-01-25 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +914489 129 2020-01-26 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +914517 129 2020-02-23 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1074856 143 2020-01-01 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1074857 143 2020-01-02 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1074858 143 2020-01-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1074859 143 2020-01-04 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +1074860 143 2020-01-05 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1074861 143 2020-01-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1074862 143 2020-01-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1074863 143 2020-01-08 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1074864 143 2020-01-09 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1074865 143 2020-01-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1074866 143 2020-01-11 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +1074867 143 2020-01-12 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1074868 143 2020-01-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1074869 143 2020-01-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1074870 143 2020-01-15 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1074871 143 2020-01-16 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1074872 143 2020-01-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1074873 143 2020-01-18 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +1074887 143 2020-02-01 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +1074888 143 2020-02-02 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1074889 143 2020-02-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1074890 143 2020-02-04 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1074891 143 2020-02-05 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1074892 143 2020-02-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1074893 143 2020-02-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1074894 143 2020-02-08 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +1074895 143 2020-02-09 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1074896 143 2020-02-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1074897 143 2020-02-11 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1074898 143 2020-02-12 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1074899 143 2020-02-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1074900 143 2020-02-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1074901 143 2020-02-15 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 06:40:00 +1074902 143 2020-02-16 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 \N +1074903 143 2020-02-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 +1074904 143 2020-02-18 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 06:40:00 \. @@ -7104,631 +10578,1247 @@ COPY portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend -- COPY portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) FROM stdin; -5512 146 27 2020 1 33:20:00 24:00:00 00:00:00 00:00:00 00:00:00 -09:20:00 2019-12-30 \N 24:00:00 5 5 \N -5513 146 27 2020 2 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-06 \N 40:00:00 7 6 \N -5514 146 27 2020 3 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-13 \N 40:00:00 7 6 \N -5515 146 27 2020 4 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-20 \N 40:00:00 7 6 \N -5516 146 27 2020 5 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-27 \N 40:00:00 7 6 \N -5517 146 27 2020 6 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-03 \N 40:00:00 7 6 \N -5518 146 27 2020 7 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-10 \N 40:00:00 7 6 \N -5519 146 27 2020 8 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-17 \N 40:00:00 7 6 \N -5520 132 27 2020 1 33:20:00 24:00:00 00:00:00 00:00:00 00:00:00 -09:20:00 2019-12-30 \N 24:00:00 5 5 \N -5521 132 27 2020 2 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-06 \N 40:00:00 7 6 \N -5522 132 27 2020 3 20:00:00 24:00:00 00:00:00 00:00:00 00:00:00 04:00:00 2020-01-13 \N 24:00:00 3 3 \N -6142 146 29 2020 9 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-24 \N 40:00:00 7 6 \N -6143 146 29 2020 10 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-02 \N 40:00:00 7 6 \N -6144 146 29 2020 11 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-09 \N 40:00:00 7 6 \N -6145 146 29 2020 12 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-16 \N 40:00:00 7 6 \N -6146 146 29 2020 13 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-23 \N 40:00:00 7 6 \N -6147 146 29 2020 14 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-30 \N 40:00:00 7 6 \N -6148 146 29 2020 15 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-04-06 \N 40:00:00 7 6 \N -6149 146 29 2020 16 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-04-13 \N 40:00:00 7 6 \N -5523 115 27 2020 1 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2019-12-30 \N 40:00:00 7 6 \N -5524 115 27 2020 2 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-06 \N 40:00:00 7 6 \N -5525 115 27 2020 3 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-13 \N 40:00:00 7 6 \N -5526 115 27 2020 4 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-20 \N 40:00:00 7 6 \N -5527 115 27 2020 5 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-27 \N 40:00:00 7 6 \N -5528 115 27 2020 6 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-03 \N 40:00:00 7 6 \N -5529 115 27 2020 7 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-10 \N 40:00:00 7 6 \N -5530 115 27 2020 8 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-17 \N 40:00:00 7 6 \N -6150 115 29 2020 9 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-24 \N 40:00:00 7 6 \N -6151 115 29 2020 10 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-02 \N 40:00:00 7 6 \N -5531 114 27 2020 1 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2019-12-30 \N 40:00:00 7 6 \N -5532 114 27 2020 2 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-06 \N 40:00:00 7 6 \N -5533 114 27 2020 3 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-13 \N 40:00:00 7 6 \N -5534 114 27 2020 4 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-20 \N 40:00:00 7 6 \N -6152 115 29 2020 11 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-09 \N 40:00:00 7 6 \N -6153 115 29 2020 12 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-16 \N 40:00:00 7 6 \N -6154 115 29 2020 13 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-23 \N 40:00:00 7 6 \N -6155 115 29 2020 14 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-30 \N 40:00:00 7 6 \N -6156 115 29 2020 15 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-04-06 \N 40:00:00 7 6 \N -6157 115 29 2020 16 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-04-13 \N 40:00:00 7 6 \N -5535 114 27 2020 5 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-27 \N 40:00:00 7 6 \N -5536 114 27 2020 6 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-03 \N 40:00:00 7 6 \N -5537 114 27 2020 7 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-10 \N 40:00:00 7 6 \N -5538 114 27 2020 8 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-17 \N 40:00:00 7 6 \N -5539 112 27 2020 1 33:20:00 24:00:00 00:00:00 00:00:00 00:00:00 -09:20:00 2019-12-30 \N 24:00:00 5 5 \N -5540 112 27 2020 2 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-06 \N 40:00:00 7 6 \N -5541 112 27 2020 3 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-13 \N 40:00:00 7 6 \N -5542 112 27 2020 4 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-20 \N 40:00:00 7 6 \N -5543 112 27 2020 5 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-27 \N 40:00:00 7 6 \N -5544 112 27 2020 6 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-03 \N 40:00:00 7 6 \N -5545 112 27 2020 7 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-10 \N 40:00:00 7 6 \N -5546 112 27 2020 8 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-17 \N 40:00:00 7 6 \N -6158 114 29 2020 9 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-24 \N 40:00:00 7 6 \N -6159 114 29 2020 10 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-02 \N 40:00:00 7 6 \N -6160 114 29 2020 11 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-09 \N 40:00:00 7 6 \N -6161 114 29 2020 12 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-16 \N 40:00:00 7 6 \N -6162 114 29 2020 13 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-23 \N 40:00:00 7 6 \N -6163 114 29 2020 14 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-30 \N 40:00:00 7 6 \N -6164 114 29 2020 15 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-04-06 \N 40:00:00 7 6 \N -6165 114 29 2020 16 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-04-13 \N 40:00:00 7 6 \N -5547 108 27 2020 2 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-06 \N 40:00:00 7 6 \N -5548 108 27 2020 3 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-13 \N 40:00:00 7 6 \N -5549 108 27 2020 4 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-20 \N 40:00:00 7 6 \N -5550 108 27 2020 5 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-27 \N 40:00:00 7 6 \N -5551 108 27 2020 6 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-03 \N 40:00:00 7 6 \N -5552 108 27 2020 7 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-10 \N 40:00:00 7 6 \N -5553 108 27 2020 8 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-17 \N 40:00:00 7 6 \N -6166 112 29 2020 9 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-24 \N 40:00:00 7 6 \N -6167 112 29 2020 10 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-02 \N 40:00:00 7 6 \N -6168 112 29 2020 11 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-09 \N 40:00:00 7 6 \N -6169 112 29 2020 12 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-16 \N 40:00:00 7 6 \N -6170 112 29 2020 13 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-23 \N 40:00:00 7 6 \N -6171 112 29 2020 14 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-30 \N 40:00:00 7 6 \N -6172 112 29 2020 15 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-04-06 \N 40:00:00 7 6 \N -6173 112 29 2020 16 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-04-13 \N 40:00:00 7 6 \N -5554 135 27 2020 1 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2019-12-30 \N 40:00:00 7 6 \N -5555 135 27 2020 2 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-06 \N 40:00:00 7 6 \N -5556 135 27 2020 3 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-13 \N 40:00:00 7 6 \N -5557 135 27 2020 4 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-20 \N 40:00:00 7 6 \N -5558 135 27 2020 5 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-27 \N 40:00:00 7 6 \N -5559 135 27 2020 6 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-03 \N 40:00:00 7 6 \N -5560 135 27 2020 7 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-10 \N 40:00:00 7 6 \N -5561 135 27 2020 8 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-17 \N 40:00:00 7 6 \N -6174 108 29 2020 9 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-24 \N 40:00:00 7 6 \N -6175 108 29 2020 10 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-02 \N 40:00:00 7 6 \N -5562 127 27 2020 1 33:20:00 24:00:00 00:00:00 00:00:00 00:00:00 -09:20:00 2019-12-30 \N 24:00:00 5 5 \N -5563 127 27 2020 2 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-06 \N 40:00:00 7 6 \N -5564 127 27 2020 3 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-13 \N 40:00:00 7 6 \N -5565 127 27 2020 4 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-20 \N 40:00:00 7 6 \N -5566 127 27 2020 5 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-27 \N 40:00:00 7 6 \N -5567 127 27 2020 6 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-03 \N 40:00:00 7 6 \N -6176 108 29 2020 11 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-09 \N 40:00:00 7 6 \N -6177 108 29 2020 12 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-16 \N 40:00:00 7 6 \N -6178 108 29 2020 13 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-23 \N 40:00:00 7 6 \N -6179 108 29 2020 14 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-30 \N 40:00:00 7 6 \N -6180 108 29 2020 15 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-04-06 \N 40:00:00 7 6 \N -6181 108 29 2020 16 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-04-13 \N 40:00:00 7 6 \N -5568 127 27 2020 7 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-10 \N 40:00:00 7 6 \N -5569 127 27 2020 8 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-17 \N 40:00:00 7 6 \N -5570 149 27 2020 1 33:20:00 24:00:00 00:00:00 00:00:00 00:00:00 -09:20:00 2019-12-30 \N 24:00:00 5 5 \N -5571 149 27 2020 2 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-06 \N 40:00:00 7 6 \N -5572 149 27 2020 3 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-13 \N 40:00:00 7 6 \N -5573 149 27 2020 4 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-20 \N 40:00:00 7 6 \N -5574 149 27 2020 5 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-27 \N 40:00:00 7 6 \N -5575 149 27 2020 6 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-03 \N 40:00:00 7 6 \N -5576 149 27 2020 7 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-10 \N 40:00:00 7 6 \N -5577 149 27 2020 8 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-17 \N 40:00:00 7 6 \N -6182 135 29 2020 9 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-24 \N 40:00:00 7 6 \N -6183 135 29 2020 10 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-02 \N 40:00:00 7 6 \N -6184 135 29 2020 11 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-09 \N 40:00:00 7 6 \N -6185 135 29 2020 12 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-16 \N 40:00:00 7 6 \N -6186 135 29 2020 13 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-23 \N 40:00:00 7 6 \N -6187 135 29 2020 14 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-30 \N 40:00:00 7 6 \N -5578 103 27 2020 1 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2019-12-30 \N 40:00:00 7 6 \N -5579 103 27 2020 2 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-06 \N 40:00:00 7 6 \N -5580 103 27 2020 3 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-13 \N 40:00:00 7 6 \N -6188 135 29 2020 15 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-04-06 \N 40:00:00 7 6 \N -5581 103 27 2020 4 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-20 \N 40:00:00 7 6 \N -5582 103 27 2020 5 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-27 \N 40:00:00 7 6 \N -5583 103 27 2020 6 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-03 \N 40:00:00 7 6 \N -5584 103 27 2020 7 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-10 \N 40:00:00 7 6 \N -5585 103 27 2020 8 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-17 \N 40:00:00 7 6 \N -6189 135 29 2020 16 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-04-13 \N 40:00:00 7 6 \N -5586 121 27 2020 1 33:20:00 24:00:00 00:00:00 00:00:00 00:00:00 -09:20:00 2019-12-30 \N 24:00:00 5 5 \N -5587 121 27 2020 2 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-06 \N 40:00:00 7 6 \N -6190 127 29 2020 9 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-24 \N 40:00:00 7 6 \N -6191 127 29 2020 10 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-02 \N 40:00:00 7 6 \N -6192 127 29 2020 11 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-09 \N 40:00:00 7 6 \N -6193 127 29 2020 12 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-16 \N 40:00:00 7 6 \N -6194 127 29 2020 13 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-23 \N 40:00:00 7 6 \N -6195 127 29 2020 14 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-30 \N 40:00:00 7 6 \N -6196 127 29 2020 15 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-04-06 \N 40:00:00 7 6 \N -6197 127 29 2020 16 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-04-13 \N 40:00:00 7 6 \N -5588 121 27 2020 3 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-13 \N 40:00:00 7 6 \N -5589 121 27 2020 4 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-20 \N 40:00:00 7 6 \N -5590 121 27 2020 5 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-27 \N 40:00:00 7 6 \N -5591 121 27 2020 6 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-03 \N 40:00:00 7 6 \N -5592 121 27 2020 7 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-10 \N 40:00:00 7 6 \N -5593 121 27 2020 8 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-17 \N 40:00:00 7 6 \N -5594 125 27 2020 1 20:00:00 40:00:00 00:00:00 00:00:00 00:00:00 20:00:00 2019-12-30 \N 40:00:00 7 6 \N -5595 125 27 2020 2 20:00:00 40:00:00 00:00:00 00:00:00 00:00:00 20:00:00 2020-01-06 \N 40:00:00 7 6 \N -5596 125 27 2020 3 20:00:00 40:00:00 00:00:00 00:00:00 00:00:00 20:00:00 2020-01-13 \N 40:00:00 7 6 \N -5597 125 27 2020 4 20:00:00 40:00:00 00:00:00 00:00:00 00:00:00 20:00:00 2020-01-20 \N 40:00:00 7 6 \N -5598 125 27 2020 5 20:00:00 40:00:00 00:00:00 00:00:00 00:00:00 20:00:00 2020-01-27 \N 40:00:00 7 6 \N -5599 125 27 2020 6 20:00:00 40:00:00 00:00:00 00:00:00 00:00:00 20:00:00 2020-02-03 \N 40:00:00 7 6 \N -6198 149 29 2020 9 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-24 \N 40:00:00 7 6 \N -6199 149 29 2020 10 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-02 \N 40:00:00 7 6 \N -6200 149 29 2020 11 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-09 \N 40:00:00 7 6 \N -6201 149 29 2020 12 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-16 \N 40:00:00 7 6 \N -6202 149 29 2020 13 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-23 \N 40:00:00 7 6 \N -5600 125 27 2020 7 20:00:00 40:00:00 00:00:00 00:00:00 00:00:00 20:00:00 2020-02-10 \N 40:00:00 7 6 \N -6203 149 29 2020 14 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-30 \N 40:00:00 7 6 \N -6204 149 29 2020 15 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-04-06 \N 40:00:00 7 6 \N -6205 149 29 2020 16 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-04-13 \N 40:00:00 7 6 \N -5601 125 27 2020 8 20:00:00 40:00:00 00:00:00 00:00:00 00:00:00 20:00:00 2020-02-17 \N 40:00:00 7 6 \N -5602 119 27 2020 1 33:20:00 24:00:00 00:00:00 00:00:00 00:00:00 -09:20:00 2019-12-30 \N 24:00:00 5 5 \N -5603 119 27 2020 2 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-06 \N 40:00:00 7 6 \N -5604 119 27 2020 3 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-13 \N 40:00:00 7 6 \N -5605 119 27 2020 4 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-20 \N 40:00:00 7 6 \N -5606 119 27 2020 5 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-27 \N 40:00:00 7 6 \N -5607 119 27 2020 6 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-03 \N 40:00:00 7 6 \N -5608 119 27 2020 7 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-10 \N 40:00:00 7 6 \N -5609 119 27 2020 8 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-17 \N 40:00:00 7 6 \N -6206 103 29 2020 9 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-24 \N 40:00:00 7 6 \N -6207 103 29 2020 10 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-02 \N 40:00:00 7 6 \N -6208 103 29 2020 11 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-09 \N 40:00:00 7 6 \N -6209 103 29 2020 12 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-16 \N 40:00:00 7 6 \N -6210 103 29 2020 13 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-23 \N 40:00:00 7 6 \N -6211 103 29 2020 14 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-30 \N 40:00:00 7 6 \N -6212 103 29 2020 15 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-04-06 \N 40:00:00 7 6 \N -6213 103 29 2020 16 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-04-13 \N 40:00:00 7 6 \N -5610 113 27 2020 1 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2019-12-30 \N 40:00:00 7 6 \N -5611 113 27 2020 2 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-06 \N 40:00:00 7 6 \N -5612 113 27 2020 3 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-13 \N 40:00:00 7 6 \N -5613 113 27 2020 4 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-20 \N 40:00:00 7 6 \N -5614 113 27 2020 5 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-27 \N 40:00:00 7 6 \N -5615 113 27 2020 6 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-03 \N 40:00:00 7 6 \N -5616 113 27 2020 7 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-10 \N 40:00:00 7 6 \N -5617 113 27 2020 8 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-17 \N 40:00:00 7 6 \N -5618 147 27 2020 1 33:20:00 24:00:00 00:00:00 00:00:00 00:00:00 -09:20:00 2019-12-30 \N 24:00:00 5 5 \N -5619 147 27 2020 2 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-06 \N 40:00:00 7 6 \N -6214 121 29 2020 9 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-24 \N 40:00:00 7 6 \N -6215 121 29 2020 10 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-02 \N 40:00:00 7 6 \N -6216 121 29 2020 11 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-09 \N 40:00:00 7 6 \N -6217 121 29 2020 12 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-16 \N 40:00:00 7 6 \N -6218 121 29 2020 13 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-23 \N 40:00:00 7 6 \N -6219 121 29 2020 14 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-30 \N 40:00:00 7 6 \N -6220 121 29 2020 15 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-04-06 \N 40:00:00 7 6 \N -6221 121 29 2020 16 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-04-13 \N 40:00:00 7 6 \N -5620 147 27 2020 3 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-13 \N 40:00:00 7 6 \N -5621 147 27 2020 4 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-20 \N 40:00:00 7 6 \N -5622 147 27 2020 5 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-27 \N 40:00:00 7 6 \N -5623 147 27 2020 6 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-03 \N 40:00:00 7 6 \N -5624 147 27 2020 7 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-10 \N 40:00:00 7 6 \N -5625 147 27 2020 8 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-17 \N 40:00:00 7 6 \N -5626 131 27 2020 1 20:00:00 40:00:00 00:00:00 00:00:00 00:00:00 20:00:00 2019-12-30 \N 40:00:00 7 6 \N -5627 131 27 2020 2 20:00:00 40:00:00 00:00:00 00:00:00 00:00:00 20:00:00 2020-01-06 \N 40:00:00 7 6 \N -5628 131 27 2020 3 20:00:00 40:00:00 00:00:00 00:00:00 00:00:00 20:00:00 2020-01-13 \N 40:00:00 7 6 \N -5629 131 27 2020 4 20:00:00 40:00:00 00:00:00 00:00:00 00:00:00 20:00:00 2020-01-20 \N 40:00:00 7 6 \N -5630 131 27 2020 5 20:00:00 40:00:00 00:00:00 00:00:00 00:00:00 20:00:00 2020-01-27 \N 40:00:00 7 6 \N -5631 131 27 2020 6 20:00:00 40:00:00 00:00:00 00:00:00 00:00:00 20:00:00 2020-02-03 \N 40:00:00 7 6 \N -5632 131 27 2020 7 20:00:00 40:00:00 00:00:00 00:00:00 00:00:00 20:00:00 2020-02-10 \N 40:00:00 7 6 \N -6222 125 29 2020 9 20:00:00 40:00:00 00:00:00 00:00:00 00:00:00 20:00:00 2020-02-24 \N 40:00:00 7 6 \N -6223 125 29 2020 10 20:00:00 40:00:00 00:00:00 00:00:00 00:00:00 20:00:00 2020-03-02 \N 40:00:00 7 6 \N -6224 125 29 2020 11 20:00:00 40:00:00 00:00:00 00:00:00 00:00:00 20:00:00 2020-03-09 \N 40:00:00 7 6 \N -6225 125 29 2020 12 20:00:00 40:00:00 00:00:00 00:00:00 00:00:00 20:00:00 2020-03-16 \N 40:00:00 7 6 \N -6226 125 29 2020 13 20:00:00 40:00:00 00:00:00 00:00:00 00:00:00 20:00:00 2020-03-23 \N 40:00:00 7 6 \N -6227 125 29 2020 14 20:00:00 40:00:00 00:00:00 00:00:00 00:00:00 20:00:00 2020-03-30 \N 40:00:00 7 6 \N -6228 125 29 2020 15 20:00:00 40:00:00 00:00:00 00:00:00 00:00:00 20:00:00 2020-04-06 \N 40:00:00 7 6 \N -6229 125 29 2020 16 20:00:00 40:00:00 00:00:00 00:00:00 00:00:00 20:00:00 2020-04-13 \N 40:00:00 7 6 \N -5633 131 27 2020 8 20:00:00 40:00:00 00:00:00 00:00:00 00:00:00 20:00:00 2020-02-17 \N 40:00:00 7 6 \N -5634 104 27 2020 1 30:00:00 40:00:00 00:00:00 00:00:00 00:00:00 10:00:00 2019-12-30 \N 40:00:00 7 6 \N -5635 104 27 2020 2 30:00:00 40:00:00 00:00:00 00:00:00 00:00:00 10:00:00 2020-01-06 \N 40:00:00 7 6 \N -5636 104 27 2020 3 30:00:00 40:00:00 00:00:00 00:00:00 00:00:00 10:00:00 2020-01-13 \N 40:00:00 7 6 \N -5637 104 27 2020 4 30:00:00 40:00:00 00:00:00 00:00:00 00:00:00 10:00:00 2020-01-20 \N 40:00:00 7 6 \N -5638 104 27 2020 5 30:00:00 40:00:00 00:00:00 00:00:00 00:00:00 10:00:00 2020-01-27 \N 40:00:00 7 6 \N -5639 104 27 2020 6 30:00:00 40:00:00 00:00:00 00:00:00 00:00:00 10:00:00 2020-02-03 \N 40:00:00 7 6 \N -5640 104 27 2020 7 30:00:00 40:00:00 00:00:00 00:00:00 00:00:00 10:00:00 2020-02-10 \N 40:00:00 7 6 \N -5641 104 27 2020 8 30:00:00 40:00:00 00:00:00 00:00:00 00:00:00 10:00:00 2020-02-17 \N 40:00:00 7 6 \N -5642 151 27 2020 5 13:20:00 00:00:00 00:00:00 00:00:00 00:00:00 -13:20:00 2020-01-27 \N 00:00:00 2 2 \N -6230 119 29 2020 9 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-24 \N 40:00:00 7 6 \N -6231 119 29 2020 10 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-02 \N 40:00:00 7 6 \N -6232 119 29 2020 11 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-09 \N 40:00:00 7 6 \N -6233 119 29 2020 12 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-16 \N 40:00:00 7 6 \N -6234 119 29 2020 13 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-23 \N 40:00:00 7 6 \N -6235 119 29 2020 14 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-30 \N 40:00:00 7 6 \N -6236 119 29 2020 15 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-04-06 \N 40:00:00 7 6 \N -6237 119 29 2020 16 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-04-13 \N 40:00:00 7 6 \N -6238 113 29 2020 9 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-24 \N 40:00:00 7 6 \N -6239 113 29 2020 10 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-02 \N 40:00:00 7 6 \N -5643 151 27 2020 6 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-03 \N 40:00:00 7 6 \N -5644 151 27 2020 7 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-10 \N 40:00:00 7 6 \N -5645 151 27 2020 8 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-17 \N 40:00:00 7 6 \N -5646 138 27 2020 1 33:20:00 24:00:00 00:00:00 00:00:00 00:00:00 -09:20:00 2019-12-30 \N 24:00:00 5 5 \N -5647 138 27 2020 2 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-06 \N 40:00:00 7 6 \N -5648 138 27 2020 3 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-13 \N 40:00:00 7 6 \N -5649 138 27 2020 4 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-20 \N 40:00:00 7 6 \N -5650 138 27 2020 5 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-27 \N 40:00:00 7 6 \N -5651 138 27 2020 6 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-03 \N 40:00:00 7 6 \N -5652 138 27 2020 7 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-10 \N 40:00:00 7 6 \N -5653 138 27 2020 8 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-17 \N 40:00:00 7 6 \N -6240 113 29 2020 11 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-09 \N 40:00:00 7 6 \N -6241 113 29 2020 12 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-16 \N 40:00:00 7 6 \N -6242 113 29 2020 13 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-23 \N 40:00:00 7 6 \N -6243 113 29 2020 14 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-30 \N 40:00:00 7 6 \N -6244 113 29 2020 15 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-04-06 \N 40:00:00 7 6 \N -6245 113 29 2020 16 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-04-13 \N 40:00:00 7 6 \N -5654 105 27 2020 1 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2019-12-30 \N 40:00:00 7 6 \N -5655 105 27 2020 2 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-06 \N 40:00:00 7 6 \N -5656 105 27 2020 3 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-13 \N 40:00:00 7 6 \N -5657 105 27 2020 4 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-20 \N 40:00:00 7 6 \N -5658 105 27 2020 5 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-27 \N 40:00:00 7 6 \N -5659 105 27 2020 6 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-03 \N 40:00:00 7 6 \N -5660 105 27 2020 7 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-10 \N 40:00:00 7 6 \N -5661 105 27 2020 8 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-17 \N 40:00:00 7 6 \N -6246 147 29 2020 9 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-24 \N 40:00:00 7 6 \N -6247 147 29 2020 10 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-02 \N 40:00:00 7 6 \N -6248 147 29 2020 11 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-09 \N 40:00:00 7 6 \N -6249 147 29 2020 12 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-16 \N 40:00:00 7 6 \N -6250 147 29 2020 13 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-23 \N 40:00:00 7 6 \N -6251 147 29 2020 14 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-30 \N 40:00:00 7 6 \N -6252 147 29 2020 15 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-04-06 \N 40:00:00 7 6 \N -6253 147 29 2020 16 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-04-13 \N 40:00:00 7 6 \N -6254 131 29 2020 9 20:00:00 40:00:00 00:00:00 00:00:00 00:00:00 20:00:00 2020-02-24 \N 40:00:00 7 6 \N -6255 131 29 2020 10 20:00:00 40:00:00 00:00:00 00:00:00 00:00:00 20:00:00 2020-03-02 \N 40:00:00 7 6 \N -5662 134 27 2020 1 33:20:00 24:00:00 00:00:00 00:00:00 00:00:00 -09:20:00 2019-12-30 \N 24:00:00 5 5 \N -5663 134 27 2020 2 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-06 \N 40:00:00 7 6 \N -5664 134 27 2020 3 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-13 \N 40:00:00 7 6 \N -5665 134 27 2020 4 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-20 \N 40:00:00 7 6 \N -5666 134 27 2020 5 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-27 \N 40:00:00 7 6 \N -5667 134 27 2020 6 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-03 \N 40:00:00 7 6 \N -5668 134 27 2020 7 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-10 \N 40:00:00 7 6 \N -5669 134 27 2020 8 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-17 \N 40:00:00 7 6 \N -6256 131 29 2020 11 20:00:00 40:00:00 00:00:00 00:00:00 00:00:00 20:00:00 2020-03-09 \N 40:00:00 7 6 \N -5670 144 27 2020 1 33:20:00 24:00:00 00:00:00 00:00:00 00:00:00 -09:20:00 2019-12-30 \N 24:00:00 5 5 \N -5671 144 27 2020 2 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-06 \N 40:00:00 7 6 \N -5672 144 27 2020 3 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-13 \N 40:00:00 7 6 \N -5673 144 27 2020 4 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-20 \N 40:00:00 7 6 \N -5674 144 27 2020 5 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-27 \N 40:00:00 7 6 \N -5675 144 27 2020 6 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-03 \N 40:00:00 7 6 \N -5676 144 27 2020 7 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-10 \N 40:00:00 7 6 \N -5677 144 27 2020 8 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-17 \N 40:00:00 7 6 \N -5678 102 27 2020 1 33:20:00 24:00:00 00:00:00 00:00:00 00:00:00 -09:20:00 2019-12-30 \N 24:00:00 5 5 \N -5679 102 27 2020 2 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-06 \N 40:00:00 7 6 \N -5680 102 27 2020 3 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-13 \N 40:00:00 7 6 \N -5681 102 27 2020 4 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-20 \N 40:00:00 7 6 \N -5682 102 27 2020 5 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-27 \N 40:00:00 7 6 \N -5683 102 27 2020 6 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-03 \N 40:00:00 7 6 \N -5684 102 27 2020 7 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-10 \N 40:00:00 7 6 \N -5685 102 27 2020 8 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-17 \N 40:00:00 7 6 \N -5686 109 27 2020 1 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2019-12-30 \N 40:00:00 7 6 \N -5687 109 27 2020 2 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-06 \N 40:00:00 7 6 \N -5688 109 27 2020 3 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-13 \N 40:00:00 7 6 \N -5689 109 27 2020 4 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-20 \N 40:00:00 7 6 \N -5690 109 27 2020 5 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-27 \N 40:00:00 7 6 \N -5691 109 27 2020 6 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-03 \N 40:00:00 7 6 \N -5692 109 27 2020 7 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-10 \N 40:00:00 7 6 \N -5693 109 27 2020 8 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-17 \N 40:00:00 7 6 \N -5694 118 27 2020 1 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2019-12-30 \N 40:00:00 7 6 \N -6257 131 29 2020 12 20:00:00 40:00:00 00:00:00 00:00:00 00:00:00 20:00:00 2020-03-16 \N 40:00:00 7 6 \N -6258 131 29 2020 13 20:00:00 40:00:00 00:00:00 00:00:00 00:00:00 20:00:00 2020-03-23 \N 40:00:00 7 6 \N -6259 131 29 2020 14 20:00:00 40:00:00 00:00:00 00:00:00 00:00:00 20:00:00 2020-03-30 \N 40:00:00 7 6 \N -6260 131 29 2020 15 20:00:00 40:00:00 00:00:00 00:00:00 00:00:00 20:00:00 2020-04-06 \N 40:00:00 7 6 \N -6261 131 29 2020 16 20:00:00 40:00:00 00:00:00 00:00:00 00:00:00 20:00:00 2020-04-13 \N 40:00:00 7 6 \N -5695 118 27 2020 2 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-06 \N 40:00:00 7 6 \N -5696 118 27 2020 3 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-13 \N 40:00:00 7 6 \N -5697 118 27 2020 4 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-20 \N 40:00:00 7 6 \N -5698 118 27 2020 5 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-27 \N 40:00:00 7 6 \N -5699 118 27 2020 6 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-03 \N 40:00:00 7 6 \N -5700 118 27 2020 7 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-10 \N 40:00:00 7 6 \N -5701 118 27 2020 8 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-17 \N 40:00:00 7 6 \N -5702 133 27 2020 1 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2019-12-30 \N 40:00:00 7 6 \N -5703 133 27 2020 2 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-06 \N 40:00:00 7 6 \N -5704 133 27 2020 3 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-13 \N 40:00:00 7 6 \N -5705 133 27 2020 4 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-20 \N 40:00:00 7 6 \N -5706 133 27 2020 5 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-27 \N 40:00:00 7 6 \N -5707 133 27 2020 6 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-03 \N 40:00:00 7 6 \N -5708 133 27 2020 7 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-10 \N 40:00:00 7 6 \N -5709 133 27 2020 8 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-17 \N 40:00:00 7 6 \N -5710 111 27 2020 1 33:20:00 24:00:00 00:00:00 00:00:00 00:00:00 -09:20:00 2019-12-30 \N 24:00:00 5 5 \N -5711 111 27 2020 2 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-06 \N 40:00:00 7 6 \N -5712 111 27 2020 3 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-13 \N 40:00:00 7 6 \N -5713 111 27 2020 4 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-20 \N 40:00:00 7 6 \N -5714 111 27 2020 5 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-27 \N 40:00:00 7 6 \N -5715 111 27 2020 6 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-03 \N 40:00:00 7 6 \N -5716 111 27 2020 7 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-10 \N 40:00:00 7 6 \N -5717 111 27 2020 8 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-17 \N 40:00:00 7 6 \N -6262 104 29 2020 9 30:00:00 40:00:00 00:00:00 00:00:00 00:00:00 10:00:00 2020-02-24 \N 40:00:00 7 6 \N -6263 104 29 2020 10 30:00:00 40:00:00 00:00:00 00:00:00 00:00:00 10:00:00 2020-03-02 \N 40:00:00 7 6 \N -6264 104 29 2020 11 30:00:00 40:00:00 00:00:00 00:00:00 00:00:00 10:00:00 2020-03-09 \N 40:00:00 7 6 \N -6265 104 29 2020 12 30:00:00 40:00:00 00:00:00 00:00:00 00:00:00 10:00:00 2020-03-16 \N 40:00:00 7 6 \N -6266 104 29 2020 13 30:00:00 40:00:00 00:00:00 00:00:00 00:00:00 10:00:00 2020-03-23 \N 40:00:00 7 6 \N -5718 128 27 2020 1 33:20:00 24:00:00 00:00:00 00:00:00 00:00:00 -09:20:00 2019-12-30 \N 24:00:00 5 5 \N -5719 128 27 2020 2 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-06 \N 40:00:00 7 6 \N -5720 128 27 2020 3 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-13 \N 40:00:00 7 6 \N -5721 128 27 2020 4 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-20 \N 40:00:00 7 6 \N -5722 128 27 2020 5 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-27 \N 40:00:00 7 6 \N -5723 128 27 2020 6 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-03 \N 40:00:00 7 6 \N -5724 128 27 2020 7 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-10 \N 40:00:00 7 6 \N -5725 128 27 2020 8 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-17 \N 40:00:00 7 6 \N -5726 142 27 2020 1 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2019-12-30 \N 40:00:00 7 6 \N -5727 142 27 2020 2 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-06 \N 40:00:00 7 6 \N -5728 142 27 2020 3 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-13 \N 40:00:00 7 6 \N -5729 142 27 2020 4 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-20 \N 40:00:00 7 6 \N -5730 142 27 2020 5 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-27 \N 40:00:00 7 6 \N -5731 142 27 2020 6 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-03 \N 40:00:00 7 6 \N -5732 142 27 2020 7 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-10 \N 40:00:00 7 6 \N -5733 142 27 2020 8 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-17 \N 40:00:00 7 6 \N -5734 136 27 2020 1 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2019-12-30 \N 40:00:00 7 6 \N -5735 136 27 2020 2 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-06 \N 40:00:00 7 6 \N -5736 136 27 2020 3 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-13 \N 40:00:00 7 6 \N -5737 136 27 2020 4 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-20 \N 40:00:00 7 6 \N -5738 136 27 2020 5 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-27 \N 40:00:00 7 6 \N -5739 136 27 2020 6 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-03 \N 40:00:00 7 6 \N -5740 136 27 2020 7 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-10 \N 40:00:00 7 6 \N -6267 104 29 2020 14 30:00:00 40:00:00 00:00:00 00:00:00 00:00:00 10:00:00 2020-03-30 \N 40:00:00 7 6 \N -6268 104 29 2020 15 30:00:00 40:00:00 00:00:00 00:00:00 00:00:00 10:00:00 2020-04-06 \N 40:00:00 7 6 \N -6269 104 29 2020 16 30:00:00 40:00:00 00:00:00 00:00:00 00:00:00 10:00:00 2020-04-13 \N 40:00:00 7 6 \N -5741 136 27 2020 8 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-17 \N 40:00:00 7 6 \N -5742 140 27 2020 1 33:20:00 24:00:00 00:00:00 00:00:00 00:00:00 -09:20:00 2019-12-30 \N 24:00:00 5 5 \N -5743 140 27 2020 2 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-06 \N 40:00:00 7 6 \N -5744 140 27 2020 3 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-13 \N 40:00:00 7 6 \N -5745 140 27 2020 4 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-20 \N 40:00:00 7 6 \N -5746 140 27 2020 5 33:20:00 40:00:00 00:00:00 00:00:00 00:00:00 06:40:00 2020-01-27 \N 40:00:00 5 5 \N -5747 139 27 2020 1 33:20:00 24:00:00 00:00:00 00:00:00 00:00:00 -09:20:00 2019-12-30 \N 24:00:00 5 5 \N -5748 139 27 2020 2 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-06 \N 40:00:00 7 6 \N -5749 139 27 2020 3 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-13 \N 40:00:00 7 6 \N -5750 139 27 2020 4 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-20 \N 40:00:00 7 6 \N -5751 139 27 2020 5 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-27 \N 40:00:00 7 6 \N -5752 139 27 2020 6 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-03 \N 40:00:00 7 6 \N -5753 139 27 2020 7 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-10 \N 40:00:00 7 6 \N -5754 139 27 2020 8 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-17 \N 40:00:00 7 6 \N -5755 141 27 2020 1 33:20:00 24:00:00 00:00:00 00:00:00 00:00:00 -09:20:00 2019-12-30 \N 24:00:00 5 5 \N -5756 141 27 2020 2 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-06 \N 40:00:00 7 6 \N -5757 141 27 2020 3 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-13 \N 40:00:00 7 6 \N -5758 141 27 2020 4 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-20 \N 40:00:00 7 6 \N -5759 141 27 2020 5 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-27 \N 40:00:00 7 6 \N -5760 141 27 2020 6 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-03 \N 40:00:00 7 6 \N -5761 141 27 2020 7 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-10 \N 40:00:00 7 6 \N -5762 141 27 2020 8 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-17 \N 40:00:00 7 6 \N -6270 151 29 2020 9 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-24 \N 40:00:00 7 6 \N -6271 151 29 2020 10 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-02 \N 40:00:00 7 6 \N -6272 151 29 2020 11 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-09 \N 40:00:00 7 6 \N -6273 151 29 2020 12 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-16 \N 40:00:00 7 6 \N -6274 151 29 2020 13 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-23 \N 40:00:00 7 6 \N -6275 151 29 2020 14 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-30 \N 40:00:00 7 6 \N -6276 151 29 2020 15 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-04-06 \N 40:00:00 7 6 \N -6277 151 29 2020 16 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-04-13 \N 40:00:00 7 6 \N -5763 122 27 2020 1 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2019-12-30 \N 40:00:00 7 6 \N -5764 122 27 2020 2 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-06 \N 40:00:00 7 6 \N -5765 122 27 2020 3 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-13 \N 40:00:00 7 6 \N -5766 122 27 2020 4 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-20 \N 40:00:00 7 6 \N -5767 122 27 2020 5 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-27 \N 40:00:00 7 6 \N -5768 122 27 2020 6 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-03 \N 40:00:00 7 6 \N -5769 122 27 2020 7 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-10 \N 40:00:00 7 6 \N -5770 122 27 2020 8 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-17 \N 40:00:00 7 6 \N -5771 106 27 2020 1 12:30:00 40:00:00 00:00:00 00:00:00 00:00:00 27:30:00 2019-12-30 \N 40:00:00 7 6 \N -5772 106 27 2020 2 12:30:00 40:00:00 00:00:00 00:00:00 00:00:00 27:30:00 2020-01-06 \N 40:00:00 7 6 \N -5773 106 27 2020 3 12:30:00 40:00:00 00:00:00 00:00:00 00:00:00 27:30:00 2020-01-13 \N 40:00:00 7 6 \N -5774 106 27 2020 4 12:30:00 40:00:00 00:00:00 00:00:00 00:00:00 27:30:00 2020-01-20 \N 40:00:00 7 6 \N -5775 106 27 2020 5 12:30:00 40:00:00 00:00:00 00:00:00 00:00:00 27:30:00 2020-01-27 \N 40:00:00 7 6 \N -5776 106 27 2020 6 12:30:00 40:00:00 00:00:00 00:00:00 00:00:00 27:30:00 2020-02-03 \N 40:00:00 7 6 \N -5777 106 27 2020 7 12:30:00 40:00:00 00:00:00 00:00:00 00:00:00 27:30:00 2020-02-10 \N 40:00:00 7 6 \N -5778 106 27 2020 8 12:30:00 40:00:00 00:00:00 00:00:00 00:00:00 27:30:00 2020-02-17 \N 40:00:00 7 6 \N -5779 110 27 2020 1 33:20:00 24:00:00 00:00:00 00:00:00 00:00:00 -09:20:00 2019-12-30 \N 24:00:00 5 5 \N -5780 110 27 2020 2 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-06 \N 40:00:00 7 6 \N -5781 110 27 2020 3 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-13 \N 40:00:00 7 6 \N -6278 138 29 2020 9 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-24 \N 40:00:00 7 6 \N -6279 138 29 2020 10 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-02 \N 40:00:00 7 6 \N -6280 138 29 2020 11 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-09 \N 40:00:00 7 6 \N -5782 110 27 2020 4 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-20 \N 40:00:00 7 6 \N -5783 110 27 2020 5 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-27 \N 40:00:00 7 6 \N -5784 110 27 2020 6 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-03 \N 40:00:00 7 6 \N -5785 110 27 2020 7 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-10 \N 40:00:00 7 6 \N -5786 110 27 2020 8 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-17 \N 40:00:00 7 6 \N -5787 145 27 2020 1 33:20:00 24:00:00 00:00:00 00:00:00 00:00:00 -09:20:00 2019-12-30 \N 24:00:00 5 5 \N -5788 145 27 2020 2 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-06 \N 40:00:00 7 6 \N -5789 145 27 2020 3 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-13 \N 40:00:00 7 6 \N -5790 145 27 2020 4 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-20 \N 40:00:00 7 6 \N -5791 145 27 2020 5 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-27 \N 40:00:00 7 6 \N -5792 145 27 2020 6 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-03 \N 40:00:00 7 6 \N -5793 145 27 2020 7 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-10 \N 40:00:00 7 6 \N -5794 145 27 2020 8 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-17 \N 40:00:00 7 6 \N -5795 148 27 2020 1 33:20:00 24:00:00 00:00:00 00:00:00 00:00:00 -09:20:00 2019-12-30 \N 24:00:00 5 5 \N -5796 148 27 2020 2 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-06 \N 40:00:00 7 6 \N -5797 148 27 2020 3 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-13 \N 40:00:00 7 6 \N -5798 148 27 2020 4 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-20 \N 40:00:00 7 6 \N -5799 148 27 2020 5 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-27 \N 40:00:00 7 6 \N -5800 148 27 2020 6 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-03 \N 40:00:00 7 6 \N -5801 148 27 2020 7 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-10 \N 40:00:00 7 6 \N -5802 148 27 2020 8 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-17 \N 40:00:00 7 6 \N -6281 138 29 2020 12 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-16 \N 40:00:00 7 6 \N -6282 138 29 2020 13 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-23 \N 40:00:00 7 6 \N -6283 138 29 2020 14 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-30 \N 40:00:00 7 6 \N -6284 138 29 2020 15 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-04-06 \N 40:00:00 7 6 \N -6285 138 29 2020 16 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-04-13 \N 40:00:00 7 6 \N -5803 130 27 2020 1 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2019-12-30 \N 40:00:00 7 6 \N -5804 130 27 2020 2 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-06 \N 40:00:00 7 6 \N -5805 130 27 2020 3 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-13 \N 40:00:00 7 6 \N -5806 130 27 2020 4 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-20 \N 40:00:00 7 6 \N -5807 130 27 2020 5 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-27 \N 40:00:00 7 6 \N -5808 130 27 2020 6 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-03 \N 40:00:00 7 6 \N -5809 130 27 2020 7 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-10 \N 40:00:00 7 6 \N -5810 130 27 2020 8 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-17 \N 40:00:00 7 6 \N -5256 129 27 2020 1 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2019-12-30 \N 40:00:00 7 6 \N -5257 129 27 2020 2 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-06 \N 40:00:00 7 6 \N -5258 129 27 2020 3 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-13 \N 40:00:00 7 6 \N -5259 129 27 2020 4 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-20 \N 40:00:00 7 6 \N -5260 129 27 2020 5 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-27 \N 40:00:00 7 6 \N -5261 129 27 2020 6 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-03 \N 40:00:00 7 6 \N -5262 129 27 2020 7 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-10 \N 40:00:00 7 6 \N -5263 129 27 2020 8 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-17 \N 40:00:00 7 6 \N -5819 143 27 2020 1 33:20:00 24:00:00 00:00:00 00:00:00 00:00:00 -09:20:00 2019-12-30 \N 24:00:00 5 5 \N -5820 143 27 2020 2 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-06 \N 40:00:00 7 6 \N -5821 143 27 2020 3 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-13 \N 40:00:00 7 6 \N -5822 143 27 2020 4 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-20 \N 40:00:00 7 6 \N -5823 143 27 2020 5 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-27 \N 40:00:00 7 6 \N -5824 143 27 2020 6 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-03 \N 40:00:00 7 6 \N -5825 143 27 2020 7 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-10 \N 40:00:00 7 6 \N -5826 143 27 2020 8 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-17 \N 40:00:00 7 6 \N -6286 105 29 2020 9 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-24 \N 40:00:00 7 6 \N -6287 105 29 2020 10 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-02 \N 40:00:00 7 6 \N -6288 105 29 2020 11 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-09 \N 40:00:00 7 6 \N -6289 105 29 2020 12 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-16 \N 40:00:00 7 6 \N -6290 105 29 2020 13 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-23 \N 40:00:00 7 6 \N -6291 105 29 2020 14 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-30 \N 40:00:00 7 6 \N -6292 105 29 2020 15 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-04-06 \N 40:00:00 7 6 \N -6293 105 29 2020 16 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-04-13 \N 40:00:00 7 6 \N -6294 134 29 2020 9 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-24 \N 40:00:00 7 6 \N -6295 134 29 2020 10 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-02 \N 40:00:00 7 6 \N -6296 134 29 2020 11 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-09 \N 40:00:00 7 6 \N -6297 134 29 2020 12 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-16 \N 40:00:00 7 6 \N -6298 134 29 2020 13 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-23 \N 40:00:00 7 6 \N -6299 134 29 2020 14 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-30 \N 40:00:00 7 6 \N -6300 134 29 2020 15 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-04-06 \N 40:00:00 7 6 \N -6301 134 29 2020 16 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-04-13 \N 40:00:00 7 6 \N -6302 144 29 2020 9 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-24 \N 40:00:00 7 6 \N -6303 144 29 2020 10 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-02 \N 40:00:00 7 6 \N -6304 144 29 2020 11 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-09 \N 40:00:00 7 6 \N -6305 144 29 2020 12 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-16 \N 40:00:00 7 6 \N -6306 144 29 2020 13 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-23 \N 40:00:00 7 6 \N -6307 144 29 2020 14 13:20:00 16:00:00 00:00:00 00:00:00 00:00:00 02:40:00 2020-03-30 \N 16:00:00 2 2 \N -6308 102 29 2020 9 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-24 \N 40:00:00 7 6 \N -6309 102 29 2020 10 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-02 \N 40:00:00 7 6 \N -6310 102 29 2020 11 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-09 \N 40:00:00 7 6 \N -6311 102 29 2020 12 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-16 \N 40:00:00 7 6 \N -6312 102 29 2020 13 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-23 \N 40:00:00 7 6 \N -6313 102 29 2020 14 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-30 \N 40:00:00 7 6 \N -6314 102 29 2020 15 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-04-06 \N 40:00:00 7 6 \N -6315 102 29 2020 16 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-04-13 \N 40:00:00 7 6 \N -6316 109 29 2020 9 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-24 \N 40:00:00 7 6 \N -6317 109 29 2020 10 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-02 \N 40:00:00 7 6 \N -6318 109 29 2020 11 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-09 \N 40:00:00 7 6 \N -6319 109 29 2020 12 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-16 \N 40:00:00 7 6 \N -6320 109 29 2020 13 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-23 \N 40:00:00 7 6 \N -6321 109 29 2020 14 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-30 \N 40:00:00 7 6 \N -6322 109 29 2020 15 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-04-06 \N 40:00:00 7 6 \N -6323 109 29 2020 16 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-04-13 \N 40:00:00 7 6 \N -6324 118 29 2020 9 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-24 \N 40:00:00 7 6 \N -6325 118 29 2020 10 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-02 \N 40:00:00 7 6 \N -6326 118 29 2020 11 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-09 \N 40:00:00 7 6 \N -6327 118 29 2020 12 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-16 \N 40:00:00 7 6 \N -6328 118 29 2020 13 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-23 \N 40:00:00 7 6 \N -6329 118 29 2020 14 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-30 \N 40:00:00 7 6 \N -6330 118 29 2020 15 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-04-06 \N 40:00:00 7 6 \N -6331 118 29 2020 16 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-04-13 \N 40:00:00 7 6 \N -6332 133 29 2020 9 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-24 \N 40:00:00 7 6 \N -6333 133 29 2020 10 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-02 \N 40:00:00 7 6 \N -6334 133 29 2020 11 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-09 \N 40:00:00 7 6 \N -6335 133 29 2020 12 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-16 \N 40:00:00 7 6 \N -6336 133 29 2020 13 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-23 \N 40:00:00 7 6 \N -6337 133 29 2020 14 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-30 \N 40:00:00 7 6 \N -6338 133 29 2020 15 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-04-06 \N 40:00:00 7 6 \N -6339 133 29 2020 16 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-04-13 \N 40:00:00 7 6 \N -6340 111 29 2020 9 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-24 \N 40:00:00 7 6 \N -6341 111 29 2020 10 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-02 \N 40:00:00 7 6 \N -6342 111 29 2020 11 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-09 \N 40:00:00 7 6 \N -6343 111 29 2020 12 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-16 \N 40:00:00 7 6 \N -6344 111 29 2020 13 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-23 \N 40:00:00 7 6 \N -6345 111 29 2020 14 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-30 \N 40:00:00 7 6 \N -6346 111 29 2020 15 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-04-06 \N 40:00:00 7 6 \N -6347 111 29 2020 16 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-04-13 \N 40:00:00 7 6 \N -6348 128 29 2020 9 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-24 \N 40:00:00 7 6 \N -6349 128 29 2020 10 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-02 \N 40:00:00 7 6 \N -6350 128 29 2020 11 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-09 \N 40:00:00 7 6 \N -6351 128 29 2020 12 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-16 \N 40:00:00 7 6 \N -6352 128 29 2020 13 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-23 \N 40:00:00 7 6 \N -6353 128 29 2020 14 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-30 \N 40:00:00 7 6 \N -6354 128 29 2020 15 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-04-06 \N 40:00:00 7 6 \N -6355 128 29 2020 16 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-04-13 \N 40:00:00 7 6 \N -6356 142 29 2020 9 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-24 \N 40:00:00 7 6 \N -6357 142 29 2020 10 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-02 \N 40:00:00 7 6 \N -6358 142 29 2020 11 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-09 \N 40:00:00 7 6 \N -6359 142 29 2020 12 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-16 \N 40:00:00 7 6 \N -6360 142 29 2020 13 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-23 \N 40:00:00 7 6 \N -6361 142 29 2020 14 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-30 \N 40:00:00 7 6 \N -6362 142 29 2020 15 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-04-06 \N 40:00:00 7 6 \N -6363 142 29 2020 16 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-04-13 \N 40:00:00 7 6 \N -6364 136 29 2020 9 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-24 \N 40:00:00 7 6 \N -6365 136 29 2020 10 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-02 \N 40:00:00 7 6 \N -6366 136 29 2020 11 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-09 \N 40:00:00 7 6 \N -6367 136 29 2020 12 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-16 \N 40:00:00 7 6 \N -6368 136 29 2020 13 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-23 \N 40:00:00 7 6 \N -6369 136 29 2020 14 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-30 \N 40:00:00 7 6 \N -6370 136 29 2020 15 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-04-06 \N 40:00:00 7 6 \N -6371 136 29 2020 16 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-04-13 \N 40:00:00 7 6 \N -6372 139 29 2020 9 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-24 \N 40:00:00 7 6 \N -6373 139 29 2020 10 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-02 \N 40:00:00 7 6 \N -6374 139 29 2020 11 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-09 \N 40:00:00 7 6 \N -6375 139 29 2020 12 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-16 \N 40:00:00 7 6 \N -6376 139 29 2020 13 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-23 \N 40:00:00 7 6 \N -6377 139 29 2020 14 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-30 \N 40:00:00 7 6 \N -6378 139 29 2020 15 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-04-06 \N 40:00:00 7 6 \N -6379 139 29 2020 16 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-04-13 \N 40:00:00 7 6 \N -6380 141 29 2020 9 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-24 \N 40:00:00 7 6 \N -6381 141 29 2020 10 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-02 \N 40:00:00 7 6 \N -6382 141 29 2020 11 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-09 \N 40:00:00 7 6 \N -6383 141 29 2020 12 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-16 \N 40:00:00 7 6 \N -6384 141 29 2020 13 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-23 \N 40:00:00 7 6 \N -6385 141 29 2020 14 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-30 \N 40:00:00 7 6 \N -6386 141 29 2020 15 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-04-06 \N 40:00:00 7 6 \N -6387 141 29 2020 16 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-04-13 \N 40:00:00 7 6 \N -6388 122 29 2020 9 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-24 \N 40:00:00 7 6 \N -6389 122 29 2020 10 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-02 \N 40:00:00 7 6 \N -6390 122 29 2020 11 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-09 \N 40:00:00 7 6 \N -6391 122 29 2020 12 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-16 \N 40:00:00 7 6 \N -6392 122 29 2020 13 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-23 \N 40:00:00 7 6 \N -6393 122 29 2020 14 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-30 \N 40:00:00 7 6 \N -6394 122 29 2020 15 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-04-06 \N 40:00:00 7 6 \N -6395 122 29 2020 16 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-04-13 \N 40:00:00 7 6 \N -6396 106 29 2020 9 12:30:00 40:00:00 00:00:00 00:00:00 00:00:00 27:30:00 2020-02-24 \N 40:00:00 7 6 \N -6397 106 29 2020 10 12:30:00 40:00:00 00:00:00 00:00:00 00:00:00 27:30:00 2020-03-02 \N 40:00:00 7 6 \N -6398 106 29 2020 11 12:30:00 40:00:00 00:00:00 00:00:00 00:00:00 27:30:00 2020-03-09 \N 40:00:00 7 6 \N -6399 106 29 2020 12 12:30:00 40:00:00 00:00:00 00:00:00 00:00:00 27:30:00 2020-03-16 \N 40:00:00 7 6 \N -6400 106 29 2020 13 12:30:00 40:00:00 00:00:00 00:00:00 00:00:00 27:30:00 2020-03-23 \N 40:00:00 7 6 \N -6401 106 29 2020 14 12:30:00 40:00:00 00:00:00 00:00:00 00:00:00 27:30:00 2020-03-30 \N 40:00:00 7 6 \N -6402 106 29 2020 15 12:30:00 40:00:00 00:00:00 00:00:00 00:00:00 27:30:00 2020-04-06 \N 40:00:00 7 6 \N -6403 106 29 2020 16 12:30:00 40:00:00 00:00:00 00:00:00 00:00:00 27:30:00 2020-04-13 \N 40:00:00 7 6 \N -6404 110 29 2020 9 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-24 \N 40:00:00 7 6 \N -6405 110 29 2020 10 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-02 \N 40:00:00 7 6 \N -6406 110 29 2020 11 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-09 \N 40:00:00 7 6 \N -6407 110 29 2020 12 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-16 \N 40:00:00 7 6 \N -6408 110 29 2020 13 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-23 \N 40:00:00 7 6 \N -6409 110 29 2020 14 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-30 \N 40:00:00 7 6 \N -6410 110 29 2020 15 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-04-06 \N 40:00:00 7 6 \N -6411 110 29 2020 16 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-04-13 \N 40:00:00 7 6 \N -6412 145 29 2020 9 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-24 \N 40:00:00 7 6 \N -6413 145 29 2020 10 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-02 \N 40:00:00 7 6 \N -6414 145 29 2020 11 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-09 \N 40:00:00 7 6 \N -6415 145 29 2020 12 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-16 \N 40:00:00 7 6 \N -6416 145 29 2020 13 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-23 \N 40:00:00 7 6 \N -6417 145 29 2020 14 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-30 \N 40:00:00 7 6 \N -6418 145 29 2020 15 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-04-06 \N 40:00:00 7 6 \N -6419 145 29 2020 16 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-04-13 \N 40:00:00 7 6 \N -6420 148 29 2020 9 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-24 \N 40:00:00 7 6 \N -6421 148 29 2020 10 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-02 \N 40:00:00 7 6 \N -6422 148 29 2020 11 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-09 \N 40:00:00 7 6 \N -6423 148 29 2020 12 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-16 \N 40:00:00 7 6 \N -6424 148 29 2020 13 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-23 \N 40:00:00 7 6 \N -6425 148 29 2020 14 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-30 \N 40:00:00 7 6 \N -6426 148 29 2020 15 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-04-06 \N 40:00:00 7 6 \N -6427 148 29 2020 16 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-04-13 \N 40:00:00 7 6 \N -6428 130 29 2020 9 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-24 \N 40:00:00 7 6 \N -6429 130 29 2020 10 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-02 \N 40:00:00 7 6 \N -6430 130 29 2020 11 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-09 \N 40:00:00 7 6 \N -6431 130 29 2020 12 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-16 \N 40:00:00 7 6 \N -6432 130 29 2020 13 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-23 \N 40:00:00 7 6 \N -6433 130 29 2020 14 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-30 \N 40:00:00 7 6 \N -6434 130 29 2020 15 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-04-06 \N 40:00:00 7 6 \N -6435 130 29 2020 16 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-04-13 \N 40:00:00 7 6 \N -6436 129 29 2020 9 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-24 \N 40:00:00 7 6 \N -6437 129 29 2020 10 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-02 \N 40:00:00 7 6 \N -6438 129 29 2020 11 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-09 \N 40:00:00 7 6 \N -6439 129 29 2020 12 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-16 \N 40:00:00 7 6 \N -6440 129 29 2020 13 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-23 \N 40:00:00 7 6 \N -6441 129 29 2020 14 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-30 \N 40:00:00 7 6 \N -6442 129 29 2020 15 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-04-06 \N 40:00:00 7 6 \N -6443 129 29 2020 16 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-04-13 \N 40:00:00 7 6 \N -6444 143 29 2020 9 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-24 \N 40:00:00 7 6 \N -6445 143 29 2020 10 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-02 \N 40:00:00 7 6 \N -6446 143 29 2020 11 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-09 \N 40:00:00 7 6 \N -6447 143 29 2020 12 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-16 \N 40:00:00 7 6 \N -6448 143 29 2020 13 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-23 \N 40:00:00 7 6 \N -6449 143 29 2020 14 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-30 \N 40:00:00 7 6 \N -6450 143 29 2020 15 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-04-06 \N 40:00:00 7 6 \N -6451 143 29 2020 16 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-04-13 \N 40:00:00 7 6 \N +11297 116 27 2020 1 26:40:00 24:00:00 00:00:00 00:00:00 00:00:00 -02:40:00 2019-12-30 \N 24:00:00 4 6 \N +11298 116 27 2020 2 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-06 \N 40:00:00 6 6 \N +11299 116 27 2020 3 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-13 \N 40:00:00 6 6 \N +11300 116 27 2020 4 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-20 \N 40:00:00 6 6 \N +11301 116 27 2020 5 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-27 \N 40:00:00 6 6 \N +11302 116 27 2020 6 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-03 \N 40:00:00 6 6 \N +11303 116 27 2020 7 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-10 \N 40:00:00 6 6 \N +11304 116 27 2020 8 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-17 \N 40:00:00 6 6 \N +5670 144 27 2020 1 26:40:00 24:00:00 00:00:00 00:00:00 00:00:00 -02:40:00 2019-12-30 \N 24:00:00 4 6 \N +5691 109 27 2020 6 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-03 \N 40:00:00 6 6 \N +5692 109 27 2020 7 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-10 \N 40:00:00 6 6 \N +5693 109 27 2020 8 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-17 \N 40:00:00 6 6 \N +6762 146 30 2020 17 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-04-20 \N 40:00:00 6 6 \N +6763 146 30 2020 18 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-04-27 \N 40:00:00 6 6 \N +6764 146 30 2020 19 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-05-04 \N 40:00:00 6 6 \N +6765 146 30 2020 20 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-05-11 \N 40:00:00 6 6 \N +6824 103 30 2020 17 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-04-20 \N 40:00:00 6 6 \N +6825 103 30 2020 18 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-04-27 \N 40:00:00 6 6 \N +6826 103 30 2020 19 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-05-04 \N 40:00:00 6 6 \N +5671 144 27 2020 2 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-06 \N 40:00:00 6 6 \N +5672 144 27 2020 3 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-13 \N 40:00:00 6 6 \N +5673 144 27 2020 4 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-20 \N 40:00:00 6 6 \N +5674 144 27 2020 5 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-27 \N 40:00:00 6 6 \N +5675 144 27 2020 6 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-03 \N 40:00:00 6 6 \N +5676 144 27 2020 7 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-10 \N 40:00:00 6 6 \N +5677 144 27 2020 8 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-17 \N 40:00:00 6 6 \N +5686 109 27 2020 1 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2019-12-30 \N 40:00:00 6 6 \N +5687 109 27 2020 2 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-06 \N 40:00:00 6 6 \N +5688 109 27 2020 3 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-13 \N 40:00:00 6 6 \N +5689 109 27 2020 4 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-20 \N 40:00:00 6 6 \N +5690 109 27 2020 5 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-27 \N 40:00:00 6 6 \N +5694 118 27 2020 1 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2019-12-30 \N 40:00:00 6 6 \N +5695 118 27 2020 2 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-06 \N 40:00:00 6 6 \N +5696 118 27 2020 3 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-13 \N 40:00:00 6 6 \N +5697 118 27 2020 4 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-20 \N 40:00:00 6 6 \N +5698 118 27 2020 5 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-27 \N 40:00:00 6 6 \N +5699 118 27 2020 6 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-03 \N 40:00:00 6 6 \N +11620 116 29 2020 9 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-24 \N 40:00:00 5 6 \N +6352 128 29 2020 13 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-23 \N 40:00:00 6 6 \N +6353 128 29 2020 14 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-30 \N 40:00:00 6 6 \N +6354 128 29 2020 15 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-04-06 \N 40:00:00 6 6 \N +6834 121 30 2020 19 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-05-04 \N 40:00:00 6 6 \N +6835 121 30 2020 20 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-05-11 \N 40:00:00 6 6 \N +6836 121 30 2020 21 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-05-18 \N 40:00:00 6 6 \N +6837 121 30 2020 22 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-05-25 \N 40:00:00 6 6 \N +6838 121 30 2020 23 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-06-01 \N 40:00:00 6 6 \N +5710 111 27 2020 1 26:40:00 26:40:00 00:00:00 00:00:00 00:00:00 00:00:00 2019-12-30 \N 26:40:00 4 6 \N +5711 111 27 2020 2 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-06 \N 40:00:00 6 6 \N +5712 111 27 2020 3 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-13 \N 40:00:00 6 6 \N +5713 111 27 2020 4 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-20 \N 40:00:00 6 6 \N +5714 111 27 2020 5 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-27 \N 40:00:00 6 6 \N +5715 111 27 2020 6 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-03 \N 40:00:00 6 6 \N +5716 111 27 2020 7 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-10 \N 40:00:00 6 6 \N +5717 111 27 2020 8 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-17 \N 40:00:00 6 6 \N +5718 128 27 2020 1 26:40:00 24:00:00 00:00:00 00:00:00 00:00:00 -02:40:00 2019-12-30 \N 24:00:00 4 6 \N +6324 118 29 2020 9 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-24 \N 40:00:00 6 6 \N +6392 122 29 2020 13 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-23 \N 40:00:00 6 6 \N +6393 122 29 2020 14 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-30 \N 40:00:00 6 6 \N +6394 122 29 2020 15 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-04-06 \N 40:00:00 6 6 \N +6871 147 30 2020 17 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-04-20 \N 40:00:00 6 6 \N +6872 147 30 2020 18 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-04-27 \N 40:00:00 6 6 \N +5512 146 27 2020 1 26:40:00 24:00:00 00:00:00 00:00:00 00:00:00 -02:40:00 2019-12-30 \N 24:00:00 4 6 \N +5513 146 27 2020 2 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-06 \N 40:00:00 6 6 \N +5514 146 27 2020 3 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-13 \N 40:00:00 6 6 \N +5515 146 27 2020 4 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-20 \N 40:00:00 6 6 \N +5516 146 27 2020 5 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-27 \N 40:00:00 6 6 \N +5517 146 27 2020 6 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-03 \N 40:00:00 6 6 \N +5726 142 27 2020 1 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2019-12-30 \N 40:00:00 6 6 \N +5727 142 27 2020 2 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-06 \N 40:00:00 6 6 \N +5728 142 27 2020 3 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-13 \N 40:00:00 6 6 \N +5729 142 27 2020 4 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-20 \N 40:00:00 6 6 \N +5730 142 27 2020 5 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-27 \N 40:00:00 6 6 \N +5731 142 27 2020 6 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-03 \N 40:00:00 6 6 \N +6873 147 30 2020 19 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-05-04 \N 40:00:00 6 6 \N +6874 147 30 2020 20 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-05-11 \N 40:00:00 6 6 \N +6875 147 30 2020 21 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-05-18 \N 40:00:00 6 6 \N +6876 147 30 2020 22 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-05-25 \N 40:00:00 6 6 \N +5518 146 27 2020 7 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-10 \N 40:00:00 6 6 \N +5519 146 27 2020 8 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-17 \N 40:00:00 6 6 \N +5520 132 27 2020 1 26:40:00 24:00:00 00:00:00 00:00:00 00:00:00 -02:40:00 2019-12-30 \N 24:00:00 4 6 \N +5521 132 27 2020 2 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-06 \N 40:00:00 6 6 \N +5522 132 27 2020 3 40:00:00 24:00:00 00:00:00 00:00:00 00:00:00 -16:00:00 2020-01-13 \N 24:00:00 3 6 \N +5732 142 27 2020 7 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-10 \N 40:00:00 6 6 \N +5733 142 27 2020 8 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-17 \N 40:00:00 6 6 \N +5734 136 27 2020 1 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2019-12-30 \N 40:00:00 6 6 \N +5735 136 27 2020 2 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-06 \N 40:00:00 6 6 \N +6325 118 29 2020 10 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-02 \N 40:00:00 6 6 \N +6326 118 29 2020 11 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-09 \N 40:00:00 6 6 \N +6327 118 29 2020 12 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-16 \N 40:00:00 6 6 \N +6895 151 30 2020 17 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-04-20 \N 40:00:00 6 6 \N +6896 151 30 2020 18 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-04-27 \N 40:00:00 6 6 \N +5523 115 27 2020 1 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2019-12-30 \N 40:00:00 6 6 \N +5524 115 27 2020 2 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-06 \N 40:00:00 6 6 \N +5525 115 27 2020 3 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-13 \N 40:00:00 6 6 \N +5526 115 27 2020 4 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-20 \N 40:00:00 6 6 \N +5527 115 27 2020 5 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-27 \N 40:00:00 6 6 \N +5528 115 27 2020 6 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-03 \N 40:00:00 6 6 \N +5529 115 27 2020 7 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-10 \N 40:00:00 6 6 \N +5530 115 27 2020 8 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-17 \N 40:00:00 6 6 \N +5736 136 27 2020 3 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-13 \N 40:00:00 6 6 \N +5737 136 27 2020 4 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-20 \N 40:00:00 6 6 \N +5738 136 27 2020 5 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-27 \N 40:00:00 6 6 \N +5739 136 27 2020 6 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-03 \N 40:00:00 6 6 \N +5740 136 27 2020 7 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-10 \N 40:00:00 6 6 \N +5741 136 27 2020 8 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-17 \N 40:00:00 6 6 \N +5535 114 27 2020 5 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-27 \N 40:00:00 6 6 \N +5751 139 27 2020 5 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-27 \N 40:00:00 6 6 \N +5752 139 27 2020 6 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-03 \N 40:00:00 6 6 \N +5753 139 27 2020 7 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-10 \N 40:00:00 6 6 \N +5754 139 27 2020 8 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-17 \N 40:00:00 6 6 \N +5755 141 27 2020 1 26:40:00 24:00:00 00:00:00 00:00:00 00:00:00 -02:40:00 2019-12-30 \N 24:00:00 4 6 \N +5756 141 27 2020 2 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-06 \N 40:00:00 6 6 \N +6328 118 29 2020 13 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-23 \N 40:00:00 6 6 \N +6329 118 29 2020 14 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-30 \N 40:00:00 6 6 \N +6335 133 29 2020 12 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-16 \N 40:00:00 6 6 \N +6428 130 29 2020 9 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-24 \N 40:00:00 6 6 \N +6429 130 29 2020 10 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-02 \N 40:00:00 6 6 \N +6434 130 29 2020 15 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-04-06 \N 40:00:00 6 6 \N +6435 130 29 2020 16 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-04-13 \N 40:00:00 6 6 \N +5531 114 27 2020 1 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2019-12-30 \N 40:00:00 6 6 \N +5532 114 27 2020 2 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-06 \N 40:00:00 6 6 \N +5533 114 27 2020 3 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-13 \N 40:00:00 6 6 \N +5534 114 27 2020 4 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-20 \N 40:00:00 6 6 \N +5536 114 27 2020 6 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-03 \N 40:00:00 6 6 \N +5537 114 27 2020 7 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-10 \N 40:00:00 6 6 \N +5538 114 27 2020 8 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-17 \N 40:00:00 6 6 \N +5757 141 27 2020 3 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-13 \N 40:00:00 6 6 \N +5758 141 27 2020 4 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-20 \N 40:00:00 6 6 \N +5759 141 27 2020 5 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-27 \N 40:00:00 6 6 \N +5760 141 27 2020 6 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-03 \N 40:00:00 6 6 \N +5761 141 27 2020 7 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-10 \N 40:00:00 6 6 \N +5762 141 27 2020 8 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-17 \N 40:00:00 6 6 \N +6336 133 29 2020 13 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-23 \N 40:00:00 6 6 \N +5771 106 27 2020 1 12:30:00 40:00:00 00:00:00 00:00:00 00:00:00 27:30:00 2019-12-30 \N 40:00:00 4 3 \N +5772 106 27 2020 2 12:30:00 40:00:00 00:00:00 00:00:00 00:00:00 27:30:00 2020-01-06 \N 40:00:00 4 3 \N +5773 106 27 2020 3 12:30:00 40:00:00 00:00:00 00:00:00 00:00:00 27:30:00 2020-01-13 \N 40:00:00 4 3 \N +5774 106 27 2020 4 12:30:00 40:00:00 00:00:00 00:00:00 00:00:00 27:30:00 2020-01-20 \N 40:00:00 4 3 \N +5775 106 27 2020 5 12:30:00 40:00:00 00:00:00 00:00:00 00:00:00 27:30:00 2020-01-27 \N 40:00:00 4 3 \N +5776 106 27 2020 6 12:30:00 40:00:00 00:00:00 00:00:00 00:00:00 27:30:00 2020-02-03 \N 40:00:00 4 3 \N +5777 106 27 2020 7 12:30:00 40:00:00 00:00:00 00:00:00 00:00:00 27:30:00 2020-02-10 \N 40:00:00 4 3 \N +5778 106 27 2020 8 12:30:00 40:00:00 00:00:00 00:00:00 00:00:00 27:30:00 2020-02-17 \N 40:00:00 4 3 \N +6442 129 29 2020 15 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-04-06 \N 40:00:00 6 6 \N +6443 129 29 2020 16 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-04-13 \N 40:00:00 6 6 \N +6897 151 30 2020 19 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-05-04 \N 40:00:00 6 6 \N +6898 151 30 2020 20 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-05-11 \N 40:00:00 6 6 \N +6899 151 30 2020 21 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-05-18 \N 40:00:00 6 6 \N +6900 151 30 2020 22 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-05-25 \N 40:00:00 6 6 \N +6901 151 30 2020 23 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-06-01 \N 40:00:00 6 6 \N +6902 151 30 2020 24 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-06-08 \N 40:00:00 6 6 \N +6915 105 30 2020 21 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-05-18 \N 40:00:00 6 6 \N +5539 112 27 2020 1 26:40:00 24:00:00 00:00:00 00:00:00 00:00:00 -02:40:00 2019-12-30 \N 24:00:00 4 6 \N +5540 112 27 2020 2 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-06 \N 40:00:00 6 6 \N +5541 112 27 2020 3 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-13 \N 40:00:00 6 6 \N +5542 112 27 2020 4 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-20 \N 40:00:00 6 6 \N +5543 112 27 2020 5 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-27 \N 40:00:00 6 6 \N +5779 110 27 2020 1 26:40:00 24:00:00 00:00:00 00:00:00 00:00:00 -02:40:00 2019-12-30 \N 24:00:00 4 6 \N +5780 110 27 2020 2 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-06 \N 40:00:00 6 6 \N +5781 110 27 2020 3 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-13 \N 40:00:00 6 6 \N +5782 110 27 2020 4 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-20 \N 40:00:00 6 6 \N +5783 110 27 2020 5 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-27 \N 40:00:00 6 6 \N +5784 110 27 2020 6 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-03 \N 40:00:00 6 6 \N +5785 110 27 2020 7 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-10 \N 40:00:00 6 6 \N +6348 128 29 2020 9 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-24 \N 40:00:00 6 6 \N +6921 134 30 2020 19 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-05-04 \N 40:00:00 6 6 \N +6922 134 30 2020 20 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-05-11 \N 40:00:00 6 6 \N +6923 134 30 2020 21 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-05-18 \N 40:00:00 6 6 \N +6924 134 30 2020 22 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-05-25 \N 40:00:00 6 6 \N +5544 112 27 2020 6 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-03 \N 40:00:00 6 6 \N +5545 112 27 2020 7 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-10 \N 40:00:00 6 6 \N +5786 110 27 2020 8 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-17 \N 40:00:00 6 6 \N +5795 148 27 2020 1 26:40:00 24:00:00 00:00:00 00:00:00 00:00:00 -02:40:00 2019-12-30 \N 24:00:00 4 6 \N +5796 148 27 2020 2 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-06 \N 40:00:00 6 6 \N +5797 148 27 2020 3 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-13 \N 40:00:00 6 6 \N +5798 148 27 2020 4 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-20 \N 40:00:00 6 6 \N +5799 148 27 2020 5 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-27 \N 40:00:00 6 6 \N +5800 148 27 2020 6 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-03 \N 40:00:00 6 6 \N +6349 128 29 2020 10 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-02 \N 40:00:00 6 6 \N +6350 128 29 2020 11 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-09 \N 40:00:00 6 6 \N +6351 128 29 2020 12 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-16 \N 40:00:00 6 6 \N +5546 112 27 2020 8 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-17 \N 40:00:00 6 6 \N +5548 108 27 2020 3 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-13 \N 40:00:00 6 6 \N +5801 148 27 2020 7 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-10 \N 40:00:00 6 6 \N +5802 148 27 2020 8 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-17 \N 40:00:00 6 6 \N +5803 130 27 2020 1 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2019-12-30 \N 40:00:00 6 6 \N +5804 130 27 2020 2 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-06 \N 40:00:00 6 6 \N +5805 130 27 2020 3 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-13 \N 40:00:00 6 6 \N +5260 129 27 2020 5 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-27 \N 40:00:00 6 6 \N +6355 128 29 2020 16 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-04-13 \N 40:00:00 6 6 \N +6766 146 30 2020 21 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-05-18 \N 40:00:00 6 6 \N +6767 146 30 2020 22 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-05-25 \N 40:00:00 6 6 \N +6768 146 30 2020 23 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-06-01 \N 40:00:00 6 6 \N +6769 146 30 2020 24 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-06-08 \N 40:00:00 6 6 \N +5547 108 27 2020 2 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-06 \N 40:00:00 6 6 \N +5549 108 27 2020 4 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-20 \N 40:00:00 6 6 \N +5550 108 27 2020 5 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-27 \N 40:00:00 6 6 \N +5551 108 27 2020 6 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-03 \N 40:00:00 6 6 \N +5552 108 27 2020 7 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-10 \N 40:00:00 6 6 \N +5553 108 27 2020 8 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-17 \N 40:00:00 6 6 \N +5261 129 27 2020 6 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-03 \N 40:00:00 6 6 \N +5262 129 27 2020 7 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-10 \N 40:00:00 6 6 \N +5263 129 27 2020 8 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-17 \N 40:00:00 6 6 \N +6776 115 30 2020 23 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-06-01 \N 40:00:00 6 6 \N +6786 112 30 2020 17 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-04-20 \N 40:00:00 6 6 \N +6787 112 30 2020 18 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-04-27 \N 40:00:00 6 6 \N +6937 109 30 2020 19 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-05-04 \N 40:00:00 6 6 \N +6938 109 30 2020 20 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-05-11 \N 40:00:00 6 6 \N +6939 109 30 2020 21 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-05-18 \N 40:00:00 6 6 \N +6940 109 30 2020 22 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-05-25 \N 40:00:00 6 6 \N +6943 118 30 2020 17 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-04-20 \N 40:00:00 6 6 \N +5819 143 27 2020 1 26:40:00 24:00:00 00:00:00 00:00:00 00:00:00 -02:40:00 2019-12-30 \N 24:00:00 4 6 \N +5820 143 27 2020 2 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-06 \N 40:00:00 6 6 \N +5821 143 27 2020 3 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-13 \N 40:00:00 6 6 \N +5822 143 27 2020 4 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-20 \N 40:00:00 6 6 \N +5823 143 27 2020 5 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-27 \N 40:00:00 6 6 \N +5824 143 27 2020 6 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-03 \N 40:00:00 6 6 \N +5825 143 27 2020 7 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-10 \N 40:00:00 6 6 \N +5826 143 27 2020 8 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-17 \N 40:00:00 6 6 \N +6150 115 29 2020 9 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-24 \N 40:00:00 6 6 \N +6367 136 29 2020 12 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-16 \N 40:00:00 6 6 \N +6368 136 29 2020 13 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-23 \N 40:00:00 6 6 \N +6796 108 30 2020 21 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-05-18 \N 40:00:00 6 6 \N +6944 118 30 2020 18 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-04-27 \N 40:00:00 6 6 \N +6959 111 30 2020 17 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-04-20 \N 40:00:00 6 6 \N +6960 111 30 2020 18 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-04-27 \N 40:00:00 6 6 \N +5554 135 27 2020 1 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2019-12-30 \N 40:00:00 6 6 \N +5555 135 27 2020 2 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-06 \N 40:00:00 6 6 \N +6151 115 29 2020 10 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-02 \N 40:00:00 6 6 \N +6152 115 29 2020 11 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-09 \N 40:00:00 6 6 \N +6153 115 29 2020 12 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-16 \N 40:00:00 6 6 \N +6154 115 29 2020 13 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-23 \N 40:00:00 6 6 \N +6155 115 29 2020 14 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-30 \N 40:00:00 6 6 \N +6156 115 29 2020 15 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-04-06 \N 40:00:00 6 6 \N +6157 115 29 2020 16 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-04-13 \N 40:00:00 6 6 \N +6369 136 29 2020 14 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-30 \N 40:00:00 6 6 \N +6370 136 29 2020 15 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-04-06 \N 40:00:00 6 6 \N +6371 136 29 2020 16 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-04-13 \N 40:00:00 6 6 \N +6961 111 30 2020 19 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-05-04 \N 40:00:00 6 6 \N +6962 111 30 2020 20 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-05-11 \N 40:00:00 6 6 \N +6963 111 30 2020 21 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-05-18 \N 40:00:00 6 6 \N +6964 111 30 2020 22 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-05-25 \N 40:00:00 6 6 \N +6965 111 30 2020 23 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-06-01 \N 40:00:00 6 6 \N +5556 135 27 2020 3 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-13 \N 40:00:00 6 6 \N +5557 135 27 2020 4 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-20 \N 40:00:00 6 6 \N +5558 135 27 2020 5 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-27 \N 40:00:00 6 6 \N +5559 135 27 2020 6 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-03 \N 40:00:00 6 6 \N +5560 135 27 2020 7 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-10 \N 40:00:00 6 6 \N +5561 135 27 2020 8 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-17 \N 40:00:00 6 6 \N +6158 114 29 2020 9 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-24 \N 40:00:00 6 6 \N +6159 114 29 2020 10 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-02 \N 40:00:00 6 6 \N +6160 114 29 2020 11 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-09 \N 40:00:00 6 6 \N +6161 114 29 2020 12 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-16 \N 40:00:00 6 6 \N +6162 114 29 2020 13 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-23 \N 40:00:00 6 6 \N +6163 114 29 2020 14 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-30 \N 40:00:00 6 6 \N +6164 114 29 2020 15 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-04-06 \N 40:00:00 6 6 \N +6165 114 29 2020 16 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-04-13 \N 40:00:00 6 6 \N +6174 108 29 2020 9 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-24 \N 40:00:00 6 6 \N +6175 108 29 2020 10 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-02 \N 40:00:00 6 6 \N +6176 108 29 2020 11 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-09 \N 40:00:00 6 6 \N +6177 108 29 2020 12 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-16 \N 40:00:00 6 6 \N +6178 108 29 2020 13 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-23 \N 40:00:00 6 6 \N +6179 108 29 2020 14 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-30 \N 40:00:00 6 6 \N +6180 108 29 2020 15 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-04-06 \N 40:00:00 6 6 \N +6797 108 30 2020 22 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-05-25 \N 40:00:00 6 6 \N +6808 127 30 2020 17 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-04-20 \N 40:00:00 6 6 \N +6809 127 30 2020 18 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-04-27 \N 40:00:00 6 6 \N +6978 142 30 2020 20 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-05-11 \N 40:00:00 6 6 \N +6979 142 30 2020 21 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-05-18 \N 40:00:00 6 6 \N +6980 142 30 2020 22 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-05-25 \N 40:00:00 6 6 \N +6983 136 30 2020 17 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-04-20 \N 40:00:00 6 6 \N +6984 136 30 2020 18 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-04-27 \N 40:00:00 6 6 \N +6985 136 30 2020 19 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-05-04 \N 40:00:00 6 6 \N +6986 136 30 2020 20 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-05-11 \N 40:00:00 6 6 \N +6987 136 30 2020 21 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-05-18 \N 40:00:00 6 6 \N +6181 108 29 2020 16 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-04-13 \N 40:00:00 6 6 \N +6182 135 29 2020 9 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-24 \N 40:00:00 6 6 \N +6183 135 29 2020 10 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-02 \N 40:00:00 6 6 \N +6184 135 29 2020 11 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-09 \N 40:00:00 6 6 \N +6185 135 29 2020 12 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-16 \N 40:00:00 6 6 \N +6197 127 29 2020 16 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-04-13 \N 40:00:00 6 6 \N +6372 139 29 2020 9 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-24 \N 40:00:00 6 6 \N +6373 139 29 2020 10 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-02 \N 40:00:00 6 6 \N +6374 139 29 2020 11 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-09 \N 40:00:00 6 6 \N +6375 139 29 2020 12 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-16 \N 40:00:00 6 6 \N +6376 139 29 2020 13 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-23 \N 40:00:00 6 6 \N +6377 139 29 2020 14 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-30 \N 40:00:00 6 6 \N +6378 139 29 2020 15 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-04-06 \N 40:00:00 6 6 \N +6379 139 29 2020 16 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-04-13 \N 40:00:00 6 6 \N +5562 127 27 2020 1 26:40:00 24:00:00 00:00:00 00:00:00 00:00:00 -02:40:00 2019-12-30 \N 24:00:00 4 6 \N +5563 127 27 2020 2 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-06 \N 40:00:00 6 6 \N +6198 149 29 2020 9 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-24 \N 40:00:00 6 6 \N +6199 149 29 2020 10 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-02 \N 40:00:00 6 6 \N +6200 149 29 2020 11 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-09 \N 40:00:00 6 6 \N +6201 149 29 2020 12 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-16 \N 40:00:00 6 6 \N +6202 149 29 2020 13 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-23 \N 40:00:00 6 6 \N +6203 149 29 2020 14 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-30 \N 40:00:00 6 6 \N +6204 149 29 2020 15 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-04-06 \N 40:00:00 6 6 \N +6205 149 29 2020 16 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-04-13 \N 40:00:00 6 6 \N +6810 127 30 2020 19 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-05-04 \N 40:00:00 6 6 \N +6988 136 30 2020 22 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-05-25 \N 40:00:00 6 6 \N +6989 136 30 2020 23 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-06-01 \N 40:00:00 6 6 \N +7001 141 30 2020 19 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-05-04 \N 40:00:00 6 6 \N +7002 141 30 2020 20 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-05-11 \N 40:00:00 6 6 \N +7012 122 30 2020 22 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-05-25 \N 40:00:00 6 6 \N +5564 127 27 2020 3 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-13 \N 40:00:00 6 6 \N +5565 127 27 2020 4 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-20 \N 40:00:00 6 6 \N +5566 127 27 2020 5 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-27 \N 40:00:00 6 6 \N +5567 127 27 2020 6 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-03 \N 40:00:00 6 6 \N +5568 127 27 2020 7 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-10 \N 40:00:00 6 6 \N +5569 127 27 2020 8 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-17 \N 40:00:00 6 6 \N +6214 121 29 2020 9 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-24 \N 40:00:00 6 6 \N +6215 121 29 2020 10 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-02 \N 40:00:00 6 6 \N +6216 121 29 2020 11 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-09 \N 40:00:00 6 6 \N +6217 121 29 2020 12 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-16 \N 40:00:00 6 6 \N +6218 121 29 2020 13 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-23 \N 40:00:00 6 6 \N +6219 121 29 2020 14 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-30 \N 40:00:00 6 6 \N +6220 121 29 2020 15 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-04-06 \N 40:00:00 6 6 \N +6221 121 29 2020 16 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-04-13 \N 40:00:00 6 6 \N +6222 125 29 2020 9 20:00:00 40:00:00 00:00:00 00:00:00 00:00:00 20:00:00 2020-02-24 \N 40:00:00 6 6 \N +6223 125 29 2020 10 20:00:00 40:00:00 00:00:00 00:00:00 00:00:00 20:00:00 2020-03-02 \N 40:00:00 6 6 \N +6224 125 29 2020 11 20:00:00 40:00:00 00:00:00 00:00:00 00:00:00 20:00:00 2020-03-09 \N 40:00:00 6 6 \N +6225 125 29 2020 12 20:00:00 40:00:00 00:00:00 00:00:00 00:00:00 20:00:00 2020-03-16 \N 40:00:00 6 6 \N +6226 125 29 2020 13 20:00:00 40:00:00 00:00:00 00:00:00 00:00:00 20:00:00 2020-03-23 \N 40:00:00 6 6 \N +6227 125 29 2020 14 20:00:00 40:00:00 00:00:00 00:00:00 00:00:00 20:00:00 2020-03-30 \N 40:00:00 6 6 \N +6228 125 29 2020 15 20:00:00 40:00:00 00:00:00 00:00:00 00:00:00 20:00:00 2020-04-06 \N 40:00:00 6 6 \N +6229 125 29 2020 16 20:00:00 40:00:00 00:00:00 00:00:00 00:00:00 20:00:00 2020-04-13 \N 40:00:00 6 6 \N +6827 103 30 2020 20 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-05-11 \N 40:00:00 6 6 \N +6828 103 30 2020 21 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-05-18 \N 40:00:00 6 6 \N +7023 110 30 2020 17 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-04-20 \N 40:00:00 6 6 \N +7024 110 30 2020 18 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-04-27 \N 40:00:00 6 6 \N +7039 148 30 2020 17 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-04-20 \N 40:00:00 6 6 \N +7040 148 30 2020 18 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-04-27 \N 40:00:00 6 6 \N +6238 113 29 2020 9 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-24 \N 40:00:00 6 6 \N +6239 113 29 2020 10 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-02 \N 40:00:00 6 6 \N +6240 113 29 2020 11 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-09 \N 40:00:00 6 6 \N +6241 113 29 2020 12 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-16 \N 40:00:00 6 6 \N +6242 113 29 2020 13 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-23 \N 40:00:00 6 6 \N +6243 113 29 2020 14 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-30 \N 40:00:00 6 6 \N +6244 113 29 2020 15 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-04-06 \N 40:00:00 6 6 \N +6245 113 29 2020 16 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-04-13 \N 40:00:00 6 6 \N +6389 122 29 2020 10 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-02 \N 40:00:00 6 6 \N +7041 148 30 2020 19 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-05-04 \N 40:00:00 6 6 \N +7042 148 30 2020 20 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-05-11 \N 40:00:00 6 6 \N +7043 148 30 2020 21 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-05-18 \N 40:00:00 6 6 \N +7044 148 30 2020 22 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-05-25 \N 40:00:00 6 6 \N +7045 148 30 2020 23 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-06-01 \N 40:00:00 6 6 \N +7046 148 30 2020 24 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-06-08 \N 40:00:00 6 6 \N +7050 130 30 2020 20 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-05-11 \N 40:00:00 6 6 \N +7051 130 30 2020 21 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-05-18 \N 40:00:00 6 6 \N +7065 143 30 2020 19 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-05-04 \N 40:00:00 6 6 \N +7066 143 30 2020 20 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-05-11 \N 40:00:00 6 6 \N +7071 146 31 2020 25 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-06-15 \N 40:00:00 6 6 \N +7072 146 31 2020 26 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-06-22 \N 40:00:00 6 6 \N +5570 149 27 2020 1 26:40:00 24:00:00 00:00:00 00:00:00 00:00:00 -02:40:00 2019-12-30 \N 24:00:00 4 6 \N +5571 149 27 2020 2 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-06 \N 40:00:00 6 6 \N +6246 147 29 2020 9 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-24 \N 40:00:00 6 6 \N +6247 147 29 2020 10 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-02 \N 40:00:00 6 6 \N +6248 147 29 2020 11 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-09 \N 40:00:00 6 6 \N +6249 147 29 2020 12 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-16 \N 40:00:00 6 6 \N +6250 147 29 2020 13 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-23 \N 40:00:00 6 6 \N +6390 122 29 2020 11 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-09 \N 40:00:00 6 6 \N +7073 146 31 2020 27 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-06-29 \N 40:00:00 6 6 \N +7074 146 31 2020 28 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-07-06 \N 40:00:00 6 6 \N +7075 146 31 2020 29 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-07-13 \N 40:00:00 6 6 \N +7076 146 31 2020 30 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-07-20 \N 40:00:00 6 6 \N +7077 146 31 2020 31 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-07-27 \N 40:00:00 6 6 \N +7090 114 31 2020 28 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-07-06 \N 40:00:00 6 6 \N +7091 114 31 2020 29 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-07-13 \N 40:00:00 6 6 \N +7094 114 31 2020 32 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-08-03 \N 40:00:00 6 6 \N +7095 108 31 2020 25 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-06-15 \N 40:00:00 6 6 \N +7096 108 31 2020 26 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-06-22 \N 40:00:00 6 6 \N +7111 127 31 2020 25 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-06-15 \N 40:00:00 6 6 \N +5572 149 27 2020 3 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-13 \N 40:00:00 6 6 \N +5573 149 27 2020 4 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-20 \N 40:00:00 6 6 \N +5574 149 27 2020 5 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-27 \N 40:00:00 6 6 \N +5575 149 27 2020 6 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-03 \N 40:00:00 6 6 \N +5576 149 27 2020 7 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-10 \N 40:00:00 6 6 \N +5577 149 27 2020 8 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-17 \N 40:00:00 6 6 \N +6262 104 29 2020 9 30:00:00 40:00:00 00:00:00 00:00:00 00:00:00 10:00:00 2020-02-24 \N 40:00:00 5 5 \N +6263 104 29 2020 10 30:00:00 40:00:00 00:00:00 00:00:00 00:00:00 10:00:00 2020-03-02 \N 40:00:00 5 5 \N +6264 104 29 2020 11 30:00:00 40:00:00 00:00:00 00:00:00 00:00:00 10:00:00 2020-03-09 \N 40:00:00 5 5 \N +6265 104 29 2020 12 30:00:00 40:00:00 00:00:00 00:00:00 00:00:00 10:00:00 2020-03-16 \N 40:00:00 5 5 \N +6266 104 29 2020 13 30:00:00 40:00:00 00:00:00 00:00:00 00:00:00 10:00:00 2020-03-23 \N 40:00:00 5 5 \N +6391 122 29 2020 12 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-16 \N 40:00:00 6 6 \N +6267 104 29 2020 14 30:00:00 40:00:00 00:00:00 00:00:00 00:00:00 10:00:00 2020-03-30 \N 40:00:00 5 5 \N +6268 104 29 2020 15 30:00:00 40:00:00 00:00:00 00:00:00 00:00:00 10:00:00 2020-04-06 \N 40:00:00 5 5 \N +6269 104 29 2020 16 30:00:00 40:00:00 00:00:00 00:00:00 00:00:00 10:00:00 2020-04-13 \N 40:00:00 5 5 \N +6278 138 29 2020 9 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-24 \N 40:00:00 6 6 \N +6279 138 29 2020 10 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-02 \N 40:00:00 6 6 \N +6280 138 29 2020 11 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-09 \N 40:00:00 6 6 \N +6281 138 29 2020 12 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-16 \N 40:00:00 6 6 \N +6282 138 29 2020 13 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-23 \N 40:00:00 6 6 \N +6283 138 29 2020 14 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-30 \N 40:00:00 6 6 \N +6839 121 30 2020 24 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-06-08 \N 40:00:00 6 6 \N +6853 125 30 2020 23 20:00:00 40:00:00 00:00:00 00:00:00 00:00:00 20:00:00 2020-06-01 \N 40:00:00 6 6 \N +7112 127 31 2020 26 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-06-22 \N 40:00:00 6 6 \N +7113 127 31 2020 27 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-06-29 \N 40:00:00 6 6 \N +7114 127 31 2020 28 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-07-06 \N 40:00:00 6 6 \N +7115 127 31 2020 29 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-07-13 \N 40:00:00 6 6 \N +7116 127 31 2020 30 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-07-20 \N 40:00:00 6 6 \N +7117 127 31 2020 31 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-07-27 \N 40:00:00 6 6 \N +7118 127 31 2020 32 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-08-03 \N 40:00:00 6 6 \N +5578 103 27 2020 1 40:00:00 36:00:00 00:00:00 04:00:00 00:00:00 00:00:00 2019-12-30 \N 40:00:00 6 6 \N +6284 138 29 2020 15 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-04-06 \N 40:00:00 6 6 \N +6285 138 29 2020 16 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-04-13 \N 40:00:00 6 6 \N +6286 105 29 2020 9 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-24 \N 40:00:00 6 6 \N +6287 105 29 2020 10 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-02 \N 40:00:00 6 6 \N +6288 105 29 2020 11 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-09 \N 40:00:00 6 6 \N +6289 105 29 2020 12 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-16 \N 40:00:00 6 6 \N +6290 105 29 2020 13 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-23 \N 40:00:00 6 6 \N +6291 105 29 2020 14 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-30 \N 40:00:00 6 6 \N +6292 105 29 2020 15 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-04-06 \N 40:00:00 6 6 \N +6395 122 29 2020 16 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-04-13 \N 40:00:00 6 6 \N +6854 125 30 2020 24 20:00:00 40:00:00 00:00:00 00:00:00 00:00:00 20:00:00 2020-06-08 \N 40:00:00 6 6 \N +6859 119 30 2020 21 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-05-18 \N 40:00:00 6 6 \N +7135 121 31 2020 25 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-06-15 \N 40:00:00 6 6 \N +7136 121 31 2020 26 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-06-22 \N 40:00:00 6 6 \N +7137 121 31 2020 27 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-06-29 \N 40:00:00 6 6 \N +5579 103 27 2020 2 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-06 \N 40:00:00 6 6 \N +5580 103 27 2020 3 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-13 \N 40:00:00 6 6 \N +5581 103 27 2020 4 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-20 \N 40:00:00 6 6 \N +5582 103 27 2020 5 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-27 \N 40:00:00 6 6 \N +5583 103 27 2020 6 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-03 \N 40:00:00 6 6 \N +5584 103 27 2020 7 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-10 \N 40:00:00 6 6 \N +6293 105 29 2020 16 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-04-13 \N 40:00:00 6 6 \N +6302 144 29 2020 9 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-24 \N 40:00:00 6 6 \N +6303 144 29 2020 10 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-02 \N 40:00:00 6 6 \N +6396 106 29 2020 9 12:30:00 40:00:00 00:00:00 00:00:00 00:00:00 27:30:00 2020-02-24 \N 40:00:00 4 3 \N +6397 106 29 2020 10 12:30:00 40:00:00 00:00:00 00:00:00 00:00:00 27:30:00 2020-03-02 \N 40:00:00 4 3 \N +6398 106 29 2020 11 12:30:00 40:00:00 00:00:00 00:00:00 00:00:00 27:30:00 2020-03-09 \N 40:00:00 4 3 \N +6399 106 29 2020 12 12:30:00 40:00:00 00:00:00 00:00:00 00:00:00 27:30:00 2020-03-16 \N 40:00:00 4 3 \N +6400 106 29 2020 13 12:30:00 40:00:00 00:00:00 00:00:00 00:00:00 27:30:00 2020-03-23 \N 40:00:00 4 3 \N +5585 103 27 2020 8 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-17 \N 40:00:00 6 6 \N +6304 144 29 2020 11 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-09 \N 40:00:00 6 6 \N +6305 144 29 2020 12 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-16 \N 40:00:00 6 6 \N +6306 144 29 2020 13 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-23 \N 40:00:00 6 6 \N +6307 144 29 2020 14 40:00:00 16:00:00 00:00:00 00:00:00 00:00:00 -24:00:00 2020-03-30 \N 16:00:00 2 6 \N +6308 102 29 2020 9 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-24 \N 40:00:00 6 6 \N +6309 102 29 2020 10 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-02 \N 40:00:00 6 6 \N +6310 102 29 2020 11 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-09 \N 40:00:00 6 6 \N +6860 119 30 2020 22 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-05-25 \N 40:00:00 6 6 \N +7138 121 31 2020 28 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-07-06 \N 40:00:00 6 6 \N +7139 121 31 2020 29 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-07-13 \N 40:00:00 6 6 \N +7140 121 31 2020 30 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-07-20 \N 40:00:00 6 6 \N +7141 121 31 2020 31 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-07-27 \N 40:00:00 5 6 \N +7153 125 31 2020 28 20:00:00 40:00:00 00:00:00 00:00:00 00:00:00 20:00:00 2020-07-06 \N 40:00:00 6 6 \N +7154 125 31 2020 29 20:00:00 40:00:00 00:00:00 00:00:00 00:00:00 20:00:00 2020-07-13 \N 40:00:00 6 6 \N +7155 125 31 2020 30 20:00:00 40:00:00 00:00:00 00:00:00 00:00:00 20:00:00 2020-07-20 \N 40:00:00 6 6 \N +7156 125 31 2020 31 20:00:00 40:00:00 00:00:00 00:00:00 00:00:00 20:00:00 2020-07-27 \N 40:00:00 6 6 \N +7157 125 31 2020 32 20:00:00 40:00:00 00:00:00 00:00:00 00:00:00 20:00:00 2020-08-03 \N 40:00:00 6 6 \N +7174 147 31 2020 25 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-06-15 \N 40:00:00 6 6 \N +7175 147 31 2020 26 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-06-22 \N 40:00:00 6 6 \N +7176 147 31 2020 27 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-06-29 \N 40:00:00 6 6 \N +7177 147 31 2020 28 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-07-06 \N 40:00:00 6 6 \N +7178 147 31 2020 29 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-07-13 \N 40:00:00 6 6 \N +5586 121 27 2020 1 26:40:00 24:00:00 00:00:00 00:00:00 00:00:00 -02:40:00 2019-12-30 \N 24:00:00 4 6 \N +5587 121 27 2020 2 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-06 \N 40:00:00 6 6 \N +5588 121 27 2020 3 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-13 \N 40:00:00 6 6 \N +5589 121 27 2020 4 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-20 \N 40:00:00 6 6 \N +5590 121 27 2020 5 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-27 \N 40:00:00 6 6 \N +5591 121 27 2020 6 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-03 \N 40:00:00 6 6 \N +5592 121 27 2020 7 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-10 \N 40:00:00 6 6 \N +5593 121 27 2020 8 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-17 \N 40:00:00 6 6 \N +6311 102 29 2020 12 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-16 \N 40:00:00 6 6 \N +6312 102 29 2020 13 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-23 \N 40:00:00 6 6 \N +6313 102 29 2020 14 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-30 \N 40:00:00 6 6 \N +6314 102 29 2020 15 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-04-06 \N 40:00:00 6 6 \N +6315 102 29 2020 16 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-04-13 \N 40:00:00 6 6 \N +6412 145 29 2020 9 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-24 \N 40:00:00 6 6 \N +5594 125 27 2020 1 20:00:00 20:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2019-12-30 \N 20:00:00 6 6 \N +5595 125 27 2020 2 20:00:00 20:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-06 \N 20:00:00 6 6 \N +5596 125 27 2020 3 20:00:00 20:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-13 \N 20:00:00 6 6 \N +5597 125 27 2020 4 20:00:00 20:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-20 \N 20:00:00 6 6 \N +5598 125 27 2020 5 20:00:00 20:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-27 \N 20:00:00 6 6 \N +5599 125 27 2020 6 20:00:00 20:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-03 \N 20:00:00 6 6 \N +5600 125 27 2020 7 20:00:00 20:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-10 \N 20:00:00 6 6 \N +5601 125 27 2020 8 20:00:00 20:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-17 \N 20:00:00 6 6 \N +5602 119 27 2020 1 26:40:00 24:00:00 00:00:00 00:00:00 00:00:00 -02:40:00 2019-12-30 \N 24:00:00 4 6 \N +6413 145 29 2020 10 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-02 \N 40:00:00 6 6 \N +6414 145 29 2020 11 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-09 \N 40:00:00 6 6 \N +6415 145 29 2020 12 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-16 \N 40:00:00 6 6 \N +6416 145 29 2020 13 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-23 \N 40:00:00 6 6 \N +6417 145 29 2020 14 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-30 \N 40:00:00 6 6 \N +5603 119 27 2020 2 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-06 \N 40:00:00 6 6 \N +5604 119 27 2020 3 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-13 \N 40:00:00 6 6 \N +5605 119 27 2020 4 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-20 \N 40:00:00 6 6 \N +5606 119 27 2020 5 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-27 \N 40:00:00 6 6 \N +5607 119 27 2020 6 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-03 \N 40:00:00 6 6 \N +5608 119 27 2020 7 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-10 \N 40:00:00 6 6 \N +5609 119 27 2020 8 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-17 \N 40:00:00 6 6 \N +5610 113 27 2020 1 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2019-12-30 \N 40:00:00 6 6 \N +5611 113 27 2020 2 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-06 \N 40:00:00 6 6 \N +5612 113 27 2020 3 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-13 \N 40:00:00 6 6 \N +5613 113 27 2020 4 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-20 \N 40:00:00 6 6 \N +5614 113 27 2020 5 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-27 \N 40:00:00 6 6 \N +6418 145 29 2020 15 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-04-06 \N 40:00:00 6 6 \N +7190 104 31 2020 25 30:00:00 40:00:00 00:00:00 00:00:00 00:00:00 10:00:00 2020-06-15 \N 40:00:00 5 5 \N +7191 104 31 2020 26 30:00:00 40:00:00 00:00:00 00:00:00 00:00:00 10:00:00 2020-06-22 \N 40:00:00 5 5 \N +7192 104 31 2020 27 30:00:00 40:00:00 00:00:00 00:00:00 00:00:00 10:00:00 2020-06-29 \N 40:00:00 5 5 \N +7193 104 31 2020 28 30:00:00 40:00:00 00:00:00 00:00:00 00:00:00 10:00:00 2020-07-06 \N 40:00:00 5 5 \N +5615 113 27 2020 6 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-03 \N 40:00:00 6 6 \N +5616 113 27 2020 7 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-10 \N 40:00:00 6 6 \N +5617 113 27 2020 8 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-17 \N 40:00:00 6 6 \N +5618 147 27 2020 1 26:40:00 24:00:00 00:00:00 00:00:00 00:00:00 -02:40:00 2019-12-30 \N 24:00:00 4 6 \N +5619 147 27 2020 2 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-06 \N 40:00:00 6 6 \N +5620 147 27 2020 3 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-13 \N 40:00:00 6 6 \N +5621 147 27 2020 4 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-20 \N 40:00:00 6 6 \N +5622 147 27 2020 5 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-27 \N 40:00:00 6 6 \N +5623 147 27 2020 6 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-03 \N 40:00:00 6 6 \N +5624 147 27 2020 7 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-10 \N 40:00:00 6 6 \N +5625 147 27 2020 8 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-17 \N 40:00:00 6 6 \N +6330 118 29 2020 15 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-04-06 \N 40:00:00 6 6 \N +6331 118 29 2020 16 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-04-13 \N 40:00:00 6 6 \N +7194 104 31 2020 29 30:00:00 40:00:00 00:00:00 00:00:00 00:00:00 10:00:00 2020-07-13 \N 40:00:00 5 5 \N +5626 131 27 2020 1 20:00:00 40:00:00 00:00:00 00:00:00 00:00:00 20:00:00 2019-12-30 \N 40:00:00 5 5 \N +5627 131 27 2020 2 20:00:00 40:00:00 00:00:00 00:00:00 00:00:00 20:00:00 2020-01-06 \N 40:00:00 5 5 \N +5628 131 27 2020 3 20:00:00 40:00:00 00:00:00 00:00:00 00:00:00 20:00:00 2020-01-13 \N 40:00:00 5 5 \N +5629 131 27 2020 4 20:00:00 40:00:00 00:00:00 00:00:00 00:00:00 20:00:00 2020-01-20 \N 40:00:00 5 5 \N +5630 131 27 2020 5 20:00:00 40:00:00 00:00:00 00:00:00 00:00:00 20:00:00 2020-01-27 \N 40:00:00 5 5 \N +5631 131 27 2020 6 20:00:00 40:00:00 00:00:00 00:00:00 00:00:00 20:00:00 2020-02-03 \N 40:00:00 5 5 \N +5632 131 27 2020 7 20:00:00 40:00:00 00:00:00 00:00:00 00:00:00 20:00:00 2020-02-10 \N 40:00:00 5 5 \N +5633 131 27 2020 8 20:00:00 40:00:00 00:00:00 00:00:00 00:00:00 20:00:00 2020-02-17 \N 40:00:00 5 5 \N +5634 104 27 2020 1 30:00:00 40:00:00 00:00:00 00:00:00 00:00:00 10:00:00 2019-12-30 \N 40:00:00 5 5 \N +5635 104 27 2020 2 30:00:00 40:00:00 00:00:00 00:00:00 00:00:00 10:00:00 2020-01-06 \N 40:00:00 5 5 \N +6430 130 29 2020 11 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-09 \N 40:00:00 6 6 \N +6431 130 29 2020 12 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-16 \N 40:00:00 6 6 \N +6432 130 29 2020 13 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-23 \N 40:00:00 6 6 \N +6433 130 29 2020 14 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-30 \N 40:00:00 6 6 \N +7202 151 31 2020 29 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-07-13 \N 40:00:00 6 6 \N +5636 104 27 2020 3 30:00:00 40:00:00 00:00:00 00:00:00 00:00:00 10:00:00 2020-01-13 \N 40:00:00 5 5 \N +5637 104 27 2020 4 30:00:00 40:00:00 00:00:00 00:00:00 00:00:00 10:00:00 2020-01-20 \N 40:00:00 5 5 \N +5638 104 27 2020 5 30:00:00 40:00:00 00:00:00 00:00:00 00:00:00 10:00:00 2020-01-27 \N 40:00:00 5 5 \N +5639 104 27 2020 6 30:00:00 40:00:00 00:00:00 00:00:00 00:00:00 10:00:00 2020-02-03 \N 40:00:00 5 5 \N +5640 104 27 2020 7 30:00:00 40:00:00 00:00:00 00:00:00 00:00:00 10:00:00 2020-02-10 \N 40:00:00 5 5 \N +5641 104 27 2020 8 30:00:00 40:00:00 00:00:00 00:00:00 00:00:00 10:00:00 2020-02-17 \N 40:00:00 5 5 \N +5642 151 27 2020 5 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 -40:00:00 2020-01-27 \N 00:00:00 1 6 \N +5643 151 27 2020 6 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-03 \N 40:00:00 6 6 \N +5644 151 27 2020 7 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-10 \N 40:00:00 6 6 \N +5645 151 27 2020 8 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-17 \N 40:00:00 6 6 \N +6332 133 29 2020 9 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-24 \N 40:00:00 6 6 \N +6333 133 29 2020 10 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-02 \N 40:00:00 6 6 \N +6334 133 29 2020 11 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-09 \N 40:00:00 6 6 \N +5646 138 27 2020 1 26:40:00 24:00:00 00:00:00 00:00:00 00:00:00 -02:40:00 2019-12-30 \N 24:00:00 4 6 \N +5647 138 27 2020 2 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-06 \N 40:00:00 6 6 \N +5648 138 27 2020 3 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-13 \N 40:00:00 6 6 \N +5649 138 27 2020 4 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-20 \N 40:00:00 6 6 \N +5650 138 27 2020 5 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-27 \N 40:00:00 6 6 \N +5651 138 27 2020 6 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-03 \N 40:00:00 6 6 \N +5652 138 27 2020 7 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-10 \N 40:00:00 6 6 \N +5653 138 27 2020 8 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-17 \N 40:00:00 6 6 \N +5654 105 27 2020 1 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2019-12-30 \N 40:00:00 6 6 \N +5655 105 27 2020 2 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-06 \N 40:00:00 6 6 \N +5656 105 27 2020 3 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-13 \N 40:00:00 6 6 \N +5657 105 27 2020 4 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-20 \N 40:00:00 6 6 \N +5658 105 27 2020 5 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-27 \N 40:00:00 6 6 \N +6439 129 29 2020 12 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-16 \N 40:00:00 6 6 \N +7203 151 31 2020 30 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-07-20 \N 40:00:00 6 6 \N +5659 105 27 2020 6 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-03 \N 40:00:00 6 6 \N +5660 105 27 2020 7 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-10 \N 40:00:00 6 6 \N +5661 105 27 2020 8 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-17 \N 40:00:00 6 6 \N +5662 134 27 2020 1 26:40:00 24:00:00 00:00:00 00:00:00 00:00:00 -02:40:00 2019-12-30 \N 24:00:00 4 6 \N +5663 134 27 2020 2 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-06 \N 40:00:00 6 6 \N +5664 134 27 2020 3 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-13 \N 40:00:00 6 6 \N +5665 134 27 2020 4 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-20 \N 40:00:00 6 6 \N +5666 134 27 2020 5 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-27 \N 40:00:00 6 6 \N +5667 134 27 2020 6 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-03 \N 40:00:00 6 6 \N +5668 134 27 2020 7 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-10 \N 40:00:00 6 6 \N +5669 134 27 2020 8 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-17 \N 40:00:00 6 6 \N +6440 129 29 2020 13 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-23 \N 40:00:00 6 6 \N +6441 129 29 2020 14 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-30 \N 40:00:00 6 6 \N +5678 102 27 2020 1 26:40:00 24:00:00 00:00:00 00:00:00 00:00:00 -02:40:00 2019-12-30 \N 24:00:00 4 6 \N +5679 102 27 2020 2 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-06 \N 40:00:00 6 6 \N +5680 102 27 2020 3 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-13 \N 40:00:00 6 6 \N +5681 102 27 2020 4 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-20 \N 40:00:00 6 6 \N +5682 102 27 2020 5 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-27 \N 40:00:00 6 6 \N +5683 102 27 2020 6 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-03 \N 40:00:00 6 6 \N +5684 102 27 2020 7 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-10 \N 40:00:00 6 6 \N +5685 102 27 2020 8 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-17 \N 40:00:00 6 6 \N +6364 136 29 2020 9 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-24 \N 40:00:00 6 6 \N +6365 136 29 2020 10 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-02 \N 40:00:00 6 6 \N +6366 136 29 2020 11 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-09 \N 40:00:00 6 6 \N +6877 147 30 2020 23 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-06-01 \N 40:00:00 6 6 \N +6878 147 30 2020 24 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-06-08 \N 40:00:00 6 6 \N +7204 151 31 2020 31 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-07-27 \N 40:00:00 6 6 \N +7205 151 31 2020 32 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-08-03 \N 40:00:00 6 6 \N +5700 118 27 2020 7 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-10 \N 40:00:00 6 6 \N +5701 118 27 2020 8 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-17 \N 40:00:00 6 6 \N +5702 133 27 2020 1 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2019-12-30 \N 40:00:00 6 6 \N +5703 133 27 2020 2 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-06 \N 40:00:00 6 6 \N +5704 133 27 2020 3 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-13 \N 40:00:00 6 6 \N +5705 133 27 2020 4 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-20 \N 40:00:00 6 6 \N +5706 133 27 2020 5 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-27 \N 40:00:00 6 6 \N +5707 133 27 2020 6 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-03 \N 40:00:00 6 6 \N +5708 133 27 2020 7 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-10 \N 40:00:00 6 6 \N +5709 133 27 2020 8 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-17 \N 40:00:00 6 6 \N +6773 115 30 2020 20 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-05-11 \N 40:00:00 6 6 \N +6774 115 30 2020 21 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-05-18 \N 40:00:00 6 6 \N +6775 115 30 2020 22 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-05-25 \N 40:00:00 6 6 \N +5719 128 27 2020 2 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-06 \N 40:00:00 6 6 \N +5720 128 27 2020 3 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-13 \N 40:00:00 6 6 \N +5721 128 27 2020 4 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-20 \N 40:00:00 6 6 \N +5722 128 27 2020 5 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-27 \N 40:00:00 6 6 \N +5723 128 27 2020 6 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-03 \N 40:00:00 6 6 \N +5724 128 27 2020 7 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-10 \N 40:00:00 6 6 \N +5725 128 27 2020 8 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-17 \N 40:00:00 6 6 \N +6388 122 29 2020 9 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-24 \N 40:00:00 6 6 \N +6792 108 30 2020 17 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-04-20 \N 40:00:00 6 6 \N +6793 108 30 2020 18 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-04-27 \N 40:00:00 6 6 \N +6794 108 30 2020 19 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-05-04 \N 40:00:00 6 6 \N +6795 108 30 2020 20 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-05-11 \N 40:00:00 6 6 \N +5742 140 27 2020 1 26:40:00 24:00:00 00:00:00 00:00:00 00:00:00 -02:40:00 2019-12-30 \N 24:00:00 4 6 \N +5743 140 27 2020 2 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-06 \N 40:00:00 6 6 \N +5744 140 27 2020 3 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-13 \N 40:00:00 6 6 \N +5745 140 27 2020 4 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-20 \N 40:00:00 6 6 \N +5746 140 27 2020 5 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-27 \N 40:00:00 5 6 \N +5747 139 27 2020 1 26:40:00 24:00:00 00:00:00 00:00:00 00:00:00 -02:40:00 2019-12-30 \N 24:00:00 4 6 \N +5748 139 27 2020 2 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-06 \N 40:00:00 6 6 \N +5749 139 27 2020 3 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-13 \N 40:00:00 6 6 \N +5750 139 27 2020 4 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-20 \N 40:00:00 6 6 \N +6401 106 29 2020 14 12:30:00 40:00:00 00:00:00 00:00:00 00:00:00 27:30:00 2020-03-30 \N 40:00:00 4 3 \N +6811 127 30 2020 20 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-05-11 \N 40:00:00 6 6 \N +6812 127 30 2020 21 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-05-18 \N 40:00:00 6 6 \N +6916 105 30 2020 22 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-05-25 \N 40:00:00 6 6 \N +6920 134 30 2020 18 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-04-27 \N 40:00:00 6 6 \N +7223 134 31 2020 31 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-07-27 \N 40:00:00 6 6 \N +5763 122 27 2020 1 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2019-12-30 \N 40:00:00 6 6 \N +5764 122 27 2020 2 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-06 \N 40:00:00 6 6 \N +5765 122 27 2020 3 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-13 \N 40:00:00 6 6 \N +5766 122 27 2020 4 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-20 \N 40:00:00 6 6 \N +5767 122 27 2020 5 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-27 \N 40:00:00 6 6 \N +5768 122 27 2020 6 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-03 \N 40:00:00 6 6 \N +5769 122 27 2020 7 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-10 \N 40:00:00 6 6 \N +5770 122 27 2020 8 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-17 \N 40:00:00 6 6 \N +6419 145 29 2020 16 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-04-13 \N 40:00:00 6 6 \N +6420 148 29 2020 9 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-24 \N 40:00:00 6 6 \N +6829 103 30 2020 22 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-05-25 \N 40:00:00 6 6 \N +6832 121 30 2020 17 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-04-20 \N 40:00:00 6 6 \N +6833 121 30 2020 18 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-04-27 \N 40:00:00 6 6 \N +5787 145 27 2020 1 26:40:00 24:00:00 00:00:00 00:00:00 00:00:00 -02:40:00 2019-12-30 \N 24:00:00 4 6 \N +5788 145 27 2020 2 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-06 \N 40:00:00 6 6 \N +5789 145 27 2020 3 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-13 \N 40:00:00 6 6 \N +5790 145 27 2020 4 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-20 \N 40:00:00 6 6 \N +5791 145 27 2020 5 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-27 \N 40:00:00 6 6 \N +5792 145 27 2020 6 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-03 \N 40:00:00 6 6 \N +5793 145 27 2020 7 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-10 \N 40:00:00 6 6 \N +5794 145 27 2020 8 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-17 \N 40:00:00 6 6 \N +6436 129 29 2020 9 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-24 \N 40:00:00 6 6 \N +6437 129 29 2020 10 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-02 \N 40:00:00 6 6 \N +6438 129 29 2020 11 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-09 \N 40:00:00 6 6 \N +6935 109 30 2020 17 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-04-20 \N 40:00:00 6 6 \N +6936 109 30 2020 18 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-04-27 \N 40:00:00 6 6 \N +7224 134 31 2020 32 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-08-03 \N 40:00:00 6 6 \N +7233 109 31 2020 25 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-06-15 \N 40:00:00 6 6 \N +7234 109 31 2020 26 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-06-22 \N 40:00:00 6 6 \N +7235 109 31 2020 27 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-06-29 \N 40:00:00 6 6 \N +5806 130 27 2020 4 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-20 \N 40:00:00 6 6 \N +5807 130 27 2020 5 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-27 \N 40:00:00 6 6 \N +5808 130 27 2020 6 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-03 \N 40:00:00 6 6 \N +5809 130 27 2020 7 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-10 \N 40:00:00 6 6 \N +5810 130 27 2020 8 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-17 \N 40:00:00 6 6 \N +5256 129 27 2020 1 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2019-12-30 \N 40:00:00 6 6 \N +5257 129 27 2020 2 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-06 \N 40:00:00 6 6 \N +5258 129 27 2020 3 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-13 \N 40:00:00 6 6 \N +5259 129 27 2020 4 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-20 \N 40:00:00 6 6 \N +6855 119 30 2020 17 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-04-20 \N 40:00:00 6 6 \N +6856 119 30 2020 18 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-04-27 \N 40:00:00 6 6 \N +6857 119 30 2020 19 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-05-04 \N 40:00:00 6 6 \N +6858 119 30 2020 20 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-05-11 \N 40:00:00 6 6 \N +6142 146 29 2020 9 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-24 \N 40:00:00 6 6 \N +6143 146 29 2020 10 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-02 \N 40:00:00 6 6 \N +6144 146 29 2020 11 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-09 \N 40:00:00 6 6 \N +6145 146 29 2020 12 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-16 \N 40:00:00 6 6 \N +6146 146 29 2020 13 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-23 \N 40:00:00 6 6 \N +6147 146 29 2020 14 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-30 \N 40:00:00 6 6 \N +6148 146 29 2020 15 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-04-06 \N 40:00:00 6 6 \N +6149 146 29 2020 16 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-04-13 \N 40:00:00 6 6 \N +6770 115 30 2020 17 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-04-20 \N 40:00:00 6 6 \N +6771 115 30 2020 18 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-04-27 \N 40:00:00 6 6 \N +6772 115 30 2020 19 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-05-04 \N 40:00:00 6 6 \N +6941 109 30 2020 23 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-06-01 \N 40:00:00 6 6 \N +6942 109 30 2020 24 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-06-08 \N 40:00:00 6 6 \N +6166 112 29 2020 9 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-24 \N 40:00:00 6 6 \N +6167 112 29 2020 10 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-02 \N 40:00:00 6 6 \N +6168 112 29 2020 11 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-09 \N 40:00:00 6 6 \N +6169 112 29 2020 12 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-16 \N 40:00:00 6 6 \N +6170 112 29 2020 13 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-23 \N 40:00:00 6 6 \N +6171 112 29 2020 14 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-30 \N 40:00:00 6 6 \N +6172 112 29 2020 15 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-04-06 \N 40:00:00 6 6 \N +6173 112 29 2020 16 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-04-13 \N 40:00:00 6 6 \N +6788 112 30 2020 19 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-05-04 \N 40:00:00 6 6 \N +6789 112 30 2020 20 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-05-11 \N 40:00:00 6 6 \N +6790 112 30 2020 21 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-05-18 \N 40:00:00 6 6 \N +6791 112 30 2020 22 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-05-25 \N 40:00:00 6 6 \N +7236 109 31 2020 28 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-07-06 \N 40:00:00 6 6 \N +7237 109 31 2020 29 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-07-13 \N 40:00:00 6 6 \N +7241 118 31 2020 25 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-06-15 \N 40:00:00 6 6 \N +7242 118 31 2020 26 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-06-22 \N 40:00:00 6 6 \N +6186 135 29 2020 13 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-23 \N 40:00:00 6 6 \N +6187 135 29 2020 14 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-30 \N 40:00:00 6 6 \N +6188 135 29 2020 15 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-04-06 \N 40:00:00 6 6 \N +6189 135 29 2020 16 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-04-13 \N 40:00:00 6 6 \N +6190 127 29 2020 9 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-24 \N 40:00:00 6 6 \N +6191 127 29 2020 10 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-02 \N 40:00:00 6 6 \N +6192 127 29 2020 11 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-09 \N 40:00:00 6 6 \N +6193 127 29 2020 12 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-16 \N 40:00:00 6 6 \N +6194 127 29 2020 13 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-23 \N 40:00:00 6 6 \N +6195 127 29 2020 14 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-30 \N 40:00:00 6 6 \N +6196 127 29 2020 15 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-04-06 \N 40:00:00 6 6 \N +6206 103 29 2020 9 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-24 \N 40:00:00 6 6 \N +6207 103 29 2020 10 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-02 \N 40:00:00 6 6 \N +6208 103 29 2020 11 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-09 \N 40:00:00 6 6 \N +6209 103 29 2020 12 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-16 \N 40:00:00 6 6 \N +6210 103 29 2020 13 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-23 \N 40:00:00 6 6 \N +6211 103 29 2020 14 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-30 \N 40:00:00 6 6 \N +6212 103 29 2020 15 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-04-06 \N 40:00:00 6 6 \N +6213 103 29 2020 16 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-04-13 \N 40:00:00 6 6 \N +6813 127 30 2020 22 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-05-25 \N 40:00:00 6 6 \N +6814 127 30 2020 23 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-06-01 \N 40:00:00 6 6 \N +6815 127 30 2020 24 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-06-08 \N 40:00:00 6 6 \N +6816 149 30 2020 17 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-04-20 \N 40:00:00 6 6 \N +6914 105 30 2020 20 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-05-11 \N 40:00:00 6 6 \N +6230 119 29 2020 9 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-24 \N 40:00:00 6 6 \N +6231 119 29 2020 10 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-02 \N 40:00:00 6 6 \N +6232 119 29 2020 11 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-09 \N 40:00:00 6 6 \N +6233 119 29 2020 12 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-16 \N 40:00:00 6 6 \N +6234 119 29 2020 13 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-23 \N 40:00:00 6 6 \N +6235 119 29 2020 14 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-30 \N 40:00:00 6 6 \N +6236 119 29 2020 15 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-04-06 \N 40:00:00 6 6 \N +6237 119 29 2020 16 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-04-13 \N 40:00:00 6 6 \N +6830 103 30 2020 23 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-06-01 \N 40:00:00 6 6 \N +6831 103 30 2020 24 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-06-08 \N 40:00:00 6 6 \N +6917 105 30 2020 23 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-06-01 \N 40:00:00 6 6 \N +6918 105 30 2020 24 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-06-08 \N 40:00:00 6 6 \N +6981 142 30 2020 23 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-06-01 \N 40:00:00 6 6 \N +7243 118 31 2020 27 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-06-29 \N 40:00:00 6 6 \N +7244 118 31 2020 28 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-07-06 \N 40:00:00 6 6 \N +7245 118 31 2020 29 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-07-13 \N 40:00:00 6 6 \N +7246 118 31 2020 30 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-07-20 \N 40:00:00 6 6 \N +6251 147 29 2020 14 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-30 \N 40:00:00 6 6 \N +6252 147 29 2020 15 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-04-06 \N 40:00:00 6 6 \N +6253 147 29 2020 16 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-04-13 \N 40:00:00 6 6 \N +6254 131 29 2020 9 20:00:00 40:00:00 00:00:00 00:00:00 00:00:00 20:00:00 2020-02-24 \N 40:00:00 5 5 \N +6255 131 29 2020 10 20:00:00 40:00:00 00:00:00 00:00:00 00:00:00 20:00:00 2020-03-02 \N 40:00:00 5 5 \N +6256 131 29 2020 11 20:00:00 40:00:00 00:00:00 00:00:00 00:00:00 20:00:00 2020-03-09 \N 40:00:00 5 5 \N +6257 131 29 2020 12 20:00:00 40:00:00 00:00:00 00:00:00 00:00:00 20:00:00 2020-03-16 \N 40:00:00 5 5 \N +6258 131 29 2020 13 20:00:00 40:00:00 00:00:00 00:00:00 00:00:00 20:00:00 2020-03-23 \N 40:00:00 5 5 \N +6259 131 29 2020 14 20:00:00 40:00:00 00:00:00 00:00:00 00:00:00 20:00:00 2020-03-30 \N 40:00:00 5 5 \N +6260 131 29 2020 15 20:00:00 40:00:00 00:00:00 00:00:00 00:00:00 20:00:00 2020-04-06 \N 40:00:00 5 5 \N +6261 131 29 2020 16 20:00:00 40:00:00 00:00:00 00:00:00 00:00:00 20:00:00 2020-04-13 \N 40:00:00 5 5 \N +6847 125 30 2020 17 20:00:00 40:00:00 00:00:00 00:00:00 00:00:00 20:00:00 2020-04-20 \N 40:00:00 6 6 \N +6848 125 30 2020 18 20:00:00 40:00:00 00:00:00 00:00:00 00:00:00 20:00:00 2020-04-27 \N 40:00:00 6 6 \N +6849 125 30 2020 19 20:00:00 40:00:00 00:00:00 00:00:00 00:00:00 20:00:00 2020-05-04 \N 40:00:00 6 6 \N +7247 118 31 2020 31 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-07-27 \N 40:00:00 6 6 \N +6270 151 29 2020 9 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-24 \N 40:00:00 6 6 \N +6271 151 29 2020 10 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-02 \N 40:00:00 6 6 \N +6272 151 29 2020 11 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-09 \N 40:00:00 6 6 \N +6273 151 29 2020 12 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-16 \N 40:00:00 6 6 \N +6274 151 29 2020 13 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-23 \N 40:00:00 6 6 \N +6275 151 29 2020 14 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-30 \N 40:00:00 6 6 \N +6276 151 29 2020 15 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-04-06 \N 40:00:00 6 6 \N +6277 151 29 2020 16 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-04-13 \N 40:00:00 6 6 \N +6850 125 30 2020 20 20:00:00 40:00:00 00:00:00 00:00:00 00:00:00 20:00:00 2020-05-11 \N 40:00:00 6 6 \N +6851 125 30 2020 21 20:00:00 40:00:00 00:00:00 00:00:00 00:00:00 20:00:00 2020-05-18 \N 40:00:00 6 6 \N +6852 125 30 2020 22 20:00:00 40:00:00 00:00:00 00:00:00 00:00:00 20:00:00 2020-05-25 \N 40:00:00 6 6 \N +6925 134 30 2020 23 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-06-01 \N 40:00:00 6 6 \N +6926 134 30 2020 24 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-06-08 \N 40:00:00 6 6 \N +7248 118 31 2020 32 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-08-03 \N 40:00:00 6 6 \N +7260 111 31 2020 28 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-07-06 \N 40:00:00 6 6 \N +7261 111 31 2020 29 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-07-13 \N 40:00:00 6 6 \N +7262 111 31 2020 30 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-07-20 \N 40:00:00 6 6 \N +6294 134 29 2020 9 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-24 \N 40:00:00 6 6 \N +6295 134 29 2020 10 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-02 \N 40:00:00 6 6 \N +6296 134 29 2020 11 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-09 \N 40:00:00 6 6 \N +6297 134 29 2020 12 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-16 \N 40:00:00 6 6 \N +6298 134 29 2020 13 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-23 \N 40:00:00 6 6 \N +6299 134 29 2020 14 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-30 \N 40:00:00 6 6 \N +6300 134 29 2020 15 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-04-06 \N 40:00:00 6 6 \N +6301 134 29 2020 16 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-04-13 \N 40:00:00 6 6 \N +6861 119 30 2020 23 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-06-01 \N 40:00:00 6 6 \N +6862 119 30 2020 24 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-06-08 \N 40:00:00 6 6 \N +6316 109 29 2020 9 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-24 \N 40:00:00 6 6 \N +6317 109 29 2020 10 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-02 \N 40:00:00 6 6 \N +6318 109 29 2020 11 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-09 \N 40:00:00 6 6 \N +6319 109 29 2020 12 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-16 \N 40:00:00 6 6 \N +6320 109 29 2020 13 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-23 \N 40:00:00 6 6 \N +6321 109 29 2020 14 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-30 \N 40:00:00 6 6 \N +6322 109 29 2020 15 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-04-06 \N 40:00:00 6 6 \N +6323 109 29 2020 16 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-04-13 \N 40:00:00 6 6 \N +6879 131 30 2020 17 20:00:00 40:00:00 00:00:00 00:00:00 00:00:00 20:00:00 2020-04-20 \N 40:00:00 5 5 \N +6880 131 30 2020 18 20:00:00 40:00:00 00:00:00 00:00:00 00:00:00 20:00:00 2020-04-27 \N 40:00:00 5 5 \N +6881 131 30 2020 19 20:00:00 40:00:00 00:00:00 00:00:00 00:00:00 20:00:00 2020-05-04 \N 40:00:00 5 5 \N +6882 131 30 2020 20 20:00:00 40:00:00 00:00:00 00:00:00 00:00:00 20:00:00 2020-05-11 \N 40:00:00 5 5 \N +6894 104 30 2020 24 30:00:00 40:00:00 00:00:00 00:00:00 00:00:00 10:00:00 2020-06-08 \N 40:00:00 5 5 \N +7263 111 31 2020 31 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-07-27 \N 40:00:00 6 6 \N +7264 111 31 2020 32 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-08-03 \N 40:00:00 6 6 \N +7267 128 31 2020 27 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-06-29 \N 40:00:00 6 6 \N +7268 128 31 2020 28 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-07-06 \N 40:00:00 6 6 \N +6337 133 29 2020 14 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-30 \N 40:00:00 6 6 \N +6338 133 29 2020 15 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-04-06 \N 40:00:00 6 6 \N +6339 133 29 2020 16 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-04-13 \N 40:00:00 6 6 \N +6340 111 29 2020 9 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-24 \N 40:00:00 6 6 \N +6341 111 29 2020 10 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-02 \N 40:00:00 6 6 \N +6342 111 29 2020 11 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-09 \N 40:00:00 6 6 \N +6343 111 29 2020 12 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-16 \N 40:00:00 6 6 \N +6344 111 29 2020 13 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-23 \N 40:00:00 6 6 \N +6345 111 29 2020 14 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-30 \N 40:00:00 6 6 \N +6346 111 29 2020 15 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-04-06 \N 40:00:00 6 6 \N +6347 111 29 2020 16 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-04-13 \N 40:00:00 6 6 \N +7005 141 30 2020 23 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-06-01 \N 40:00:00 6 6 \N +7006 141 30 2020 24 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-06-08 \N 40:00:00 6 6 \N +6356 142 29 2020 9 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-24 \N 40:00:00 6 6 \N +6357 142 29 2020 10 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-02 \N 40:00:00 6 6 \N +6358 142 29 2020 11 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-09 \N 40:00:00 6 6 \N +6359 142 29 2020 12 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-16 \N 40:00:00 6 6 \N +6360 142 29 2020 13 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-23 \N 40:00:00 6 6 \N +6361 142 29 2020 14 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-30 \N 40:00:00 6 6 \N +6362 142 29 2020 15 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-04-06 \N 40:00:00 6 6 \N +6363 142 29 2020 16 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-04-13 \N 40:00:00 6 6 \N +6911 105 30 2020 17 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-04-20 \N 40:00:00 6 6 \N +6912 105 30 2020 18 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-04-27 \N 40:00:00 6 6 \N +6913 105 30 2020 19 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-05-04 \N 40:00:00 6 6 \N +6966 111 30 2020 24 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-06-08 \N 40:00:00 6 6 \N +7269 128 31 2020 29 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-07-13 \N 40:00:00 6 6 \N +7270 128 31 2020 30 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-07-20 \N 40:00:00 6 6 \N +7288 136 31 2020 32 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-08-03 \N 40:00:00 6 6 \N +7289 139 31 2020 25 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-06-15 \N 40:00:00 6 6 \N +6380 141 29 2020 9 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-24 \N 40:00:00 6 6 \N +6381 141 29 2020 10 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-02 \N 40:00:00 6 6 \N +6382 141 29 2020 11 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-09 \N 40:00:00 6 6 \N +6383 141 29 2020 12 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-16 \N 40:00:00 6 6 \N +6384 141 29 2020 13 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-23 \N 40:00:00 6 6 \N +6385 141 29 2020 14 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-30 \N 40:00:00 6 6 \N +6386 141 29 2020 15 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-04-06 \N 40:00:00 6 6 \N +6387 141 29 2020 16 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-04-13 \N 40:00:00 6 6 \N +6919 134 30 2020 17 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-04-20 \N 40:00:00 6 6 \N +6982 142 30 2020 24 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-06-08 \N 40:00:00 6 6 \N +6402 106 29 2020 15 12:30:00 40:00:00 00:00:00 00:00:00 00:00:00 27:30:00 2020-04-06 \N 40:00:00 4 3 \N +6403 106 29 2020 16 12:30:00 40:00:00 00:00:00 00:00:00 00:00:00 27:30:00 2020-04-13 \N 40:00:00 4 3 \N +6404 110 29 2020 9 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-24 \N 40:00:00 6 6 \N +6405 110 29 2020 10 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-02 \N 40:00:00 6 6 \N +6406 110 29 2020 11 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-09 \N 40:00:00 6 6 \N +6407 110 29 2020 12 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-16 \N 40:00:00 6 6 \N +6408 110 29 2020 13 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-23 \N 40:00:00 6 6 \N +6409 110 29 2020 14 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-30 \N 40:00:00 6 6 \N +6410 110 29 2020 15 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-04-06 \N 40:00:00 6 6 \N +6411 110 29 2020 16 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-04-13 \N 40:00:00 6 6 \N +6990 136 30 2020 24 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-06-08 \N 40:00:00 6 6 \N +6999 141 30 2020 17 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-04-20 \N 40:00:00 6 6 \N +7000 141 30 2020 18 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-04-27 \N 40:00:00 6 6 \N +7063 143 30 2020 17 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-04-20 \N 40:00:00 6 6 \N +7297 141 31 2020 25 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-06-15 \N 40:00:00 6 6 \N +6421 148 29 2020 10 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-02 \N 40:00:00 6 6 \N +6422 148 29 2020 11 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-09 \N 40:00:00 6 6 \N +6423 148 29 2020 12 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-16 \N 40:00:00 6 6 \N +6424 148 29 2020 13 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-23 \N 40:00:00 6 6 \N +6425 148 29 2020 14 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-30 \N 40:00:00 6 6 \N +6426 148 29 2020 15 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-04-06 \N 40:00:00 6 6 \N +6427 148 29 2020 16 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-04-13 \N 40:00:00 6 6 \N +6945 118 30 2020 19 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-05-04 \N 40:00:00 6 6 \N +6946 118 30 2020 20 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-05-11 \N 40:00:00 6 6 \N +6947 118 30 2020 21 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-05-18 \N 40:00:00 6 6 \N +7003 141 30 2020 21 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-05-18 \N 40:00:00 6 6 \N +7004 141 30 2020 22 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-05-25 \N 40:00:00 6 6 \N +7064 143 30 2020 18 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-04-27 \N 40:00:00 6 6 \N +6444 143 29 2020 9 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-24 \N 40:00:00 6 6 \N +6445 143 29 2020 10 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-02 \N 40:00:00 6 6 \N +6446 143 29 2020 11 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-09 \N 40:00:00 6 6 \N +6447 143 29 2020 12 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-16 \N 40:00:00 6 6 \N +6448 143 29 2020 13 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-23 \N 40:00:00 6 6 \N +6449 143 29 2020 14 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-30 \N 40:00:00 6 6 \N +6450 143 29 2020 15 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-04-06 \N 40:00:00 6 6 \N +6451 143 29 2020 16 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-04-13 \N 40:00:00 6 6 \N +6975 142 30 2020 17 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-04-20 \N 40:00:00 6 6 \N +6976 142 30 2020 18 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-04-27 \N 40:00:00 6 6 \N +6977 142 30 2020 19 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-05-04 \N 40:00:00 6 6 \N +7025 110 30 2020 19 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-05-04 \N 40:00:00 6 6 \N +7026 110 30 2020 20 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-05-11 \N 40:00:00 6 6 \N +7027 110 30 2020 21 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-05-18 \N 40:00:00 6 6 \N +7298 141 31 2020 26 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-06-22 \N 40:00:00 6 6 \N +6777 115 30 2020 24 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-06-08 \N 40:00:00 6 6 \N +6778 114 30 2020 17 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-04-20 \N 40:00:00 6 6 \N +6779 114 30 2020 18 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-04-27 \N 40:00:00 6 6 \N +6780 114 30 2020 19 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-05-04 \N 40:00:00 6 6 \N +6781 114 30 2020 20 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-05-11 \N 40:00:00 6 6 \N +6782 114 30 2020 21 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-05-18 \N 40:00:00 6 6 \N +6783 114 30 2020 22 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-05-25 \N 40:00:00 6 6 \N +6784 114 30 2020 23 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-06-01 \N 40:00:00 6 6 \N +6785 114 30 2020 24 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-06-08 \N 40:00:00 6 6 \N +6798 108 30 2020 23 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-06-01 \N 40:00:00 6 6 \N +6799 108 30 2020 24 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-06-08 \N 40:00:00 6 6 \N +6800 135 30 2020 17 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-04-20 \N 40:00:00 6 6 \N +6801 135 30 2020 18 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-04-27 \N 40:00:00 6 6 \N +6802 135 30 2020 19 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-05-04 \N 40:00:00 6 6 \N +6803 135 30 2020 20 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-05-11 \N 40:00:00 6 6 \N +6804 135 30 2020 21 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-05-18 \N 40:00:00 6 6 \N +6805 135 30 2020 22 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-05-25 \N 40:00:00 6 6 \N +6806 135 30 2020 23 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-06-01 \N 40:00:00 6 6 \N +6807 135 30 2020 24 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-06-08 \N 40:00:00 6 6 \N +7052 130 30 2020 22 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-05-25 \N 40:00:00 6 6 \N +7053 130 30 2020 23 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-06-01 \N 40:00:00 6 6 \N +7054 130 30 2020 24 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-06-08 \N 40:00:00 6 6 \N +6817 149 30 2020 18 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-04-27 \N 40:00:00 6 6 \N +6818 149 30 2020 19 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-05-04 \N 40:00:00 6 6 \N +6819 149 30 2020 20 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-05-11 \N 40:00:00 6 6 \N +6820 149 30 2020 21 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-05-18 \N 40:00:00 6 6 \N +6821 149 30 2020 22 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-05-25 \N 40:00:00 6 6 \N +6822 149 30 2020 23 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-06-01 \N 40:00:00 6 6 \N +6823 149 30 2020 24 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-06-08 \N 40:00:00 6 6 \N +7007 122 30 2020 17 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-04-20 \N 40:00:00 6 6 \N +7008 122 30 2020 18 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-04-27 \N 40:00:00 6 6 \N +7009 122 30 2020 19 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-05-04 \N 40:00:00 6 6 \N +7010 122 30 2020 20 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-05-11 \N 40:00:00 6 6 \N +7011 122 30 2020 21 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-05-18 \N 40:00:00 6 6 \N +7067 143 30 2020 21 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-05-18 \N 40:00:00 6 6 \N +7068 143 30 2020 22 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-05-25 \N 40:00:00 6 6 \N +7299 141 31 2020 27 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-06-29 \N 40:00:00 6 6 \N +6840 117 30 2020 18 40:00:00 08:00:00 00:00:00 00:00:00 00:00:00 -32:00:00 2020-04-27 \N 08:00:00 2 6 \N +6841 117 30 2020 19 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-05-04 \N 40:00:00 6 6 \N +6842 117 30 2020 20 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-05-11 \N 40:00:00 6 6 \N +6843 117 30 2020 21 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-05-18 \N 40:00:00 6 6 \N +6844 117 30 2020 22 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-05-25 \N 40:00:00 6 6 \N +6845 117 30 2020 23 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-06-01 \N 40:00:00 6 6 \N +6846 117 30 2020 24 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-06-08 \N 40:00:00 6 6 \N +7028 110 30 2020 22 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-05-25 \N 40:00:00 6 6 \N +7029 110 30 2020 23 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-06-01 \N 40:00:00 6 6 \N +7030 110 30 2020 24 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-06-08 \N 40:00:00 6 6 \N +7031 145 30 2020 17 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-04-20 \N 40:00:00 6 6 \N +7107 135 31 2020 29 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-07-13 \N 40:00:00 6 6 \N +7108 135 31 2020 30 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-07-20 \N 40:00:00 6 6 \N +7300 141 31 2020 28 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-07-06 \N 40:00:00 6 6 \N +6863 113 30 2020 17 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-04-20 \N 40:00:00 6 6 \N +6864 113 30 2020 18 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-04-27 \N 40:00:00 6 6 \N +6865 113 30 2020 19 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-05-04 \N 40:00:00 6 6 \N +6866 113 30 2020 20 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-05-11 \N 40:00:00 6 6 \N +6867 113 30 2020 21 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-05-18 \N 40:00:00 6 6 \N +6868 113 30 2020 22 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-05-25 \N 40:00:00 6 6 \N +6869 113 30 2020 23 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-06-01 \N 40:00:00 6 6 \N +6870 113 30 2020 24 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-06-08 \N 40:00:00 6 6 \N +7047 130 30 2020 17 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-04-20 \N 40:00:00 6 6 \N +7048 130 30 2020 18 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-04-27 \N 40:00:00 6 6 \N +7049 130 30 2020 19 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-05-04 \N 40:00:00 6 6 \N +7088 114 31 2020 26 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-06-22 \N 40:00:00 6 6 \N +7089 114 31 2020 27 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-06-29 \N 40:00:00 6 6 \N +6883 131 30 2020 21 20:00:00 40:00:00 00:00:00 00:00:00 00:00:00 20:00:00 2020-05-18 \N 40:00:00 5 5 \N +6884 131 30 2020 22 20:00:00 40:00:00 00:00:00 00:00:00 00:00:00 20:00:00 2020-05-25 \N 40:00:00 5 5 \N +6885 131 30 2020 23 20:00:00 40:00:00 00:00:00 00:00:00 00:00:00 20:00:00 2020-06-01 \N 40:00:00 5 5 \N +6886 131 30 2020 24 20:00:00 40:00:00 00:00:00 00:00:00 00:00:00 20:00:00 2020-06-08 \N 40:00:00 5 5 \N +6887 104 30 2020 17 30:00:00 40:00:00 00:00:00 00:00:00 00:00:00 10:00:00 2020-04-20 \N 40:00:00 5 5 \N +6888 104 30 2020 18 30:00:00 40:00:00 00:00:00 00:00:00 00:00:00 10:00:00 2020-04-27 \N 40:00:00 5 5 \N +6889 104 30 2020 19 30:00:00 40:00:00 00:00:00 00:00:00 00:00:00 10:00:00 2020-05-04 \N 40:00:00 5 5 \N +6890 104 30 2020 20 30:00:00 40:00:00 00:00:00 00:00:00 00:00:00 10:00:00 2020-05-11 \N 40:00:00 5 5 \N +6891 104 30 2020 21 30:00:00 40:00:00 00:00:00 00:00:00 00:00:00 10:00:00 2020-05-18 \N 40:00:00 5 5 \N +6892 104 30 2020 22 30:00:00 40:00:00 00:00:00 00:00:00 00:00:00 10:00:00 2020-05-25 \N 40:00:00 5 5 \N +6893 104 30 2020 23 30:00:00 40:00:00 00:00:00 00:00:00 00:00:00 10:00:00 2020-06-01 \N 40:00:00 5 5 \N +7092 114 31 2020 30 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-07-20 \N 40:00:00 6 6 \N +7093 114 31 2020 31 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-07-27 \N 40:00:00 6 6 \N +6903 138 30 2020 17 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-04-20 \N 40:00:00 6 6 \N +6904 138 30 2020 18 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-04-27 \N 40:00:00 6 6 \N +6905 138 30 2020 19 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-05-04 \N 40:00:00 6 6 \N +6906 138 30 2020 20 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-05-11 \N 40:00:00 6 6 \N +6907 138 30 2020 21 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-05-18 \N 40:00:00 6 6 \N +6908 138 30 2020 22 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-05-25 \N 40:00:00 6 6 \N +6909 138 30 2020 23 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-06-01 \N 40:00:00 6 6 \N +6910 138 30 2020 24 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-06-08 \N 40:00:00 6 6 \N +7069 143 30 2020 23 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-06-01 \N 40:00:00 6 6 \N +7070 143 30 2020 24 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-06-08 \N 40:00:00 6 6 \N +7104 135 31 2020 26 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-06-22 \N 40:00:00 6 6 \N +7105 135 31 2020 27 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-06-29 \N 40:00:00 6 6 \N +7106 135 31 2020 28 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-07-06 \N 40:00:00 6 6 \N +6927 102 30 2020 17 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-04-20 \N 40:00:00 6 6 \N +6928 102 30 2020 18 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-04-27 \N 40:00:00 6 6 \N +6929 102 30 2020 19 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-05-04 \N 40:00:00 6 6 \N +6930 102 30 2020 20 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-05-11 \N 40:00:00 6 6 \N +6931 102 30 2020 21 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-05-18 \N 40:00:00 6 6 \N +6932 102 30 2020 22 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-05-25 \N 40:00:00 6 6 \N +6933 102 30 2020 23 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-06-01 \N 40:00:00 6 6 \N +6934 102 30 2020 24 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-06-08 \N 40:00:00 6 6 \N +7087 114 31 2020 25 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-06-15 \N 40:00:00 6 6 \N +7130 103 31 2020 28 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-07-06 \N 40:00:00 6 6 \N +7133 103 31 2020 31 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-07-27 \N 40:00:00 6 6 \N +7134 103 31 2020 32 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-08-03 \N 40:00:00 6 6 \N +6948 118 30 2020 22 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-05-25 \N 40:00:00 6 6 \N +6949 118 30 2020 23 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-06-01 \N 40:00:00 6 6 \N +6950 118 30 2020 24 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-06-08 \N 40:00:00 6 6 \N +6951 133 30 2020 17 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-04-20 \N 40:00:00 6 6 \N +6952 133 30 2020 18 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-04-27 \N 40:00:00 6 6 \N +6953 133 30 2020 19 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-05-04 \N 40:00:00 6 6 \N +6954 133 30 2020 20 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-05-11 \N 40:00:00 6 6 \N +6955 133 30 2020 21 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-05-18 \N 40:00:00 6 6 \N +6956 133 30 2020 22 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-05-25 \N 40:00:00 6 6 \N +6957 133 30 2020 23 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-06-01 \N 40:00:00 6 6 \N +6958 133 30 2020 24 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-06-08 \N 40:00:00 6 6 \N +7131 103 31 2020 29 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-07-13 \N 40:00:00 6 6 \N +7132 103 31 2020 30 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-07-20 \N 40:00:00 6 6 \N +6967 128 30 2020 17 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-04-20 \N 40:00:00 6 6 \N +6968 128 30 2020 18 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-04-27 \N 40:00:00 6 6 \N +6969 128 30 2020 19 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-05-04 \N 40:00:00 6 6 \N +6970 128 30 2020 20 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-05-11 \N 40:00:00 6 6 \N +6971 128 30 2020 21 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-05-18 \N 40:00:00 6 6 \N +6972 128 30 2020 22 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-05-25 \N 40:00:00 6 6 \N +6973 128 30 2020 23 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-06-01 \N 40:00:00 6 6 \N +6974 128 30 2020 24 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-06-08 \N 40:00:00 6 6 \N +7109 135 31 2020 31 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-07-27 \N 40:00:00 6 6 \N +7110 135 31 2020 32 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-08-03 \N 40:00:00 6 6 \N +7152 125 31 2020 27 20:00:00 40:00:00 00:00:00 00:00:00 00:00:00 20:00:00 2020-06-29 \N 40:00:00 6 6 \N +6991 139 30 2020 17 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-04-20 \N 40:00:00 6 6 \N +6992 139 30 2020 18 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-04-27 \N 40:00:00 6 6 \N +6993 139 30 2020 19 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-05-04 \N 40:00:00 6 6 \N +6994 139 30 2020 20 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-05-11 \N 40:00:00 6 6 \N +6995 139 30 2020 21 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-05-18 \N 40:00:00 6 6 \N +6996 139 30 2020 22 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-05-25 \N 40:00:00 6 6 \N +6997 139 30 2020 23 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-06-01 \N 40:00:00 6 6 \N +6998 139 30 2020 24 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-06-08 \N 40:00:00 6 6 \N +7127 103 31 2020 25 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-06-15 \N 40:00:00 6 6 \N +7128 103 31 2020 26 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-06-22 \N 40:00:00 6 6 \N +7129 103 31 2020 27 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-06-29 \N 40:00:00 6 6 \N +7013 122 30 2020 23 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-06-01 \N 40:00:00 6 6 \N +7014 122 30 2020 24 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-06-08 \N 40:00:00 6 6 \N +7015 106 30 2020 17 12:30:00 40:00:00 00:00:00 00:00:00 00:00:00 27:30:00 2020-04-20 \N 40:00:00 4 3 \N +7016 106 30 2020 18 12:30:00 40:00:00 00:00:00 00:00:00 00:00:00 27:30:00 2020-04-27 \N 40:00:00 4 3 \N +7017 106 30 2020 19 12:30:00 40:00:00 00:00:00 00:00:00 00:00:00 27:30:00 2020-05-04 \N 40:00:00 4 3 \N +7018 106 30 2020 20 12:30:00 40:00:00 00:00:00 00:00:00 00:00:00 27:30:00 2020-05-11 \N 40:00:00 4 3 \N +7019 106 30 2020 21 12:30:00 40:00:00 00:00:00 00:00:00 00:00:00 27:30:00 2020-05-18 \N 40:00:00 4 3 \N +7020 106 30 2020 22 12:30:00 40:00:00 00:00:00 00:00:00 00:00:00 27:30:00 2020-05-25 \N 40:00:00 4 3 \N +7021 106 30 2020 23 12:30:00 40:00:00 00:00:00 00:00:00 00:00:00 27:30:00 2020-06-01 \N 40:00:00 4 3 \N +7022 106 30 2020 24 12:30:00 40:00:00 00:00:00 00:00:00 00:00:00 27:30:00 2020-06-08 \N 40:00:00 4 3 \N +7158 119 31 2020 25 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-06-15 \N 40:00:00 6 6 \N +7159 119 31 2020 26 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-06-22 \N 40:00:00 6 6 \N +7160 119 31 2020 27 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-06-29 \N 40:00:00 6 6 \N +7161 119 31 2020 28 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-07-06 \N 40:00:00 6 6 \N +7305 122 31 2020 25 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-06-15 \N 40:00:00 6 6 \N +7032 145 30 2020 18 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-04-27 \N 40:00:00 6 6 \N +7033 145 30 2020 19 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-05-04 \N 40:00:00 6 6 \N +7034 145 30 2020 20 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-05-11 \N 40:00:00 6 6 \N +7035 145 30 2020 21 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-05-18 \N 40:00:00 6 6 \N +7036 145 30 2020 22 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-05-25 \N 40:00:00 6 6 \N +7037 145 30 2020 23 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-06-01 \N 40:00:00 6 6 \N +7038 145 30 2020 24 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-06-08 \N 40:00:00 6 6 \N +7150 125 31 2020 25 20:00:00 40:00:00 00:00:00 00:00:00 00:00:00 20:00:00 2020-06-15 \N 40:00:00 6 6 \N +7151 125 31 2020 26 20:00:00 40:00:00 00:00:00 00:00:00 00:00:00 20:00:00 2020-06-22 \N 40:00:00 6 6 \N +7179 147 31 2020 30 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-07-20 \N 40:00:00 6 6 \N +7180 147 31 2020 31 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-07-27 \N 40:00:00 6 6 \N +7181 147 31 2020 32 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-08-03 \N 40:00:00 6 6 \N +7055 129 30 2020 17 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-04-20 \N 40:00:00 6 6 \N +7056 129 30 2020 18 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-04-27 \N 40:00:00 6 6 \N +7057 129 30 2020 19 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-05-04 \N 40:00:00 6 6 \N +7058 129 30 2020 20 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-05-11 \N 40:00:00 6 6 \N +7059 129 30 2020 21 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-05-18 \N 40:00:00 6 6 \N +7060 129 30 2020 22 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-05-25 \N 40:00:00 6 6 \N +7061 129 30 2020 23 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-06-01 \N 40:00:00 6 6 \N +7062 129 30 2020 24 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-06-08 \N 40:00:00 6 6 \N +7162 119 31 2020 29 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-07-13 \N 40:00:00 6 6 \N +7195 104 31 2020 30 30:00:00 40:00:00 00:00:00 00:00:00 00:00:00 10:00:00 2020-07-20 \N 40:00:00 5 5 \N +7196 104 31 2020 31 30:00:00 40:00:00 00:00:00 00:00:00 00:00:00 10:00:00 2020-07-27 \N 40:00:00 5 5 \N +7197 104 31 2020 32 30:00:00 40:00:00 00:00:00 00:00:00 00:00:00 10:00:00 2020-08-03 \N 40:00:00 5 5 \N +7078 146 31 2020 32 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-08-03 \N 40:00:00 6 6 \N +7079 115 31 2020 25 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-06-15 \N 40:00:00 6 6 \N +7080 115 31 2020 26 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-06-22 \N 40:00:00 6 6 \N +7081 115 31 2020 27 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-06-29 \N 40:00:00 6 6 \N +7082 115 31 2020 28 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-07-06 \N 40:00:00 6 6 \N +7083 115 31 2020 29 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-07-13 \N 40:00:00 6 6 \N +7084 115 31 2020 30 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-07-20 \N 40:00:00 6 6 \N +7085 115 31 2020 31 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-07-27 \N 40:00:00 6 6 \N +7086 115 31 2020 32 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-08-03 \N 40:00:00 6 6 \N +7217 134 31 2020 25 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-06-15 \N 40:00:00 6 6 \N +7218 134 31 2020 26 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-06-22 \N 40:00:00 6 6 \N +7221 134 31 2020 29 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-07-13 \N 40:00:00 6 6 \N +7222 134 31 2020 30 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-07-20 \N 40:00:00 6 6 \N +7306 122 31 2020 26 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-06-22 \N 40:00:00 6 6 \N +7307 122 31 2020 27 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-06-29 \N 40:00:00 6 6 \N +7308 122 31 2020 28 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-07-06 \N 40:00:00 6 6 \N +7309 122 31 2020 29 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-07-13 \N 40:00:00 6 6 \N +7097 108 31 2020 27 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-06-29 \N 40:00:00 6 6 \N +7098 108 31 2020 28 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-07-06 \N 40:00:00 6 6 \N +7099 108 31 2020 29 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-07-13 \N 40:00:00 6 6 \N +7100 108 31 2020 30 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-07-20 \N 40:00:00 6 6 \N +7101 108 31 2020 31 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-07-27 \N 40:00:00 6 6 \N +7102 108 31 2020 32 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-08-03 \N 40:00:00 6 6 \N +7103 135 31 2020 25 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-06-15 \N 40:00:00 6 6 \N +7198 151 31 2020 25 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-06-15 \N 40:00:00 6 6 \N +7199 151 31 2020 26 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-06-22 \N 40:00:00 6 6 \N +7200 151 31 2020 27 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-06-29 \N 40:00:00 6 6 \N +7201 151 31 2020 28 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-07-06 \N 40:00:00 6 6 \N +7119 149 31 2020 25 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-06-15 \N 40:00:00 6 6 \N +7120 149 31 2020 26 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-06-22 \N 40:00:00 6 6 \N +7121 149 31 2020 27 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-06-29 \N 40:00:00 6 6 \N +7122 149 31 2020 28 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-07-06 \N 40:00:00 6 6 \N +7123 149 31 2020 29 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-07-13 \N 40:00:00 6 6 \N +7124 149 31 2020 30 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-07-20 \N 40:00:00 6 6 \N +7125 149 31 2020 31 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-07-27 \N 40:00:00 6 6 \N +7126 149 31 2020 32 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-08-03 \N 40:00:00 6 6 \N +7219 134 31 2020 27 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-06-29 \N 40:00:00 6 6 \N +7220 134 31 2020 28 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-07-06 \N 40:00:00 6 6 \N +7142 117 31 2020 25 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-06-15 \N 40:00:00 6 6 \N +7143 117 31 2020 26 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-06-22 \N 40:00:00 6 6 \N +7144 117 31 2020 27 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-06-29 \N 40:00:00 6 6 \N +7145 117 31 2020 28 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-07-06 \N 40:00:00 6 6 \N +7146 117 31 2020 29 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-07-13 \N 40:00:00 6 6 \N +7147 117 31 2020 30 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-07-20 \N 40:00:00 6 6 \N +7148 117 31 2020 31 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-07-27 \N 40:00:00 6 6 \N +7149 117 31 2020 32 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-08-03 \N 40:00:00 6 6 \N +7238 109 31 2020 30 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-07-20 \N 40:00:00 6 6 \N +7239 109 31 2020 31 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-07-27 \N 40:00:00 6 6 \N +7240 109 31 2020 32 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-08-03 \N 40:00:00 6 6 \N +7163 119 31 2020 30 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-07-20 \N 40:00:00 6 6 \N +7164 119 31 2020 31 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-07-27 \N 40:00:00 6 6 \N +7165 119 31 2020 32 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-08-03 \N 40:00:00 6 6 \N +7166 113 31 2020 25 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-06-15 \N 40:00:00 6 6 \N +7167 113 31 2020 26 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-06-22 \N 40:00:00 6 6 \N +7168 113 31 2020 27 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-06-29 \N 40:00:00 6 6 \N +7169 113 31 2020 28 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-07-06 \N 40:00:00 6 6 \N +7170 113 31 2020 29 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-07-13 \N 40:00:00 6 6 \N +7171 113 31 2020 30 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-07-20 \N 40:00:00 6 6 \N +7172 113 31 2020 31 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-07-27 \N 40:00:00 6 6 \N +7173 113 31 2020 32 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-08-03 \N 40:00:00 6 6 \N +7257 111 31 2020 25 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-06-15 \N 40:00:00 6 6 \N +7258 111 31 2020 26 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-06-22 \N 40:00:00 6 6 \N +7310 122 31 2020 30 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-07-20 \N 40:00:00 6 6 \N +7311 122 31 2020 31 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-07-27 \N 40:00:00 6 6 \N +7312 122 31 2020 32 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-08-03 \N 40:00:00 6 6 \N +7325 110 31 2020 29 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-07-13 \N 40:00:00 6 6 \N +7182 131 31 2020 25 20:00:00 40:00:00 00:00:00 00:00:00 00:00:00 20:00:00 2020-06-15 \N 40:00:00 5 5 \N +7183 131 31 2020 26 20:00:00 40:00:00 00:00:00 00:00:00 00:00:00 20:00:00 2020-06-22 \N 40:00:00 5 5 \N +7184 131 31 2020 27 20:00:00 40:00:00 00:00:00 00:00:00 00:00:00 20:00:00 2020-06-29 \N 40:00:00 5 5 \N +7185 131 31 2020 28 20:00:00 40:00:00 00:00:00 00:00:00 00:00:00 20:00:00 2020-07-06 \N 40:00:00 5 5 \N +7186 131 31 2020 29 20:00:00 40:00:00 00:00:00 00:00:00 00:00:00 20:00:00 2020-07-13 \N 40:00:00 5 5 \N +7187 131 31 2020 30 20:00:00 40:00:00 00:00:00 00:00:00 00:00:00 20:00:00 2020-07-20 \N 40:00:00 5 5 \N +7188 131 31 2020 31 20:00:00 40:00:00 00:00:00 00:00:00 00:00:00 20:00:00 2020-07-27 \N 40:00:00 5 5 \N +7189 131 31 2020 32 20:00:00 40:00:00 00:00:00 00:00:00 00:00:00 20:00:00 2020-08-03 \N 40:00:00 5 5 \N +7259 111 31 2020 27 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-06-29 \N 40:00:00 6 6 \N +7265 128 31 2020 25 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-06-15 \N 40:00:00 6 6 \N +7266 128 31 2020 26 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-06-22 \N 40:00:00 6 6 \N +7206 138 31 2020 25 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-06-15 \N 40:00:00 6 6 \N +7207 138 31 2020 26 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-06-22 \N 40:00:00 6 6 \N +7208 138 31 2020 27 40:00:00 16:00:00 00:00:00 00:00:00 00:00:00 -24:00:00 2020-06-29 \N 16:00:00 2 6 \N +7209 105 31 2020 25 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-06-15 \N 40:00:00 6 6 \N +7210 105 31 2020 26 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-06-22 \N 40:00:00 6 6 \N +7211 105 31 2020 27 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-06-29 \N 40:00:00 6 6 \N +7212 105 31 2020 28 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-07-06 \N 40:00:00 6 6 \N +7213 105 31 2020 29 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-07-13 \N 40:00:00 6 6 \N +7214 105 31 2020 30 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-07-20 \N 40:00:00 6 6 \N +7215 105 31 2020 31 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-07-27 \N 40:00:00 6 6 \N +7216 105 31 2020 32 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-08-03 \N 40:00:00 6 6 \N +7281 136 31 2020 25 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-06-15 \N 40:00:00 6 6 \N +7282 136 31 2020 26 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-06-22 \N 40:00:00 6 6 \N +7283 136 31 2020 27 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-06-29 \N 40:00:00 6 6 \N +7326 110 31 2020 30 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-07-20 \N 40:00:00 6 6 \N +7225 102 31 2020 25 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-06-15 \N 40:00:00 6 6 \N +7226 102 31 2020 26 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-06-22 \N 40:00:00 6 6 \N +7227 102 31 2020 27 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-06-29 \N 40:00:00 6 6 \N +7228 102 31 2020 28 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-07-06 \N 40:00:00 6 6 \N +7229 102 31 2020 29 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-07-13 \N 40:00:00 6 6 \N +7230 102 31 2020 30 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-07-20 \N 40:00:00 6 6 \N +7231 102 31 2020 31 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-07-27 \N 40:00:00 6 6 \N +7232 102 31 2020 32 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-08-03 \N 40:00:00 6 6 \N +7284 136 31 2020 28 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-07-06 \N 40:00:00 6 6 \N +7285 136 31 2020 29 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-07-13 \N 40:00:00 6 6 \N +7286 136 31 2020 30 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-07-20 \N 40:00:00 6 6 \N +7287 136 31 2020 31 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-07-27 \N 40:00:00 6 6 \N +7249 133 31 2020 25 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-06-15 \N 40:00:00 6 6 \N +7250 133 31 2020 26 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-06-22 \N 40:00:00 6 6 \N +7251 133 31 2020 27 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-06-29 \N 40:00:00 6 6 \N +7252 133 31 2020 28 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-07-06 \N 40:00:00 6 6 \N +7253 133 31 2020 29 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-07-13 \N 40:00:00 6 6 \N +7254 133 31 2020 30 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-07-20 \N 40:00:00 6 6 \N +7255 133 31 2020 31 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-07-27 \N 40:00:00 6 6 \N +7256 133 31 2020 32 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-08-03 \N 40:00:00 6 6 \N +7301 141 31 2020 29 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-07-13 \N 40:00:00 6 6 \N +7302 141 31 2020 30 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-07-20 \N 40:00:00 6 6 \N +7303 141 31 2020 31 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-07-27 \N 40:00:00 6 6 \N +7304 141 31 2020 32 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-08-03 \N 40:00:00 6 6 \N +7327 110 31 2020 31 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-07-27 \N 40:00:00 6 6 \N +7328 110 31 2020 32 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-08-03 \N 40:00:00 6 6 \N +7329 145 31 2020 25 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-06-15 \N 40:00:00 6 6 \N +7330 145 31 2020 26 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-06-22 \N 40:00:00 6 6 \N +7271 128 31 2020 31 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-07-27 \N 40:00:00 6 6 \N +7272 128 31 2020 32 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-08-03 \N 40:00:00 6 6 \N +7273 142 31 2020 25 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-06-15 \N 40:00:00 6 6 \N +7274 142 31 2020 26 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-06-22 \N 40:00:00 6 6 \N +7275 142 31 2020 27 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-06-29 \N 40:00:00 6 6 \N +7276 142 31 2020 28 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-07-06 \N 40:00:00 6 6 \N +7277 142 31 2020 29 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-07-13 \N 40:00:00 6 6 \N +7278 142 31 2020 30 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-07-20 \N 40:00:00 6 6 \N +7279 142 31 2020 31 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-07-27 \N 40:00:00 6 6 \N +7280 142 31 2020 32 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-08-03 \N 40:00:00 6 6 \N +7290 139 31 2020 26 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-06-22 \N 40:00:00 6 6 \N +7291 139 31 2020 27 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-06-29 \N 40:00:00 6 6 \N +7292 139 31 2020 28 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-07-06 \N 40:00:00 6 6 \N +7293 139 31 2020 29 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-07-13 \N 40:00:00 6 6 \N +7294 139 31 2020 30 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-07-20 \N 40:00:00 6 6 \N +7295 139 31 2020 31 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-07-27 \N 40:00:00 6 6 \N +7296 139 31 2020 32 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-08-03 \N 40:00:00 6 6 \N +7321 110 31 2020 25 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-06-15 \N 40:00:00 6 6 \N +7322 110 31 2020 26 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-06-22 \N 40:00:00 6 6 \N +7323 110 31 2020 27 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-06-29 \N 40:00:00 6 6 \N +7324 110 31 2020 28 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-07-06 \N 40:00:00 6 6 \N +7313 106 31 2020 25 12:30:00 40:00:00 00:00:00 00:00:00 00:00:00 27:30:00 2020-06-15 \N 40:00:00 4 3 \N +7314 106 31 2020 26 12:30:00 40:00:00 00:00:00 00:00:00 00:00:00 27:30:00 2020-06-22 \N 40:00:00 4 3 \N +7315 106 31 2020 27 12:30:00 40:00:00 00:00:00 00:00:00 00:00:00 27:30:00 2020-06-29 \N 40:00:00 4 3 \N +7316 106 31 2020 28 12:30:00 40:00:00 00:00:00 00:00:00 00:00:00 27:30:00 2020-07-06 \N 40:00:00 4 3 \N +7317 106 31 2020 29 12:30:00 40:00:00 00:00:00 00:00:00 00:00:00 27:30:00 2020-07-13 \N 40:00:00 4 3 \N +7318 106 31 2020 30 12:30:00 40:00:00 00:00:00 00:00:00 00:00:00 27:30:00 2020-07-20 \N 40:00:00 4 3 \N +7319 106 31 2020 31 12:30:00 40:00:00 00:00:00 00:00:00 00:00:00 27:30:00 2020-07-27 \N 40:00:00 4 3 \N +7320 106 31 2020 32 12:30:00 40:00:00 00:00:00 00:00:00 00:00:00 27:30:00 2020-08-03 \N 40:00:00 4 3 \N +7331 145 31 2020 27 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-06-29 \N 40:00:00 6 6 \N +7332 145 31 2020 28 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-07-06 \N 40:00:00 6 6 \N +7333 145 31 2020 29 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-07-13 \N 40:00:00 6 6 \N +7334 145 31 2020 30 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-07-20 \N 40:00:00 6 6 \N +7335 145 31 2020 31 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-07-27 \N 40:00:00 6 6 \N +7336 145 31 2020 32 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-08-03 \N 40:00:00 6 6 \N +7337 148 31 2020 25 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-06-15 \N 40:00:00 6 6 \N +7338 148 31 2020 26 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-06-22 \N 40:00:00 6 6 \N +7339 148 31 2020 27 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-06-29 \N 40:00:00 6 6 \N +7340 148 31 2020 28 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-07-06 \N 40:00:00 6 6 \N +7341 148 31 2020 29 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-07-13 \N 40:00:00 6 6 \N +7342 148 31 2020 30 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-07-20 \N 40:00:00 6 6 \N +7343 148 31 2020 31 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-07-27 \N 40:00:00 6 6 \N +7344 148 31 2020 32 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-08-03 \N 40:00:00 6 6 \N +7345 130 31 2020 25 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-06-15 \N 40:00:00 6 6 \N +7346 130 31 2020 26 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-06-22 \N 40:00:00 6 6 \N +7347 130 31 2020 27 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-06-29 \N 40:00:00 6 6 \N +7348 130 31 2020 28 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-07-06 \N 40:00:00 6 6 \N +7349 130 31 2020 29 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-07-13 \N 40:00:00 6 6 \N +7350 130 31 2020 30 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-07-20 \N 40:00:00 6 6 \N +7351 130 31 2020 31 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-07-27 \N 40:00:00 6 6 \N +7352 130 31 2020 32 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-08-03 \N 40:00:00 6 6 \N +7353 129 31 2020 25 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-06-15 \N 40:00:00 6 6 \N +7354 129 31 2020 26 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-06-22 \N 40:00:00 6 6 \N +7355 129 31 2020 27 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-06-29 \N 40:00:00 6 6 \N +7356 129 31 2020 28 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-07-06 \N 40:00:00 6 6 \N +7357 129 31 2020 29 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-07-13 \N 40:00:00 6 6 \N +7358 129 31 2020 30 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-07-20 \N 40:00:00 6 6 \N +7359 129 31 2020 31 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-07-27 \N 40:00:00 6 6 \N +7360 129 31 2020 32 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-08-03 \N 40:00:00 6 6 \N +7361 143 31 2020 25 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-06-15 \N 40:00:00 6 6 \N +7362 143 31 2020 26 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-06-22 \N 40:00:00 6 6 \N +7363 143 31 2020 27 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-06-29 \N 40:00:00 6 6 \N +7364 143 31 2020 28 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-07-06 \N 40:00:00 6 6 \N +7365 143 31 2020 29 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-07-13 \N 40:00:00 6 6 \N +7366 143 31 2020 30 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-07-20 \N 40:00:00 6 6 \N +7367 143 31 2020 31 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-07-27 \N 40:00:00 6 6 \N +7368 143 31 2020 32 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-08-03 \N 40:00:00 6 6 \N \. @@ -7745,6 +11835,39 @@ COPY portanova.staffvacancy (id, id_staff, daydate, id_vacancytype, vacancyhours -- COPY portanova.vacancydays (id, daydate, vacancyname) FROM stdin; +1 2020-01-01 Nouvel An +2 2020-04-13 Lundi de Pâques +3 2020-05-01 Premier.05 +4 2020-05-09 Journée de l'Europe +5 2020-05-21 Ascension +6 2020-06-01 Lundi de Pentecôte +7 2020-06-23 Célébration de l'anniversaire du Grand-Duc +8 2020-08-15 Assomption +9 2020-11-01 Toussaint +10 2020-12-25 Noël +11 2020-12-26 Deuxième jour de Noël +12 2021-01-01 Nouvel An +13 2021-04-05 Lundi de Pâques +14 2021-05-01 Premier.05 +15 2021-05-09 Journée de l'Europe +16 2021-05-13 Ascension +17 2021-05-24 Lundi de Pentecôte +18 2021-06-23 Célébration de l'anniversaire du Grand-Duc +19 2021-08-15 Assomption +20 2021-11-01 Toussaint +21 2021-12-25 Noël +22 2021-12-26 Deuxième jour de Noël +23 2022-01-01 Nouvel An +24 2022-04-18 Lundi de Pâques +25 2022-05-01 Premier.05 +26 2022-05-09 Journée de l'Europe +27 2022-05-26 Ascension +28 2022-06-06 Lundi de Pentecôte +29 2022-06-23 Célébration de l'anniversaire du Grand-Duc +30 2022-08-15 Assomption +31 2022-11-01 Toussaint +32 2022-12-25 Noël +33 2022-12-26 Deuxième jour de Noël \. @@ -7764,106 +11887,54 @@ COPY portanova.vacancytypes (id, vacancyname, isworktime, isfreetime, color) FRO -- --- Data for Name: workplans; Type: TABLE DATA; Schema: portanova; Owner: potlu_user +-- Data for Name: workplandays; Type: TABLE DATA; Schema: portanova; Owner: potlu_user -- -COPY portanova.workplans (id, workplan, mon_timestart1, mon_timeend1, mon_timestart2, mon_timeend2, mon_timepause, tue_timestart1, tue_timeend1, tue_timestart2, tue_timeend2, tue_timepause, wed_timestart1, wed_timeend1, wed_timestart2, wed_timeend2, wed_timepause, thu_timestart1, thu_timeend1, thu_timestart2, thu_timeend2, thu_timepause, fri_timestart1, fri_timeend1, fri_timestart2, fri_timeend2, fri_timepause, sat_timestart1, sat_timeend1, sat_timestart2, sat_timeend2, sat_timepause, sun_timestart1, sun_timeend1, sun_timestart2, sun_timeend2, sun_timepause) FROM stdin; -6 Cuisine 1 (40h) 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 \N \N \N \N \N \N \N \N \N \N -1 Standard 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 \N \N \N \N \N \N \N \N \N \N +COPY portanova.workplandays (id, id_workplan, weekday, start1, end1, start2, end2, pause) FROM stdin; +1 6 2 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 +2 6 5 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 +3 1 1 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 +4 6 4 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 +5 1 4 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 +6 1 3 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 +7 6 3 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 +9 1 2 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 +10 1 5 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 +11 1 6 \N \N \N \N \N +12 1 7 \N \N \N \N \N +13 6 6 \N \N \N \N \N +14 6 7 \N \N \N \N \N +8 6 1 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 \. -- --- Data for Name: zzold_staffreportperiodsums; Type: TABLE DATA; Schema: portanova; Owner: potlu_user --- - -COPY portanova.zzold_staffreportperiodsums (id, id_staff, id_reportperiod, plannedhours, contracthours, trackedhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) FROM stdin; -18 135 18 328:00:00 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 \N -56 141 9 304:00:00 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 \N -57 142 9 320:00:00 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 \N -58 138 9 304:00:00 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 \N -2 141 10 320:00:00 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 \N -3 142 10 320:00:00 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 \N -19 133 18 328:00:00 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 \N -20 141 18 328:00:00 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 \N -21 142 18 328:00:00 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 \N -22 127 18 328:00:00 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 \N -23 136 18 328:00:00 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 \N -24 138 18 328:00:00 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 \N -25 139 18 328:00:00 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 \N -26 134 18 328:00:00 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 \N -27 131 18 328:00:00 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 \N -28 129 18 328:00:00 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 \N -29 128 18 328:00:00 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 \N -30 130 18 328:00:00 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 \N -31 143 18 328:00:00 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 \N -33 103 19 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 \N -35 125 19 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 \N -32 102 19 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 \N -34 104 19 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 \N -36 122 20 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 \N -38 117 20 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 \N -37 121 20 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 \N -39 115 20 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 \N -40 114 20 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 \N -41 119 20 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 \N -42 113 20 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 \N -43 146 20 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 \N -44 112 20 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 \N -45 108 20 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 \N -46 109 20 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 \N -47 147 20 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 \N -48 105 20 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 \N -49 118 20 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 \N -59 131 9 320:00:00 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 \N -60 135 9 320:00:00 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 \N -61 132 9 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 \N -62 133 9 320:00:00 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 \N -63 127 9 304:00:00 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 \N -64 136 9 320:00:00 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 \N -65 140 9 184:00:00 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 \N -66 139 9 304:00:00 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 \N -67 134 9 304:00:00 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 \N -68 129 9 320:00:00 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 \N -69 144 9 304:00:00 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 \N -70 128 9 24:00:00 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 \N -71 130 9 320:00:00 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 \N -72 143 9 304:00:00 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 \N -4 138 10 320:00:00 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 \N -5 131 10 320:00:00 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 \N -6 135 10 320:00:00 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 \N -7 133 10 320:00:00 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 \N -8 127 10 320:00:00 00:00:00 00:00:00 08:00:00 00:00:00 00:00:00 \N -9 136 10 320:00:00 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 \N -10 139 10 320:00:00 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 \N -11 134 10 320:00:00 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 \N -12 129 10 320:00:00 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 \N -13 144 10 218:00:00 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 \N -14 128 10 320:00:00 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 \N -15 130 10 320:00:00 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 \N -16 143 10 320:00:00 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 \N -102 151 19 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 \N -50 106 20 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 \N -51 111 20 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 \N -52 110 20 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 \N -53 145 20 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 \N -54 148 20 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 \N -55 149 20 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 \N +-- Data for Name: workplans; Type: TABLE DATA; Schema: portanova; Owner: potlu_user +-- + +COPY portanova.workplans (id, workplan, mon_timestart1, mon_timeend1, mon_timestart2, mon_timeend2, mon_timepause, tue_timestart1, tue_timeend1, tue_timestart2, tue_timeend2, tue_timepause, wed_timestart1, wed_timeend1, wed_timestart2, wed_timeend2, wed_timepause, thu_timestart1, thu_timeend1, thu_timestart2, thu_timeend2, thu_timepause, fri_timestart1, fri_timeend1, fri_timestart2, fri_timeend2, fri_timepause, sat_timestart1, sat_timeend1, sat_timestart2, sat_timeend2, sat_timepause, sun_timestart1, sun_timeend1, sun_timestart2, sun_timeend2, sun_timepause, weekhours, weekdays, weekdayslist) FROM stdin; +6 Cuisine 1 (40h) 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 \N \N \N \N \N \N \N \N \N \N \N \N \N +1 Standard 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 \N \N \N \N \N \N \N \N \N \N \N \N \N \. -- --- Name: editlog_id_seq; Type: SEQUENCE SET; Schema: portanova; Owner: potlu_user +-- Data for Name: worktimes; Type: TABLE DATA; Schema: portanova; Owner: potlu_user -- -SELECT pg_catalog.setval('portanova.editlog_id_seq', 1, false); +COPY portanova.worktimes (id, startdate, enddate, defaultdayhours, maxdayhours, defaultweekhours, maxweekhours, maxinterruptionhours, isdefault) FROM stdin; +1 \N \N 08:00:00 10:00:00 40:00:00 48:00:00 03:00:00 t +3 2020-12-23 2021-01-02 08:00:00 12:00:00 40:00:00 51:00:00 03:00:00 \N +4 2020-04-04 2020-04-19 08:00:00 12:00:00 40:00:00 51:00:00 03:00:00 \N +2 2020-06-01 2020-09-30 08:00:00 12:00:00 40:00:00 51:00:00 03:00:00 \N +\. -- -- Name: reportperiod_id_seq; Type: SEQUENCE SET; Schema: portanova; Owner: potlu_user -- -SELECT pg_catalog.setval('portanova.reportperiod_id_seq', 29, true); +SELECT pg_catalog.setval('portanova.reportperiod_id_seq', 31, true); -- @@ -7884,21 +11955,14 @@ SELECT pg_catalog.setval('portanova.staffgroups_id_seq', 8, true); -- Name: staffperiodbase_id_seq; Type: SEQUENCE SET; Schema: portanova; Owner: potlu_user -- -SELECT pg_catalog.setval('portanova.staffperiodbase_id_seq', 172, true); +SELECT pg_catalog.setval('portanova.staffperiodbase_id_seq', 173, true); -- -- Name: staffreportperiod_id_seq; Type: SEQUENCE SET; Schema: portanova; Owner: potlu_user -- -SELECT pg_catalog.setval('portanova.staffreportperiod_id_seq', 1151, true); - - --- --- Name: staffreportperiodsums_id_seq; Type: SEQUENCE SET; Schema: portanova; Owner: potlu_user --- - -SELECT pg_catalog.setval('portanova.staffreportperiodsums_id_seq', 126, true); +SELECT pg_catalog.setval('portanova.staffreportperiod_id_seq', 2525, true); -- @@ -7912,21 +11976,28 @@ SELECT pg_catalog.setval('portanova.staffvacancy_id_seq', 1, false); -- Name: staffweeksums_id_seq; Type: SEQUENCE SET; Schema: portanova; Owner: potlu_user -- -SELECT pg_catalog.setval('portanova.staffweeksums_id_seq', 6761, true); +SELECT pg_catalog.setval('portanova.staffweeksums_id_seq', 17525, true); -- -- Name: staffworkplan_id_seq; Type: SEQUENCE SET; Schema: portanova; Owner: potlu_user -- -SELECT pg_catalog.setval('portanova.staffworkplan_id_seq', 1083489, true); +SELECT pg_catalog.setval('portanova.staffworkplan_id_seq', 1158302, true); -- -- Name: vacancydays_id_seq; Type: SEQUENCE SET; Schema: portanova; Owner: potlu_user -- -SELECT pg_catalog.setval('portanova.vacancydays_id_seq', 1, false); +SELECT pg_catalog.setval('portanova.vacancydays_id_seq', 33, true); + + +-- +-- Name: workplandays_id_seq; Type: SEQUENCE SET; Schema: portanova; Owner: potlu_user +-- + +SELECT pg_catalog.setval('portanova.workplandays_id_seq', 14, true); -- @@ -7937,18 +12008,17 @@ SELECT pg_catalog.setval('portanova.workplans_id_seq', 6, true); -- --- Name: worktypes_id_seq; Type: SEQUENCE SET; Schema: portanova; Owner: potlu_user +-- Name: worktimes_id_seq; Type: SEQUENCE SET; Schema: portanova; Owner: potlu_user -- -SELECT pg_catalog.setval('portanova.worktypes_id_seq', 7, true); +SELECT pg_catalog.setval('portanova.worktimes_id_seq', 4, true); -- --- Name: editlog editlog_pkey; Type: CONSTRAINT; Schema: portanova; Owner: potlu_user +-- Name: worktypes_id_seq; Type: SEQUENCE SET; Schema: portanova; Owner: potlu_user -- -ALTER TABLE ONLY portanova.editlog - ADD CONSTRAINT editlog_pkey PRIMARY KEY (id); +SELECT pg_catalog.setval('portanova.worktypes_id_seq', 7, true); -- @@ -7991,14 +12061,6 @@ ALTER TABLE ONLY portanova.staffreportperiod ADD CONSTRAINT staffreportperiod_pkey PRIMARY KEY (id); --- --- Name: zzold_staffreportperiodsums staffreportperiodsums_pkey; Type: CONSTRAINT; Schema: portanova; Owner: potlu_user --- - -ALTER TABLE ONLY portanova.zzold_staffreportperiodsums - ADD CONSTRAINT staffreportperiodsums_pkey PRIMARY KEY (id); - - -- -- Name: staffvacancy staffvacancy_pkey; Type: CONSTRAINT; Schema: portanova; Owner: potlu_user -- @@ -8023,14 +12085,6 @@ ALTER TABLE ONLY portanova.staffreportperioddays ADD CONSTRAINT staffworkplan_pkey PRIMARY KEY (id); --- --- Name: zzold_staffreportperiodsums uniq_staffperiod_cal; Type: CONSTRAINT; Schema: portanova; Owner: potlu_user --- - -ALTER TABLE ONLY portanova.zzold_staffreportperiodsums - ADD CONSTRAINT uniq_staffperiod_cal UNIQUE (id_reportperiod, id_staff); - - -- -- Name: staffreportperiod uniq_staffreportperiod_cal; Type: CONSTRAINT; Schema: portanova; Owner: potlu_user -- @@ -8063,6 +12117,22 @@ ALTER TABLE ONLY portanova.vacancydays ADD CONSTRAINT vacancydays_pkey PRIMARY KEY (id); +-- +-- Name: workplandays workplandays_pkey; Type: CONSTRAINT; Schema: portanova; Owner: potlu_user +-- + +ALTER TABLE ONLY portanova.workplandays + ADD CONSTRAINT workplandays_pkey PRIMARY KEY (id); + + +-- +-- Name: workplandays workplandays_un; Type: CONSTRAINT; Schema: portanova; Owner: potlu_user +-- + +ALTER TABLE ONLY portanova.workplandays + ADD CONSTRAINT workplandays_un UNIQUE (id_workplan, weekday); + + -- -- Name: workplans workplans_pkey; Type: CONSTRAINT; Schema: portanova; Owner: potlu_user -- @@ -8071,6 +12141,14 @@ ALTER TABLE ONLY portanova.workplans ADD CONSTRAINT workplans_pkey PRIMARY KEY (id); +-- +-- Name: worktimes worktimes_pkey; Type: CONSTRAINT; Schema: portanova; Owner: potlu_user +-- + +ALTER TABLE ONLY portanova.worktimes + ADD CONSTRAINT worktimes_pkey PRIMARY KEY (id); + + -- -- Name: vacancytypes worktypes_pkey; Type: CONSTRAINT; Schema: portanova; Owner: potlu_user -- @@ -8080,120 +12158,27 @@ ALTER TABLE ONLY portanova.vacancytypes -- --- Name: zzold_vw_staffworkplanlist _RETURN; Type: RULE; Schema: portanova; Owner: potlu_user +-- Name: vw_workplandayslist _RETURN; Type: RULE; Schema: portanova; Owner: potlu_user -- -CREATE OR REPLACE VIEW portanova.zzold_vw_staffworkplanlist AS - SELECT stw2.calweek, - stw2.calyear, - stw2.caldate AS weekstart, - date((stw2.caldate + '6 days'::interval)) AS weekend, - public.getdateslist(stw2.caldate, 7) AS dates, - stw2.id_staff, - stw2.staffname AS dspstaffname, - stw2.id_staffgroup, - (((((((((((((((((((''::text || ''::text) || ''::text) || ''::text) || ''::text) || ''::text) || '
'::text) || 'Semaine '::text) || stw2.calweek) || '
Contrat:'::text) || to_char(sws.contracthours, 'HH24:MI'::text)) || '
Plan:'::text) || to_char(sws.workhours, 'HH24:MI'::text)) || '
Congé:'::text) || to_char(sws.vacancyhours, 'HH24:MI'::text)) || '
Récup:'::text) || to_char(sws.recuperationhours, 'HH24:MI'::text)) || '
A récup:'::text) || to_char(sws.diffhours, 'HH24:MI'::text)) || '
'::text) AS dspweektotals, - sws.contracthours, - sws.workhours AS plannedhours, - sws.vacancyhours, - sws.recuperationhours, - sws.diffhours AS hoursdiff, - max( - CASE - WHEN (stw2.isodow = 1) THEN stw2.id - ELSE NULL::bigint - END) AS mon_id, - max( - CASE - WHEN (stw2.isodow = 1) THEN ((((((((''::text || ''::text) || (COALESCE((((''::text), ''::text) || COALESCE(((((''::text), ''::text))) || COALESCE(((''::text), ''::text)) || COALESCE(((''::text), ''::text)) || COALESCE(((((((((''::text), ''::text)) || '
'::text) || to_char((stw2.caldate)::timestamp with time zone, 'DD.MM.YYYY'::text)) || '
'::text || (to_char((stw2.timestart1)::interval, 'HH24:MI'::text) || ' - '::text)) || to_char((stw2.timeend1)::interval, 'HH24:MI'::text)) || '
'::text || to_char((stw2.timestart2)::interval, 'HH24:MI'::text)) || ' - '::text) || to_char((stw2.timeend2)::interval, 'HH24:MI'::text)) || '
Pause:'::text || to_char((stw2.timepause)::interval, 'HH24:MI'::text)) || '
Plan:'::text || to_char((stw2.totaltime)::interval, 'HH24:MI'::text)) || '
'::text) || stw2.vacancyname) || ':'::text) || to_char((stw2.vacancyhours)::interval, 'HH24:MI'::text)) || '
'::text) - ELSE NULL::text - END) AS dspmontimes, - max( - CASE - WHEN (stw2.isodow = 2) THEN stw2.id - ELSE NULL::bigint - END) AS tue_id, - max( - CASE - WHEN (stw2.isodow = 2) THEN ((((((((''::text || ''::text) || (COALESCE((((''::text), ''::text) || COALESCE(((((''::text), ''::text))) || COALESCE(((''::text), ''::text)) || COALESCE(((''::text), ''::text)) || COALESCE(((((((((''::text), ''::text)) || '
'::text) || to_char((date((stw2.caldate + '1 day'::interval)))::timestamp with time zone, 'DD.MM.YYYY'::text)) || '
'::text || (to_char((stw2.timestart1)::interval, 'HH24:MI'::text) || ' - '::text)) || to_char((stw2.timeend1)::interval, 'HH24:MI'::text)) || '
'::text || to_char((stw2.timestart2)::interval, 'HH24:MI'::text)) || ' - '::text) || to_char((stw2.timeend2)::interval, 'HH24:MI'::text)) || '
Pause:'::text || to_char((stw2.timepause)::interval, 'HH24:MI'::text)) || '
Plan:'::text || to_char((stw2.totaltime)::interval, 'HH24:MI'::text)) || '
'::text) || stw2.vacancyname) || ':'::text) || to_char((stw2.vacancyhours)::interval, 'HH24:MI'::text)) || '
'::text) - ELSE NULL::text - END) AS dsptuetimes, - max( - CASE - WHEN (stw2.isodow = 3) THEN stw2.id - ELSE NULL::bigint - END) AS wed_id, - max( - CASE - WHEN (stw2.isodow = 3) THEN ((((((((''::text || ''::text) || (COALESCE((((''::text), ''::text) || COALESCE(((((''::text), ''::text))) || COALESCE(((''::text), ''::text)) || COALESCE(((''::text), ''::text)) || COALESCE(((((((((''::text), ''::text)) || '
'::text) || to_char((date((stw2.caldate + '2 days'::interval)))::timestamp with time zone, 'DD.MM.YYYY'::text)) || '
'::text || (to_char((stw2.timestart1)::interval, 'HH24:MI'::text) || ' - '::text)) || to_char((stw2.timeend1)::interval, 'HH24:MI'::text)) || '
'::text || to_char((stw2.timestart2)::interval, 'HH24:MI'::text)) || ' - '::text) || to_char((stw2.timeend2)::interval, 'HH24:MI'::text)) || '
Pause:'::text || to_char((stw2.timepause)::interval, 'HH24:MI'::text)) || '
Plan:'::text || to_char((stw2.totaltime)::interval, 'HH24:MI'::text)) || '
'::text) || stw2.vacancyname) || ':'::text) || to_char((stw2.vacancyhours)::interval, 'HH24:MI'::text)) || '
'::text) - ELSE NULL::text - END) AS dspwedtimes, - max( - CASE - WHEN (stw2.isodow = 4) THEN stw2.id - ELSE NULL::bigint - END) AS thu_id, - max( - CASE - WHEN (stw2.isodow = 4) THEN ((((((((''::text || ''::text) || (COALESCE((((''::text), ''::text) || COALESCE(((((''::text), ''::text))) || COALESCE(((''::text), ''::text)) || COALESCE(((''::text), ''::text)) || COALESCE(((((((((''::text), ''::text)) || '
'::text) || to_char((date((stw2.caldate + '3 days'::interval)))::timestamp with time zone, 'DD.MM.YYYY'::text)) || '
'::text || (to_char((stw2.timestart1)::interval, 'HH24:MI'::text) || ' - '::text)) || to_char((stw2.timeend1)::interval, 'HH24:MI'::text)) || '
'::text || to_char((stw2.timestart2)::interval, 'HH24:MI'::text)) || ' - '::text) || to_char((stw2.timeend2)::interval, 'HH24:MI'::text)) || '
Pause:'::text || to_char((stw2.timepause)::interval, 'HH24:MI'::text)) || '
Plan:'::text || to_char((stw2.totaltime)::interval, 'HH24:MI'::text)) || '
'::text) || stw2.vacancyname) || ':'::text) || to_char((stw2.vacancyhours)::interval, 'HH24:MI'::text)) || '
'::text) - ELSE NULL::text - END) AS dspthutimes, - max( - CASE - WHEN (stw2.isodow = 5) THEN stw2.id - ELSE NULL::bigint - END) AS fri_id, - max( - CASE - WHEN (stw2.isodow = 5) THEN ((((((((''::text || ''::text) || (COALESCE((((''::text), ''::text) || COALESCE(((((''::text), ''::text))) || COALESCE(((''::text), ''::text)) || COALESCE(((''::text), ''::text)) || COALESCE(((((((((''::text), ''::text)) || '
'::text) || to_char((date((stw2.caldate + '4 days'::interval)))::timestamp with time zone, 'DD.MM.YYYY'::text)) || '
'::text || (to_char((stw2.timestart1)::interval, 'HH24:MI'::text) || ' - '::text)) || to_char((stw2.timeend1)::interval, 'HH24:MI'::text)) || '
'::text || to_char((stw2.timestart2)::interval, 'HH24:MI'::text)) || ' - '::text) || to_char((stw2.timeend2)::interval, 'HH24:MI'::text)) || '
Pause:'::text || to_char((stw2.timepause)::interval, 'HH24:MI'::text)) || '
Plan:'::text || to_char((stw2.totaltime)::interval, 'HH24:MI'::text)) || '
'::text) || stw2.vacancyname) || ':'::text) || to_char((stw2.vacancyhours)::interval, 'HH24:MI'::text)) || '
'::text) - ELSE NULL::text - END) AS dspfritimes, - max( - CASE - WHEN (stw2.isodow = 6) THEN stw2.id - ELSE NULL::bigint - END) AS sat_id, - max( - CASE - WHEN (stw2.isodow = 6) THEN (((((((((''::text || ''::text) || COALESCE(((((''::text), ''::text)) || COALESCE(((((''::text), ''::text)) || COALESCE(((''::text), ''::text)) || COALESCE(((''::text), ''::text)) || COALESCE(((((((((''::text), ''::text)) || '
'::text) || to_char((date((stw2.caldate + '5 days'::interval)))::timestamp with time zone, 'DD.MM.YYYY'::text)) || '
'::text || to_char((stw2.timestart1)::interval, 'HH24:MI'::text)) || ' - '::text) || to_char((stw2.timeend1)::interval, 'HH24:MI'::text)) || '
'::text || to_char((stw2.timestart2)::interval, 'HH24:MI'::text)) || ' - '::text) || to_char((stw2.timeend2)::interval, 'HH24:MI'::text)) || '
Pause:'::text || to_char((stw2.timepause)::interval, 'HH24:MI'::text)) || '
Plan:'::text || to_char((stw2.totaltime)::interval, 'HH24:MI'::text)) || '
'::text) || stw2.vacancyname) || ':'::text) || to_char((stw2.vacancyhours)::interval, 'HH24:MI'::text)) || '
'::text) - ELSE NULL::text - END) AS dspsattimes, - max( - CASE - WHEN (stw2.isodow = 7) THEN stw2.id - ELSE NULL::bigint - END) AS sun_id, - max( - CASE - WHEN (stw2.isodow = 7) THEN (((((((((''::text || ''::text) || COALESCE((((''::text), ''::text)) || COALESCE(((((''::text), ''::text)) || COALESCE(((''::text), ''::text)) || COALESCE(((''::text), ''::text)) || COALESCE(((((((((''::text), ''::text)) || '
'::text) || to_char((date((stw2.caldate + '6 days'::interval)))::timestamp with time zone, 'DD.MM.YYYY'::text)) || '
'::text || (to_char((stw2.timestart1)::interval, 'HH24:MI'::text) || ' - '::text)) || to_char((stw2.timeend1)::interval, 'HH24:MI'::text)) || '
'::text || to_char((stw2.timestart2)::interval, 'HH24:MI'::text)) || ' - '::text) || to_char((stw2.timeend2)::interval, 'HH24:MI'::text)) || '
Pause:'::text || to_char((stw2.timepause)::interval, 'HH24:MI'::text)) || '
Plan:'::text || to_char((stw2.totaltime)::interval, 'HH24:MI'::text)) || '
'::text) || stw2.vacancyname) || ':'::text) || to_char((stw2.vacancyhours)::interval, 'HH24:MI'::text)) || '
'::text) - ELSE NULL::text - END) AS dspsuntimes - FROM (( SELECT date_part('isoyear'::text, stw.daydate) AS calyear, - date_part('week'::text, stw.daydate) AS calweek, - (date_trunc('week'::text, (stw.daydate)::timestamp with time zone))::date AS caldate, - (date_part('isodow'::text, stw.daydate))::integer AS isodow, - ((st.surname || ' '::text) || st.prename) AS staffname, - stw.daydate, - stw.id, - stw.id_staff, - stw.timestart1, - stw.timeend1, - stw.timestart2, - stw.timeend2, - stw.timepause, - stw.dayhours AS totaltime, - stw.vacancyhours, - stw.id_vacancytype, - stw.id_staffgroup, - stw.daytype, - vt.color, - vt.vacancyname - FROM ((portanova.staffreportperioddays stw - LEFT JOIN portanova.staff st ON ((stw.id_staff = st.id))) - LEFT JOIN portanova.vacancytypes vt ON ((stw.id_vacancytype = vt.id)))) stw2 - LEFT JOIN portanova.staffreportperiodweeks sws ON (((sws.id_staff = stw2.id_staff) AND (sws.calweek = stw2.calweek) AND ((sws.calyear)::double precision = stw2.calyear)))) - GROUP BY stw2.calweek, stw2.calyear, stw2.caldate, stw2.id_staff, stw2.staffname, sws.id, stw2.id_staffgroup - ORDER BY stw2.staffname, stw2.id_staff, stw2.calweek; +CREATE OR REPLACE VIEW portanova.vw_workplandayslist AS + SELECT (((wp.workplan || ' - Salarié(s): '::text) || count(DISTINCT sc.id_staff)) || ''::text) AS workplan, + to_char(wp.weekhours, 'HH24:MI'::text) AS weekhours, + wpd.id, + wpd.id_workplan, + wpd.weekday, + to_char((wpd.start1)::interval, 'HH24:MI'::text) AS start1, + to_char((wpd.end1)::interval, 'HH24:MI'::text) AS end1, + to_char((wpd.start2)::interval, 'HH24:MI'::text) AS start2, + to_char((wpd.end2)::interval, 'HH24:MI'::text) AS end2, + to_char((wpd.pause)::interval, 'HH24:MI'::text) AS pause, + to_char((((wpd.end1 - wpd.start1) + COALESCE((wpd.end2 - wpd.start2), '00:00:00'::interval)) - COALESCE((wpd.pause)::interval, '00:00:00'::interval)), 'HH24:MI'::text) AS dayhours, + count(DISTINCT sc.id_staff) AS staffcount + FROM ((portanova.workplandays wpd + LEFT JOIN portanova.workplans wp ON ((wpd.id_workplan = wp.id))) + LEFT JOIN portanova.staffcontract sc ON ((sc.id_workplan = wp.id))) + GROUP BY wpd.id, wp.id + ORDER BY wp.workplan, wpd.weekday; -- @@ -8260,6 +12245,14 @@ ALTER TABLE ONLY portanova.staffreportperioddays ADD CONSTRAINT staffworkplan_fk_1 FOREIGN KEY (id_staffgroup) REFERENCES portanova.staffgroups(id); +-- +-- Name: workplandays workplandays_fk; Type: FK CONSTRAINT; Schema: portanova; Owner: potlu_user +-- + +ALTER TABLE ONLY portanova.workplandays + ADD CONSTRAINT workplandays_fk FOREIGN KEY (id_workplan) REFERENCES portanova.workplans(id); + + -- -- PostgreSQL database dump complete -- diff --git a/dev/db/potlu_db.portanova.pg.schema.sql b/dev/db/potlu_db.portanova.pg.schema.sql index 28da8220..6bf7a558 100644 --- a/dev/db/potlu_db.portanova.pg.schema.sql +++ b/dev/db/potlu_db.portanova.pg.schema.sql @@ -56,7 +56,7 @@ $$; -- Name: getperiod_staffcontract(integer); Type: FUNCTION; Schema: portanova; Owner: - -- -CREATE FUNCTION portanova.getperiod_staffcontract(pid integer) RETURNS TABLE(id integer, id_staff integer, startdate date, enddate date, weekhours interval, weekdays integer, id_workplan integer) +CREATE FUNCTION portanova.getperiod_staffcontract(pid integer) RETURNS TABLE(id integer, id_staff integer, startdate date, enddate date, weekhours interval, weekdays integer, id_workplan integer, defaultfreedays json) LANGUAGE plpgsql AS $$ declare @@ -65,11 +65,11 @@ CREATE FUNCTION portanova.getperiod_staffcontract(pid integer) RETURNS TABLE(id begin select prd.startdate as prdstart,prd.enddate as prdend into pstart,pend from portanova.reportperiod prd where prd.id=pid; return QUERY -select sc.id,sc.id_staff, -case when sc.startdate < pstart then pstart else sc.startdate end as startdate, +select sc.id,sc.id_staff, +case when sc.startdate < pstart then pstart else sc.startdate end as startdate, case when sc.enddate is null then pend when sc.enddate > pend then pend else sc.enddate end as enddate, -sc.weekhours,sc.weekdays,sc.id_workplan -from portanova.staffcontract sc where sc.startdate<= pend and (sc.enddate is null or sc.enddate >= pstart) +sc.weekhours,sc.weekdays,sc.id_workplan,sc.defaultfreedays +from portanova.staffcontract sc where sc.startdate<= pend and (sc.enddate is null or sc.enddate >= pstart) order by sc.id_staff,sc.startdate,sc.enddate; END; $$; @@ -115,6 +115,25 @@ end; $$; +-- +-- Name: refresh_periods(); Type: FUNCTION; Schema: portanova; Owner: - +-- + +CREATE FUNCTION portanova.refresh_periods() RETURNS boolean + LANGUAGE plpgsql + AS $$ + declare + prds record; + begin + for prds in select id from portanova.reportperiod order by startdate,enddate + loop + perform portanova.update_all_staff_in_period(prds.id); + end loop; + RETURN true; + END; +$$; + + -- -- Name: set_periodday_sums(bigint); Type: FUNCTION; Schema: portanova; Owner: - -- @@ -214,23 +233,37 @@ CREATE FUNCTION portanova.set_staffperiodweek_sums(pid_reportperiod integer, pid declare wkcon record; tmpcontrhours interval; + freedays int4 := 0; begin -- INSERT Contract data into Week -for wkcon in select srpw.id,psc.weekhours,psc.weekdays,srpw.contractdays,srpw.caldays,srpw.diffhours,srpw.contracthours,srpw.totalhours +for wkcon in select srpw.id,srpw.calweek,srpw.weekstart,srpw.calyear,rp.startdate as periodstart,psc.startdate,rp.enddate as periodend,psc.enddate,psc.weekhours,psc.weekdays,srpw.contractdays,srpw.caldays,srpw.diffhours,srpw.contracthours,srpw.totalhours,psc.defaultfreedays from portanova.staffreportperiodweeks srpw -left join (select xa.id_staff,xa.startdate,xa.enddate,xa.weekhours,xa.weekdays from portanova.getperiod_staffcontract(pid_reportperiod) xa where xa.id_staff=pid_staff) psc +left join (select xa.id_staff,xa.startdate,xa.enddate,xa.weekhours,xa.weekdays,xa.defaultfreedays from portanova.getperiod_staffcontract(pid_reportperiod) xa where xa.id_staff=pid_staff) psc on (srpw.weekstart between date_trunc('week',psc.startdate) and psc.enddate) +left join portanova.reportperiod rp on (srpw.id_reportperiod =rp.id) where srpw.id_reportperiod=pid_reportperiod and srpw.id_staff=pid_staff loop --raise notice 'id=%',wkcon; - --raise notice 'id=%',wkcon.contractdays; + if wkcon.defaultfreedays is not null then + freedays = json_array_length(wkcon.defaultfreedays); + end if; wkcon.contracthours=wkcon.weekhours; wkcon.contractdays=wkcon.weekdays; - if wkcon.caldays < wkcon.contractdays then - wkcon.contractdays = wkcon.caldays; - wkcon.contracthours = (wkcon.weekhours/wkcon.weekdays) * wkcon.contractdays; + if wkcon.calweek= date_part('week',wkcon.periodstart)::int4 and wkcon.calyear= date_part('isoyear',wkcon.periodstart)::int4 then + wkcon.contracthours = wkcon.contracthours - ((wkcon.weekhours/wkcon.weekdays) * (wkcon.startdate-wkcon.periodstart)::int4); end if; + --if wkcon.startdate > wkcon.periodstart then + -- wkcon.contractdays = wkcon.contractdays-(wkcon.startdate-wkcon.periodstart)::int4; + -- wkcon.contracthours = (wkcon.weekhours/wkcon.weekdays) * wkcon.contractdays; + --end if; + --if wkcon.enddate < wkcon.periodend then + -- wkcon.contractdays = wkcon.contractdays-(wkcon.periodend-wkcon.enddate)::int4; + -- wkcon.contracthours = (wkcon.weekhours/wkcon.weekdays) * wkcon.contractdays; + --end if; + + wkcon.diffhours = wkcon.totalhours-wkcon.contracthours; + raise notice 'contractdays: % contracthours: % totalhours: % diffhours: %',wkcon.contractdays,wkcon.contracthours,wkcon.totalhours,wkcon.diffhours; --raise notice 'id=% cdays=% chours=% diffhours=%',wkcon.id,wkcon.contractdays,wkcon.contracthours,wkcon.diffhours; update portanova.staffreportperiodweeks set contracthours=wkcon.contracthours,contractdays=wkcon.contractdays,diffhours=wkcon.diffhours where id=wkcon.id; @@ -255,8 +288,10 @@ declare cdate date; edate date; wday text; + wdaynum int4; wdayplan record; cid_staffworkplan int8; + cdaytime interval; begin select * into prd from portanova.reportperiod where id= pid_period; for cont in select * from portanova.getperiod_staffcontract(pid_period) where id_staff=pid_staff @@ -264,16 +299,24 @@ begin cdate := cont.startdate; while cdate <= cont.enddate loop if cdate between prd.startdate and prd.enddate then + wdaynum = date_part('isodow',cdate)::INT4; + cdaytime := null; + + if position('"' || wdaynum || '"' in cont.defaultfreedays::text) = 0 then + cdaytime := cont.weekhours/cont.weekdays; + end if; + raise notice 'wday % => % => %',wdaynum,position('"' || wdaynum || '"' in cont.defaultfreedays::text),cdaytime; if (cont.id_workplan is not null) then wday := substr(to_char(cdate,'day'),1,3); execute 'select ' || wday || '_timestart1 as ts1,' || wday || '_timeend1 as te1,' || wday || '_timestart2 as ts2,' || wday ||'_timeend2 as te2,'|| wday ||'_timepause as tp from portanova.workplans where id=' || cont.id_workplan || ';' into wdayplan; - insert into portanova.staffreportperioddays (id_staff,daydate,id_reportperiod,timestart1,timeend1,timestart2,timeend2,timepause,contracthours) - values (pid_staff,cdate,pid_period,wdayplan.ts1,wdayplan.te1,wdayplan.ts2,wdayplan.te2,wdayplan.tp,cont.weekhours/cont.weekdays) - on conflict on constraint uniq_staffworplan_staffday do update set contracthours=cont.weekhours/cont.weekdays + + insert into portanova.staffreportperioddays (id_staff,daydate,id_reportperiod,timestart1,timeend1,timestart2,timeend2,timepause,contracthours,wdcontracthours) + values (pid_staff,cdate,pid_period,wdayplan.ts1,wdayplan.te1,wdayplan.ts2,wdayplan.te2,wdayplan.tp,cont.weekhours/cont.weekdays,cdaytime) + on conflict on constraint uniq_staffworplan_staffday do update set contracthours=cont.weekhours/cont.weekdays,wdcontracthours=cdaytime returning id into cid_staffworkplan; else - insert into portanova.staffreportperioddays (id_staff,daydate,id_reportperiod,contracthours,id_staffgrou) values ( pid_staff , cdate , pid_period,cont.weekhours/cont.weekdays) - on conflict on constraint uniq_staffworplan_staffday do update set contracthours=cont.weekhours/cont.weekdays + insert into portanova.staffreportperioddays (id_staff,daydate,id_reportperiod,contracthours,wdcontracthours) values ( pid_staff , cdate , pid_period,cont.weekhours/cont.weekdays,cdaytime) + on conflict on constraint uniq_staffworplan_staffday do update set contracthours=cont.weekhours/cont.weekdays,wdcontracthours=cdaytime returning id into cid_staffworkplan; end if; end if; @@ -305,7 +348,8 @@ coalesce(sum(workhours),'00:00:00') as workhours , coalesce(sum(vacancyhours),'00:00:00') as vacancyhours , coalesce(sum(recuperationhours) ,'00:00:00' ) as recuperationhours , coalesce(sum(dayhours),'00:00:00') as totalhours, -count(id) as caldays +coalesce(sum(contracthours),'00:00:00') as contracthours, +count(wdcontracthours) as caldays from ( select swp.id,swp.id_reportperiod,swp.id_staff, date_part('isoyear',swp.daydate) as calyear, @@ -315,14 +359,15 @@ swp.workhours, swp.contracthours, swp.recuperationhours, swp.dayhours, -swp.vacancyhours +swp.vacancyhours, +swp.wdcontracthours from portanova.staffreportperioddays swp where swp.id_reportperiod= pid_reportperiod and swp.id_staff=pid_staff) wkwp group by id_staff,id_reportperiod,calyear,calweek,weekstart loop --raise notice 'id_staff: % id_period: % calweek: % calyear: %',pid_staff,pid_reportperiod,wkpd.calweek,wkpd.calyear; - insert into portanova.staffreportperiodweeks (id_staff, id_reportperiod, calyear, calweek, workhours,vacancyhours, recuperationhours, weekstart,totalhours,caldays) - VALUES(wkpd.id_staff, wkpd.id_reportperiod, wkpd.calyear, wkpd.calweek, wkpd.workhours, wkpd.vacancyhours, wkpd.recuperationhours, wkpd.weekstart,wkpd.totalhours,wkpd.caldays) - on conflict on constraint uniq_staffweekplan_cal do update set workhours=wkpd.workhours, vacancyhours=wkpd.vacancyhours, recuperationhours=wkpd.recuperationhours,totalhours=wkpd.totalhours,caldays=wkpd.caldays; + insert into portanova.staffreportperiodweeks (id_staff, id_reportperiod, calyear, calweek, workhours,vacancyhours, recuperationhours, weekstart,totalhours,caldays,contracthours,diffhours) + VALUES(wkpd.id_staff, wkpd.id_reportperiod, wkpd.calyear, wkpd.calweek, wkpd.workhours, wkpd.vacancyhours, wkpd.recuperationhours, wkpd.weekstart,wkpd.totalhours,wkpd.caldays,wkpd.contracthours,wkpd.contracthours-wkpd.totalhours) + on conflict on constraint uniq_staffweekplan_cal do update set workhours=wkpd.workhours, vacancyhours=wkpd.vacancyhours, recuperationhours=wkpd.recuperationhours,totalhours=wkpd.totalhours,caldays=wkpd.caldays,contracthours=wkpd.contracthours,diffhours=wkpd.contracthours-wkpd.totalhours; end loop; perform portanova.set_staffperiodweek_sums(pid_reportperiod, pid_staff); @@ -531,25 +576,6 @@ end; $$; --- --- Name: zzold_refreshperiods(); Type: FUNCTION; Schema: portanova; Owner: - --- - -CREATE FUNCTION portanova.zzold_refreshperiods() RETURNS boolean - LANGUAGE plpgsql - AS $$ - declare - prds record; - begin - for prds in select id from portanova.reportperiod where isvalidated != true - loop - perform portanova.onchange_reportperiod(prds.id); - end loop; - RETURN false; - END; -$$; - - -- -- Name: zzold_set_staffperiod(integer); Type: FUNCTION; Schema: portanova; Owner: - -- @@ -581,39 +607,6 @@ SET default_tablespace = ''; SET default_with_oids = false; --- --- Name: editlog; Type: TABLE; Schema: portanova; Owner: - --- - -CREATE TABLE portanova.editlog ( - id bigint NOT NULL, - id_user integer, - tblname text, - tblfields json, - modified timestamp without time zone DEFAULT CURRENT_TIMESTAMP, - created timestamp without time zone DEFAULT CURRENT_TIMESTAMP -); - - --- --- Name: editlog_id_seq; Type: SEQUENCE; Schema: portanova; Owner: - --- - -CREATE SEQUENCE portanova.editlog_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; - - --- --- Name: editlog_id_seq; Type: SEQUENCE OWNED BY; Schema: portanova; Owner: - --- - -ALTER SEQUENCE portanova.editlog_id_seq OWNED BY portanova.editlog.id; - - -- -- Name: reportperiod; Type: TABLE; Schema: portanova; Owner: - -- @@ -701,7 +694,8 @@ CREATE TABLE portanova.staffcontract ( weekdays integer, enddate date, id_workplan integer, - weekhours interval + weekhours interval, + defaultfreedays json ); @@ -772,7 +766,8 @@ CREATE TABLE portanova.staffreportperiod ( vacancyhours interval, recuperationhours interval, hoursdiff interval, - hoursrestbefore interval + payedhours interval, + diffhourspayed interval ); @@ -820,48 +815,11 @@ CREATE TABLE portanova.staffreportperioddays ( id_reportperiod integer, dayhours time without time zone, id_recuperationtype integer, - interruptionhours time without time zone + interruptionhours time without time zone, + wdcontracthours time without time zone ); --- --- Name: zzold_staffreportperiodsums; Type: TABLE; Schema: portanova; Owner: - --- - -CREATE TABLE portanova.zzold_staffreportperiodsums ( - id integer NOT NULL, - id_staff integer, - id_reportperiod integer, - plannedhours interval DEFAULT '00:00:00'::interval, - contracthours interval DEFAULT '00:00:00'::interval, - trackedhours interval DEFAULT '00:00:00'::interval, - vacancyhours interval DEFAULT '00:00:00'::interval, - recuperationhours interval DEFAULT '00:00:00'::interval, - hoursdiff interval DEFAULT '00:00:00'::interval, - hoursrestbefore interval -); - - --- --- Name: staffreportperiodsums_id_seq; Type: SEQUENCE; Schema: portanova; Owner: - --- - -CREATE SEQUENCE portanova.staffreportperiodsums_id_seq - AS integer - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; - - --- --- Name: staffreportperiodsums_id_seq; Type: SEQUENCE OWNED BY; Schema: portanova; Owner: - --- - -ALTER SEQUENCE portanova.staffreportperiodsums_id_seq OWNED BY portanova.zzold_staffreportperiodsums.id; - - -- -- Name: staffreportperiodweeks; Type: TABLE; Schema: portanova; Owner: - -- @@ -1042,7 +1000,8 @@ CREATE VIEW portanova.vw_staffcontractdata AS staffcontract.id_staffgroup, staffcontract.enddate, staffcontract.id AS id_staffcontract, - staffcontract.id_workplan + staffcontract.id_workplan, + staffcontract.defaultfreedays FROM portanova.staffcontract; @@ -1087,7 +1046,10 @@ CREATE TABLE portanova.workplans ( sun_timeend1 time without time zone, sun_timestart2 time without time zone, sun_timeend2 time without time zone, - sun_timepause time without time zone + sun_timepause time without time zone, + weekhours interval, + weekdays integer, + weekdayslist json ); @@ -1106,10 +1068,16 @@ CREATE VIEW portanova.vw_staffcontractlist AS sg.groupcolor, sc.enddate, sc.id_workplan, + ddf.defaultfreedays, wp.workplan - FROM ((portanova.staffcontract sc + FROM (((portanova.staffcontract sc LEFT JOIN portanova.staffgroups sg ON ((sc.id_staffgroup = sg.id))) LEFT JOIN portanova.workplans wp ON ((sc.id_workplan = wp.id))) + LEFT JOIN ( SELECT dfd.id, + replace(replace(replace(replace(replace(replace(replace(dfd.defaultfreedays, '7'::text, 'di'::text), '6'::text, 'sa'::text), '5'::text, 've'::text), '4'::text, 'je'::text), '3'::text, 'me'::text), '2'::text, 'ma'::text), '1'::text, 'lu'::text) AS defaultfreedays + FROM ( SELECT staffcontract.id, + json_array_elements_text(staffcontract.defaultfreedays) AS defaultfreedays + FROM portanova.staffcontract) dfd) ddf ON ((sc.id = ddf.id))) ORDER BY sc.startdate DESC, sc.enddate DESC; @@ -1154,7 +1122,6 @@ CREATE VIEW portanova.vw_staffgroupsdata AS CREATE VIEW portanova.vw_staffgroupslist AS SELECT staffgroups.id, staffgroups.groupname, - staffgroups.groupcolor, staffgroups.isdefault FROM portanova.staffgroups; @@ -1171,289 +1138,17 @@ CREATE VIEW portanova.vw_stafflist AS st.job, st.birthdate, ((st.surname || ' '::text) || st.prename) AS dspname, - stg.groupname - FROM (portanova.staff st + stg.groupname, + stentry.entrydate + FROM ((portanova.staff st LEFT JOIN portanova.staffgroups stg ON ((st.id_staffgroup = stg.id))) + LEFT JOIN ( SELECT staffcontract.id_staff, + min(staffcontract.startdate) AS entrydate + FROM portanova.staffcontract + GROUP BY staffcontract.id_staff) stentry ON ((st.id = stentry.id_staff))) ORDER BY st.surname, st.prename; --- --- Name: vw_staffplanned_dayweektotals; Type: VIEW; Schema: portanova; Owner: - --- - -CREATE VIEW portanova.vw_staffplanned_dayweektotals AS - SELECT stw2.calweek, - stw2.caldate AS dates, - stw2.id_staff, - max( - CASE - WHEN (stw2.isodow = (1)::double precision) THEN stw2.id - ELSE NULL::bigint - END) AS mon_id, - max( - CASE - WHEN (stw2.isodow = (1)::double precision) THEN to_char((stw2.timestart1)::interval, 'HH24:MI'::text) - ELSE NULL::text - END) AS mon_start1, - max( - CASE - WHEN (stw2.isodow = (1)::double precision) THEN to_char((stw2.timeend1)::interval, 'HH24:MI'::text) - ELSE NULL::text - END) AS mon_end1, - max( - CASE - WHEN (stw2.isodow = (1)::double precision) THEN to_char((stw2.timestart2)::interval, 'HH24:MI'::text) - ELSE NULL::text - END) AS mon_start2, - max( - CASE - WHEN (stw2.isodow = (1)::double precision) THEN to_char((stw2.timeend2)::interval, 'HH24:MI'::text) - ELSE NULL::text - END) AS mon_end2, - max( - CASE - WHEN (stw2.isodow = (1)::double precision) THEN to_char((stw2.timepause)::interval, 'HH24:MI'::text) - ELSE NULL::text - END) AS mon_pause, - to_char(max( - CASE - WHEN (stw2.isodow = (1)::double precision) THEN ((stw2.time1 + stw2.time2) - (stw2.timepause)::interval) - ELSE NULL::interval - END), 'HH24:MI'::text) AS mon_timetotal, - max( - CASE - WHEN (stw2.isodow = (2)::double precision) THEN stw2.id - ELSE NULL::bigint - END) AS tue_id, - max( - CASE - WHEN (stw2.isodow = (2)::double precision) THEN to_char((stw2.timestart1)::interval, 'HH24:MI'::text) - ELSE NULL::text - END) AS tue_start1, - max( - CASE - WHEN (stw2.isodow = (2)::double precision) THEN to_char((stw2.timeend1)::interval, 'HH24:MI'::text) - ELSE NULL::text - END) AS tue_end1, - max( - CASE - WHEN (stw2.isodow = (2)::double precision) THEN to_char((stw2.timestart2)::interval, 'HH24:MI'::text) - ELSE NULL::text - END) AS tue_start2, - max( - CASE - WHEN (stw2.isodow = (2)::double precision) THEN to_char((stw2.timeend2)::interval, 'HH24:MI'::text) - ELSE NULL::text - END) AS tue_end2, - max( - CASE - WHEN (stw2.isodow = (2)::double precision) THEN to_char((stw2.timepause)::interval, 'HH24:MI'::text) - ELSE NULL::text - END) AS tue_pause, - to_char(max( - CASE - WHEN (stw2.isodow = (2)::double precision) THEN ((stw2.time1 + stw2.time2) - (stw2.timepause)::interval) - ELSE NULL::interval - END), 'HH24:MI'::text) AS tue_timetotal, - max( - CASE - WHEN (stw2.isodow = (3)::double precision) THEN stw2.id - ELSE NULL::bigint - END) AS wed_id, - max( - CASE - WHEN (stw2.isodow = (3)::double precision) THEN to_char((stw2.timestart1)::interval, 'HH24:MI'::text) - ELSE NULL::text - END) AS wed_start1, - max( - CASE - WHEN (stw2.isodow = (3)::double precision) THEN to_char((stw2.timeend1)::interval, 'HH24:MI'::text) - ELSE NULL::text - END) AS wed_end1, - max( - CASE - WHEN (stw2.isodow = (3)::double precision) THEN to_char((stw2.timestart2)::interval, 'HH24:MI'::text) - ELSE NULL::text - END) AS wed_start2, - max( - CASE - WHEN (stw2.isodow = (3)::double precision) THEN to_char((stw2.timeend2)::interval, 'HH24:MI'::text) - ELSE NULL::text - END) AS wed_end2, - max( - CASE - WHEN (stw2.isodow = (3)::double precision) THEN to_char((stw2.timepause)::interval, 'HH24:MI'::text) - ELSE NULL::text - END) AS wed_pause, - to_char(max( - CASE - WHEN (stw2.isodow = (3)::double precision) THEN ((stw2.time1 + stw2.time2) - (stw2.timepause)::interval) - ELSE NULL::interval - END), 'HH24:MI'::text) AS wed_timetotal, - max( - CASE - WHEN (stw2.isodow = (4)::double precision) THEN stw2.id - ELSE NULL::bigint - END) AS thu_id, - max( - CASE - WHEN (stw2.isodow = (4)::double precision) THEN to_char((stw2.timestart1)::interval, 'HH24:MI'::text) - ELSE NULL::text - END) AS thu_start1, - max( - CASE - WHEN (stw2.isodow = (4)::double precision) THEN to_char((stw2.timeend1)::interval, 'HH24:MI'::text) - ELSE NULL::text - END) AS thu_end1, - max( - CASE - WHEN (stw2.isodow = (4)::double precision) THEN to_char((stw2.timestart2)::interval, 'HH24:MI'::text) - ELSE NULL::text - END) AS thu_start2, - max( - CASE - WHEN (stw2.isodow = (4)::double precision) THEN to_char((stw2.timeend2)::interval, 'HH24:MI'::text) - ELSE NULL::text - END) AS thu_end2, - max( - CASE - WHEN (stw2.isodow = (4)::double precision) THEN to_char((stw2.timepause)::interval, 'HH24:MI'::text) - ELSE NULL::text - END) AS thu_pause, - to_char(max( - CASE - WHEN (stw2.isodow = (4)::double precision) THEN ((stw2.time1 + stw2.time2) - (stw2.timepause)::interval) - ELSE NULL::interval - END), 'HH24:MI'::text) AS thu_timetotal, - max( - CASE - WHEN (stw2.isodow = (5)::double precision) THEN stw2.id - ELSE NULL::bigint - END) AS fri_id, - max( - CASE - WHEN (stw2.isodow = (5)::double precision) THEN to_char((stw2.timestart1)::interval, 'HH24:MI'::text) - ELSE NULL::text - END) AS fri_start1, - max( - CASE - WHEN (stw2.isodow = (5)::double precision) THEN to_char((stw2.timeend1)::interval, 'HH24:MI'::text) - ELSE NULL::text - END) AS fri_end1, - max( - CASE - WHEN (stw2.isodow = (5)::double precision) THEN to_char((stw2.timestart2)::interval, 'HH24:MI'::text) - ELSE NULL::text - END) AS fri_start2, - max( - CASE - WHEN (stw2.isodow = (5)::double precision) THEN to_char((stw2.timeend2)::interval, 'HH24:MI'::text) - ELSE NULL::text - END) AS fri_end2, - max( - CASE - WHEN (stw2.isodow = (5)::double precision) THEN to_char((stw2.timepause)::interval, 'HH24:MI'::text) - ELSE NULL::text - END) AS fri_pause, - to_char(max( - CASE - WHEN (stw2.isodow = (5)::double precision) THEN ((stw2.time1 + stw2.time2) - (stw2.timepause)::interval) - ELSE NULL::interval - END), 'HH24:MI'::text) AS fri_timetotal, - max( - CASE - WHEN (stw2.isodow = (6)::double precision) THEN stw2.id - ELSE NULL::bigint - END) AS sat_id, - max( - CASE - WHEN (stw2.isodow = (6)::double precision) THEN to_char((stw2.timestart1)::interval, 'HH24:MI'::text) - ELSE NULL::text - END) AS sat_start1, - max( - CASE - WHEN (stw2.isodow = (6)::double precision) THEN to_char((stw2.timeend1)::interval, 'HH24:MI'::text) - ELSE NULL::text - END) AS sat_end1, - max( - CASE - WHEN (stw2.isodow = (6)::double precision) THEN to_char((stw2.timestart2)::interval, 'HH24:MI'::text) - ELSE NULL::text - END) AS sat_start2, - max( - CASE - WHEN (stw2.isodow = (6)::double precision) THEN to_char((stw2.timeend2)::interval, 'HH24:MI'::text) - ELSE NULL::text - END) AS sat_end2, - max( - CASE - WHEN (stw2.isodow = (6)::double precision) THEN to_char((stw2.timepause)::interval, 'HH24:MI'::text) - ELSE NULL::text - END) AS sat_pause, - to_char(max( - CASE - WHEN (stw2.isodow = (6)::double precision) THEN ((stw2.time1 + stw2.time2) - (stw2.timepause)::interval) - ELSE NULL::interval - END), 'HH24:MI'::text) AS sat_timetotal, - max( - CASE - WHEN (stw2.isodow = (7)::double precision) THEN stw2.id - ELSE NULL::bigint - END) AS sun_id, - max( - CASE - WHEN (stw2.isodow = (7)::double precision) THEN to_char((stw2.timestart1)::interval, 'HH24:MI'::text) - ELSE NULL::text - END) AS sun_start1, - max( - CASE - WHEN (stw2.isodow = (7)::double precision) THEN to_char((stw2.timeend1)::interval, 'HH24:MI'::text) - ELSE NULL::text - END) AS sun_end1, - max( - CASE - WHEN (stw2.isodow = (7)::double precision) THEN to_char((stw2.timestart2)::interval, 'HH24:MI'::text) - ELSE NULL::text - END) AS sun_start2, - max( - CASE - WHEN (stw2.isodow = (7)::double precision) THEN to_char((stw2.timeend2)::interval, 'HH24:MI'::text) - ELSE NULL::text - END) AS sun_end2, - max( - CASE - WHEN (stw2.isodow = (7)::double precision) THEN to_char((stw2.timepause)::interval, 'HH24:MI'::text) - ELSE NULL::text - END) AS sun_pause, - to_char(max( - CASE - WHEN (stw2.isodow = (7)::double precision) THEN ((stw2.time1 + stw2.time2) - (stw2.timepause)::interval) - ELSE NULL::interval - END), 'HH24:MI'::text) AS sun_timetotal, - to_char(sum(((stw2.time1 + stw2.time2) - (stw2.timepause)::interval)), 'HH24:MI'::text) AS week_timetotal - FROM ( SELECT staffreportperioddays.daydate, - date_part('week'::text, staffreportperioddays.daydate) AS calweek, - (date_trunc('week'::text, (staffreportperioddays.daydate)::timestamp with time zone))::date AS caldate, - date_part('isodow'::text, staffreportperioddays.daydate) AS isodow, - staffreportperioddays.id, - staffreportperioddays.id_staff, - staffreportperioddays.timestart1, - staffreportperioddays.timeend1, - CASE - WHEN (staffreportperioddays.timestart1 > staffreportperioddays.timeend1) THEN ('24:00:00'::time without time zone - ((staffreportperioddays.timestart1 - staffreportperioddays.timeend1))::time without time zone) - ELSE (staffreportperioddays.timeend1 - staffreportperioddays.timestart1) - END AS time1, - staffreportperioddays.timestart2, - staffreportperioddays.timeend2, - CASE - WHEN (staffreportperioddays.timestart2 > staffreportperioddays.timeend2) THEN ('24:00:00'::time without time zone - ((staffreportperioddays.timestart2 - staffreportperioddays.timeend2))::time without time zone) - ELSE (staffreportperioddays.timeend2 - staffreportperioddays.timestart2) - END AS time2, - staffreportperioddays.timepause - FROM portanova.staffreportperioddays) stw2 - GROUP BY stw2.calweek, stw2.caldate, stw2.id_staff; - - -- -- Name: vw_staffreportperioddays; Type: VIEW; Schema: portanova; Owner: - -- @@ -1499,6 +1194,8 @@ CREATE VIEW portanova.vw_staffreportperioddays AS END)::interval, 'HH24:MI'::text) AS interruptionhours, pw.id AS id_week, (((((((pw.calyear || '-'::text) || lpad((pw.calweek)::text, 2, '0'::text)) || '('::text) || to_char((pw.weekstart)::timestamp with time zone, 'DD.MM.YYYY'::text)) || ' - '::text) || to_char((date((pw.weekstart + '6 days'::interval)))::timestamp with time zone, 'DD.MM.YYYY'::text)) || ')'::text) AS dspweek, + ((((((((((((to_char((pw.weekstart)::timestamp with time zone, 'DD.MM.YYYY'::text) || ','::text) || to_char((date((pw.weekstart + '1 day'::interval)))::timestamp with time zone, 'DD.MM.YYYY'::text)) || ','::text) || to_char((date((pw.weekstart + '2 days'::interval)))::timestamp with time zone, 'DD.MM.YYYY'::text)) || ','::text) || to_char((date((pw.weekstart + '3 days'::interval)))::timestamp with time zone, 'DD.MM.YYYY'::text)) || ','::text) || to_char((date((pw.weekstart + '4 days'::interval)))::timestamp with time zone, 'DD.MM.YYYY'::text)) || ','::text) || to_char((date((pw.weekstart + '5 days'::interval)))::timestamp with time zone, 'DD.MM.YYYY'::text)) || ','::text) || to_char((date((pw.weekstart + '6 days'::interval)))::timestamp with time zone, 'DD.MM.YYYY'::text)) AS dspweekdates, + ((((((((((((pw.weekstart || ','::text) || date((pw.weekstart + '1 day'::interval))) || ','::text) || date((pw.weekstart + '2 days'::interval))) || ','::text) || date((pw.weekstart + '3 days'::interval))) || ','::text) || date((pw.weekstart + '4 days'::interval))) || ','::text) || date((pw.weekstart + '5 days'::interval))) || ','::text) || date((pw.weekstart + '6 days'::interval))) AS weekdates, to_char(pw.contracthours, 'HH24:MI'::text) AS week_contracthours, to_char(pw.workhours, 'HH24:MI'::text) AS week_workhours, to_char(pw.vacancyhours, 'HH24:MI'::text) AS week_vacancyhours, @@ -1507,7 +1204,8 @@ CREATE VIEW portanova.vw_staffreportperioddays AS CASE WHEN (pw.diffhours < '00:00:00'::interval) THEN ('-'::text || replace(to_char(pw.diffhours, 'HH24:MI'::text), '-'::text, ''::text)) ELSE to_char(pw.diffhours, 'HH24:MI'::text) - END AS week_diffhours + END AS week_diffhours, + ((pw.calyear || '-'::text) || lpad((pw.calweek)::text, 2, '0'::text)) AS weekident FROM (portanova.staffreportperiodweeks pw LEFT JOIN portanova.staffreportperioddays pd ON (((pw.weekstart = date_trunc('week'::text, (pd.daydate)::timestamp with time zone)) AND (pw.id_staff = pd.id_staff) AND (pw.id_reportperiod = pd.id_reportperiod)))) ORDER BY pd.id_reportperiod, pd.id_staff, pd.daydate; @@ -1525,8 +1223,8 @@ CREATE VIEW portanova.vw_staffreportperiodlist AS to_char(srp.vacancyhours, 'HH24:MI'::text) AS vacancyhours, to_char(srp.recuperationhours, 'HH24:MI'::text) AS recuperationhours, CASE - WHEN (srp.hoursdiff < '00:00:00'::interval) THEN ('-'::text || replace(to_char(srp.hoursdiff, 'HH24:MI'::text), '-'::text, ''::text)) - ELSE to_char(srp.hoursdiff, 'HH24:MI'::text) + WHEN (srp.hoursdiff < '00:00:00'::interval) THEN ('-'::text || replace(to_char((srp.hoursdiff - COALESCE(srp.payedhours, '00:00:00'::interval)), 'HH24:MI'::text), '-'::text, ''::text)) + ELSE to_char((srp.hoursdiff - COALESCE(srp.payedhours, '00:00:00'::interval)), 'HH24:MI'::text) END AS hoursdiff, to_char(srp.totalhours, 'HH24:MI'::text) AS totalhours, srp.id_reportperiod, @@ -1536,566 +1234,76 @@ CREATE VIEW portanova.vw_staffreportperiodlist AS rp.enddate, ((st.surname || ' '::text) || st.prename) AS staffname, st.id_staffgroup, - sgr.groupname + sgr.groupname, + to_char(srp.payedhours, 'HH24:MI'::text) AS payedhours FROM (((portanova.staffreportperiod srp LEFT JOIN portanova.staff st ON ((srp.id_staff = st.id))) LEFT JOIN portanova.reportperiod rp ON ((srp.id_reportperiod = rp.id))) LEFT JOIN portanova.staffgroups sgr ON ((st.id_staffgroup = sgr.id))) - ORDER BY sgr.groupname, st.surname, st.prename, srp.id_staff, rp.startdate, rp.enddate; + ORDER BY st.surname, st.prename, srp.id_staff, rp.startdate, rp.enddate; -- --- Name: vw_staffworkplan_dailylist; Type: VIEW; Schema: portanova; Owner: - +-- Name: vw_vacancylist; Type: VIEW; Schema: portanova; Owner: - -- -CREATE VIEW portanova.vw_staffworkplan_dailylist AS - SELECT staffreportperioddays.id, - staffreportperioddays.id_staff, - staffreportperioddays.daydate, - staffreportperioddays.timestart1, - staffreportperioddays.timeend1, - staffreportperioddays.timestart2, - staffreportperioddays.timeend2, - staffreportperioddays.timepause, - staffreportperioddays.interruptionhours, - staffreportperioddays.workhours, - staffreportperioddays.id_recuperationtype, - staffreportperioddays.recuperationhours, - staffreportperioddays.id_vacancytype, - staffreportperioddays.vacancyhours, - staffreportperioddays.trackedhours, - staffreportperioddays.daytype, - staffreportperioddays.contracthours, - staffreportperioddays.id_reportperiod - FROM portanova.staffreportperioddays - ORDER BY staffreportperioddays.id_staff, staffreportperioddays.daydate, staffreportperioddays.id_reportperiod; +CREATE VIEW portanova.vw_vacancylist AS + SELECT vacancytypes.id, + vacancytypes.vacancyname, + vacancytypes.isworktime + FROM portanova.vacancytypes; -- --- Name: vw_staffworkplan_weekly; Type: VIEW; Schema: portanova; Owner: - +-- Name: workplandays; Type: TABLE; Schema: portanova; Owner: - -- -CREATE VIEW portanova.vw_staffworkplan_weekly AS - SELECT stw2.calweek, - to_char((stw2.caldate)::timestamp with time zone, 'YYYY'::text) AS calyear, - stw2.caldate AS weekbegin, - public.getdateslist(stw2.caldate, 7) AS dates, - stw2.id_staff, - max( - CASE - WHEN (stw2.isodow = (1)::double precision) THEN stw2.id - ELSE NULL::bigint - END) AS mon_id, - max( - CASE - WHEN (stw2.isodow = (1)::double precision) THEN to_char((stw2.timestart1)::interval, 'HH24:MI'::text) - ELSE NULL::text - END) AS mon_timestart1, - max( - CASE - WHEN (stw2.isodow = (1)::double precision) THEN to_char((stw2.timeend1)::interval, 'HH24:MI'::text) - ELSE NULL::text - END) AS mon_timeend1, - max( - CASE - WHEN (stw2.isodow = (1)::double precision) THEN to_char((stw2.timestart2)::interval, 'HH24:MI'::text) - ELSE NULL::text - END) AS mon_timestart2, - max( - CASE - WHEN (stw2.isodow = (1)::double precision) THEN to_char((stw2.timeend2)::interval, 'HH24:MI'::text) - ELSE NULL::text - END) AS mon_timeend2, - max( - CASE - WHEN (stw2.isodow = (1)::double precision) THEN to_char((stw2.timepause)::interval, 'HH24:MI'::text) - ELSE NULL::text - END) AS mon_timepause, - max( - CASE - WHEN (stw2.isodow = (1)::double precision) THEN to_char((stw2.vacancyhours)::interval, 'HH24:MI'::text) - ELSE NULL::text - END) AS mon_vacancyhours, - max( - CASE - WHEN (stw2.isodow = (1)::double precision) THEN stw2.vacancyname - ELSE NULL::text - END) AS mon_vacancyname, - max( - CASE - WHEN (stw2.isodow = (1)::double precision) THEN stw2.color - ELSE NULL::text - END) AS mon_color, - max( - CASE - WHEN (stw2.isodow = (1)::double precision) THEN stw2.id_vacancytype - ELSE NULL::integer - END) AS mon_vacancytype, - max( - CASE - WHEN (stw2.isodow = (1)::double precision) THEN stw2.daytype - ELSE NULL::integer - END) AS mon_daytype, - to_char(max( - CASE - WHEN (stw2.isodow = (1)::double precision) THEN ((stw2.time1 + stw2.time2) - (stw2.timepause)::interval) - ELSE NULL::interval - END), 'HH24:MI'::text) AS mon_timetotal, - max( - CASE - WHEN (stw2.isodow = (2)::double precision) THEN stw2.id - ELSE NULL::bigint - END) AS tue_id, - max( - CASE - WHEN (stw2.isodow = (2)::double precision) THEN to_char((stw2.timestart1)::interval, 'HH24:MI'::text) - ELSE NULL::text - END) AS tue_timestart1, - max( - CASE - WHEN (stw2.isodow = (2)::double precision) THEN to_char((stw2.timeend1)::interval, 'HH24:MI'::text) - ELSE NULL::text - END) AS tue_timeend1, - max( - CASE - WHEN (stw2.isodow = (2)::double precision) THEN to_char((stw2.timestart2)::interval, 'HH24:MI'::text) - ELSE NULL::text - END) AS tue_timestart2, - max( - CASE - WHEN (stw2.isodow = (2)::double precision) THEN to_char((stw2.timeend2)::interval, 'HH24:MI'::text) - ELSE NULL::text - END) AS tue_timeend2, - max( - CASE - WHEN (stw2.isodow = (2)::double precision) THEN to_char((stw2.timepause)::interval, 'HH24:MI'::text) - ELSE NULL::text - END) AS tue_timepause, - max( - CASE - WHEN (stw2.isodow = (2)::double precision) THEN to_char((stw2.vacancyhours)::interval, 'HH24:MI'::text) - ELSE NULL::text - END) AS tue_vacancyhours, - max( - CASE - WHEN (stw2.isodow = (2)::double precision) THEN stw2.id_vacancytype - ELSE NULL::integer - END) AS tue_vacancytype, - max( - CASE - WHEN (stw2.isodow = (2)::double precision) THEN stw2.vacancyname - ELSE NULL::text - END) AS tue_vacancyname, - max( - CASE - WHEN (stw2.isodow = (2)::double precision) THEN stw2.color - ELSE NULL::text - END) AS tue_color, - max( - CASE - WHEN (stw2.isodow = (2)::double precision) THEN stw2.daytype - ELSE NULL::integer - END) AS tue_daytype, - to_char(max( - CASE - WHEN (stw2.isodow = (2)::double precision) THEN ((stw2.time1 + stw2.time2) - (stw2.timepause)::interval) - ELSE NULL::interval - END), 'HH24:MI'::text) AS tue_timetotal, - max( - CASE - WHEN (stw2.isodow = (3)::double precision) THEN stw2.id - ELSE NULL::bigint - END) AS wed_id, - max( - CASE - WHEN (stw2.isodow = (3)::double precision) THEN to_char((stw2.timestart1)::interval, 'HH24:MI'::text) - ELSE NULL::text - END) AS wed_timestart1, - max( - CASE - WHEN (stw2.isodow = (3)::double precision) THEN to_char((stw2.timeend1)::interval, 'HH24:MI'::text) - ELSE NULL::text - END) AS wed_timeend1, - max( - CASE - WHEN (stw2.isodow = (3)::double precision) THEN to_char((stw2.timestart2)::interval, 'HH24:MI'::text) - ELSE NULL::text - END) AS wed_timestart2, - max( - CASE - WHEN (stw2.isodow = (3)::double precision) THEN to_char((stw2.timeend2)::interval, 'HH24:MI'::text) - ELSE NULL::text - END) AS wed_timeend2, - max( - CASE - WHEN (stw2.isodow = (3)::double precision) THEN to_char((stw2.timepause)::interval, 'HH24:MI'::text) - ELSE NULL::text - END) AS wed_timepause, - max( - CASE - WHEN (stw2.isodow = (3)::double precision) THEN to_char((stw2.vacancyhours)::interval, 'HH24:MI'::text) - ELSE NULL::text - END) AS wed_vacancyhours, - max( - CASE - WHEN (stw2.isodow = (3)::double precision) THEN stw2.id_vacancytype - ELSE NULL::integer - END) AS wed_vacancytype, - max( - CASE - WHEN (stw2.isodow = (3)::double precision) THEN stw2.vacancyname - ELSE NULL::text - END) AS wed_vacancyname, - max( - CASE - WHEN (stw2.isodow = (3)::double precision) THEN stw2.color - ELSE NULL::text - END) AS wed_color, - max( - CASE - WHEN (stw2.isodow = (3)::double precision) THEN stw2.daytype - ELSE NULL::integer - END) AS wed_daytype, - to_char(max( - CASE - WHEN (stw2.isodow = (3)::double precision) THEN ((stw2.time1 + stw2.time2) - (stw2.timepause)::interval) - ELSE NULL::interval - END), 'HH24:MI'::text) AS wed_timetotal, - max( - CASE - WHEN (stw2.isodow = (4)::double precision) THEN stw2.id - ELSE NULL::bigint - END) AS thu_id, - max( - CASE - WHEN (stw2.isodow = (4)::double precision) THEN to_char((stw2.timestart1)::interval, 'HH24:MI'::text) - ELSE NULL::text - END) AS thu_timestart1, - max( - CASE - WHEN (stw2.isodow = (4)::double precision) THEN to_char((stw2.timeend1)::interval, 'HH24:MI'::text) - ELSE NULL::text - END) AS thu_timeend1, - max( - CASE - WHEN (stw2.isodow = (4)::double precision) THEN to_char((stw2.timestart2)::interval, 'HH24:MI'::text) - ELSE NULL::text - END) AS thu_timestart2, - max( - CASE - WHEN (stw2.isodow = (4)::double precision) THEN to_char((stw2.timeend2)::interval, 'HH24:MI'::text) - ELSE NULL::text - END) AS thu_timeend2, - max( - CASE - WHEN (stw2.isodow = (4)::double precision) THEN to_char((stw2.timepause)::interval, 'HH24:MI'::text) - ELSE NULL::text - END) AS thu_timepause, - max( - CASE - WHEN (stw2.isodow = (4)::double precision) THEN to_char((stw2.vacancyhours)::interval, 'HH24:MI'::text) - ELSE NULL::text - END) AS thu_vacancyhours, - max( - CASE - WHEN (stw2.isodow = (4)::double precision) THEN stw2.id_vacancytype - ELSE NULL::integer - END) AS thu_vacancytype, - max( - CASE - WHEN (stw2.isodow = (4)::double precision) THEN stw2.vacancyname - ELSE NULL::text - END) AS thu_vacancyname, - max( - CASE - WHEN (stw2.isodow = (4)::double precision) THEN stw2.color - ELSE NULL::text - END) AS thu_color, - max( - CASE - WHEN (stw2.isodow = (4)::double precision) THEN stw2.daytype - ELSE NULL::integer - END) AS thu_daytype, - to_char(max( - CASE - WHEN (stw2.isodow = (4)::double precision) THEN ((stw2.time1 + stw2.time2) - (stw2.timepause)::interval) - ELSE NULL::interval - END), 'HH24:MI'::text) AS thu_timetotal, - max( - CASE - WHEN (stw2.isodow = (5)::double precision) THEN stw2.id - ELSE NULL::bigint - END) AS fri_id, - max( - CASE - WHEN (stw2.isodow = (5)::double precision) THEN to_char((stw2.timestart1)::interval, 'HH24:MI'::text) - ELSE NULL::text - END) AS fri_timestart1, - max( - CASE - WHEN (stw2.isodow = (5)::double precision) THEN to_char((stw2.timeend1)::interval, 'HH24:MI'::text) - ELSE NULL::text - END) AS fri_timeend1, - max( - CASE - WHEN (stw2.isodow = (5)::double precision) THEN to_char((stw2.timestart2)::interval, 'HH24:MI'::text) - ELSE NULL::text - END) AS fri_timestart2, - max( - CASE - WHEN (stw2.isodow = (5)::double precision) THEN to_char((stw2.timeend2)::interval, 'HH24:MI'::text) - ELSE NULL::text - END) AS fri_timeend2, - max( - CASE - WHEN (stw2.isodow = (5)::double precision) THEN to_char((stw2.timepause)::interval, 'HH24:MI'::text) - ELSE NULL::text - END) AS fri_timepause, - max( - CASE - WHEN (stw2.isodow = (5)::double precision) THEN to_char((stw2.vacancyhours)::interval, 'HH24:MI'::text) - ELSE NULL::text - END) AS fri_vacancyhours, - max( - CASE - WHEN (stw2.isodow = (5)::double precision) THEN stw2.id_vacancytype - ELSE NULL::integer - END) AS fri_vacancytype, - max( - CASE - WHEN (stw2.isodow = (5)::double precision) THEN stw2.vacancyname - ELSE NULL::text - END) AS fri_vacancyname, - max( - CASE - WHEN (stw2.isodow = (5)::double precision) THEN stw2.color - ELSE NULL::text - END) AS fri_color, - max( - CASE - WHEN (stw2.isodow = (5)::double precision) THEN stw2.daytype - ELSE NULL::integer - END) AS fri_daytype, - to_char(max( - CASE - WHEN (stw2.isodow = (5)::double precision) THEN ((stw2.time1 + stw2.time2) - (stw2.timepause)::interval) - ELSE NULL::interval - END), 'HH24:MI'::text) AS fri_timetotal, - max( - CASE - WHEN (stw2.isodow = (6)::double precision) THEN stw2.id - ELSE NULL::bigint - END) AS sat_id, - max( - CASE - WHEN (stw2.isodow = (6)::double precision) THEN to_char((stw2.timestart1)::interval, 'HH24:MI'::text) - ELSE NULL::text - END) AS sat_timestart1, - max( - CASE - WHEN (stw2.isodow = (6)::double precision) THEN to_char((stw2.timeend1)::interval, 'HH24:MI'::text) - ELSE NULL::text - END) AS sat_timeend1, - max( - CASE - WHEN (stw2.isodow = (6)::double precision) THEN to_char((stw2.timestart2)::interval, 'HH24:MI'::text) - ELSE NULL::text - END) AS sat_timestart2, - max( - CASE - WHEN (stw2.isodow = (6)::double precision) THEN to_char((stw2.timeend2)::interval, 'HH24:MI'::text) - ELSE NULL::text - END) AS sat_timeend2, - max( - CASE - WHEN (stw2.isodow = (6)::double precision) THEN to_char((stw2.timepause)::interval, 'HH24:MI'::text) - ELSE NULL::text - END) AS sat_timepause, - max( - CASE - WHEN (stw2.isodow = (6)::double precision) THEN to_char((stw2.vacancyhours)::interval, 'HH24:MI'::text) - ELSE NULL::text - END) AS sat_vacancyhours, - max( - CASE - WHEN (stw2.isodow = (6)::double precision) THEN stw2.id_vacancytype - ELSE NULL::integer - END) AS sat_vacancytype, - max( - CASE - WHEN (stw2.isodow = (6)::double precision) THEN stw2.vacancyname - ELSE NULL::text - END) AS sat_vacancyname, - max( - CASE - WHEN (stw2.isodow = (6)::double precision) THEN stw2.color - ELSE NULL::text - END) AS sat_color, - max( - CASE - WHEN (stw2.isodow = (6)::double precision) THEN stw2.daytype - ELSE NULL::integer - END) AS sat_daytype, - to_char(max( - CASE - WHEN (stw2.isodow = (6)::double precision) THEN ((stw2.time1 + stw2.time2) - (stw2.timepause)::interval) - ELSE NULL::interval - END), 'HH24:MI'::text) AS sat_timetotal, - max( - CASE - WHEN (stw2.isodow = (7)::double precision) THEN stw2.id - ELSE NULL::bigint - END) AS sun_id, - max( - CASE - WHEN (stw2.isodow = (7)::double precision) THEN to_char((stw2.timestart1)::interval, 'HH24:MI'::text) - ELSE NULL::text - END) AS sun_timestart1, - max( - CASE - WHEN (stw2.isodow = (7)::double precision) THEN to_char((stw2.timeend1)::interval, 'HH24:MI'::text) - ELSE NULL::text - END) AS sun_timeend1, - max( - CASE - WHEN (stw2.isodow = (7)::double precision) THEN to_char((stw2.timestart2)::interval, 'HH24:MI'::text) - ELSE NULL::text - END) AS sun_timestart2, - max( - CASE - WHEN (stw2.isodow = (7)::double precision) THEN to_char((stw2.timeend2)::interval, 'HH24:MI'::text) - ELSE NULL::text - END) AS sun_timeend2, - max( - CASE - WHEN (stw2.isodow = (7)::double precision) THEN to_char((stw2.timepause)::interval, 'HH24:MI'::text) - ELSE NULL::text - END) AS sun_timepause, - max( - CASE - WHEN (stw2.isodow = (7)::double precision) THEN to_char((stw2.vacancyhours)::interval, 'HH24:MI'::text) - ELSE NULL::text - END) AS sun_vacancyhours, - max( - CASE - WHEN (stw2.isodow = (7)::double precision) THEN stw2.id_vacancytype - ELSE NULL::integer - END) AS sun_vacancytype, - max( - CASE - WHEN (stw2.isodow = (7)::double precision) THEN stw2.vacancyname - ELSE NULL::text - END) AS sun_vacancyname, - max( - CASE - WHEN (stw2.isodow = (7)::double precision) THEN stw2.color - ELSE NULL::text - END) AS sun_color, - max( - CASE - WHEN (stw2.isodow = (7)::double precision) THEN stw2.daytype - ELSE NULL::integer - END) AS sun_daytype, - to_char(max( - CASE - WHEN (stw2.isodow = (7)::double precision) THEN ((stw2.time1 + stw2.time2) - (stw2.timepause)::interval) - ELSE NULL::interval - END), 'HH24:MI'::text) AS sun_timetotal, - to_char(sum(((stw2.time1 + stw2.time2) - (stw2.timepause)::interval)), 'HH24:MI'::text) AS week_timetotal, - CASE - WHEN ((stw2.calweek IS NOT NULL) AND (stw2.id_staff IS NOT NULL)) THEN public.weekvacancy('portanova'::text, stw2.calweek, stw2.id_staff) - ELSE NULL::text - END AS week_vacancy, - stw2.staffname AS dspstaffname - FROM ( SELECT stw.daydate, - date_part('week'::text, stw.daydate) AS calweek, - (date_trunc('week'::text, (stw.daydate)::timestamp with time zone))::date AS caldate, - date_part('isodow'::text, stw.daydate) AS isodow, - stw.id, - stw.id_staff, - ((st.surname || ' '::text) || st.prename) AS staffname, - stw.timestart1, - stw.timeend1, - stw.vacancyhours, - stw.id_vacancytype, - vt.color, - vt.vacancyname, - stw.daytype, - CASE - WHEN (stw.timestart1 > stw.timeend1) THEN ('24:00:00'::time without time zone - ((stw.timestart1 - stw.timeend1))::time without time zone) - ELSE (stw.timeend1 - stw.timestart1) - END AS time1, - stw.timestart2, - stw.timeend2, - CASE - WHEN (stw.timestart2 > stw.timeend2) THEN ('24:00:00'::time without time zone - ((stw.timestart2 - stw.timeend2))::time without time zone) - ELSE (stw.timeend2 - stw.timestart2) - END AS time2, - stw.timepause - FROM ((portanova.staffreportperioddays stw - LEFT JOIN portanova.staff st ON ((stw.id_staff = st.id))) - LEFT JOIN portanova.vacancytypes vt ON ((stw.id_vacancytype = vt.id)))) stw2 - GROUP BY stw2.calweek, stw2.caldate, stw2.id_staff, stw2.staffname; - - --- --- Name: vw_staffworkplandata; Type: VIEW; Schema: portanova; Owner: - --- - -CREATE VIEW portanova.vw_staffworkplandata AS - SELECT date_part('isoyear'::text, swp.daydate) AS calyear, - date_part('week'::text, swp.daydate) AS calweek, - to_char((swp.daydate)::timestamp with time zone, 'dy'::text) AS weekday, - swp.id, - swp.id_staff, - swp.daydate, - ((st.surname || ' '::text) || st.prename) AS staffname, - to_char((swp.timestart1)::interval, 'HH24:MI'::text) AS timestart1, - to_char((swp.timeend1)::interval, 'HH24:MI'::text) AS timeend1, - to_char((swp.timestart2)::interval, 'HH24:MI'::text) AS timestart2, - to_char((swp.timeend2)::interval, 'HH24:MI'::text) AS timeend2, - to_char((swp.timepause)::interval, 'HH24:MI'::text) AS timepause, - to_char((swp.vacancyhours)::interval, 'HH24:MI'::text) AS vacancyhours, - to_char((swp.contracthours)::interval, 'HH24:MI'::text) AS contracthours, - to_char((swp.interruptionhours)::interval, 'HH24:MI'::text) AS interruptionhours, - swp.id_staffgroup, - swp.id_vacancytype, - swp.id_recuperationtype, - swp.daytype, - to_char((swp.workhours)::interval, 'HH24:MI'::text) AS totalhours, - to_char((swp.recuperationhours)::interval, 'HH24:MI'::text) AS recuperationhours, - to_char((swp.trackedhours)::interval, 'HH24:MI'::text) AS trackedhours, - swp.id_reportperiod - FROM (portanova.staffreportperioddays swp - JOIN portanova.staff st ON ((swp.id_staff = st.id))); - - --- --- Name: vw_staffworkplanstafflist; Type: VIEW; Schema: portanova; Owner: - --- - -CREATE VIEW portanova.vw_staffworkplanstafflist AS - SELECT sc.id AS id_staffcontract, - st.id AS id_staff, - ((st.surname || ' '::text) || st.prename) AS staffname, - sc.startdate, - sc.enddate, - sc.id_staffgroup, - sc.weekhours, - sc.weekdays - FROM (portanova.staff st - LEFT JOIN portanova.staffcontract sc ON ((st.id = sc.id_staff))); +CREATE TABLE portanova.workplandays ( + id integer NOT NULL, + id_workplan integer, + weekday integer, + start1 time without time zone, + end1 time without time zone, + start2 time without time zone, + end2 time without time zone, + pause time without time zone +); -- --- Name: vw_vacancylist; Type: VIEW; Schema: portanova; Owner: - +-- Name: vw_workplandaysdata; Type: VIEW; Schema: portanova; Owner: - -- -CREATE VIEW portanova.vw_vacancylist AS - SELECT vacancytypes.id, - vacancytypes.vacancyname, - vacancytypes.isworktime - FROM portanova.vacancytypes; +CREATE VIEW portanova.vw_workplandaysdata AS + SELECT workplandays.id, + workplandays.id_workplan, + workplandays.weekday, + workplandays.start1, + workplandays.end1, + workplandays.start2, + workplandays.end2, + workplandays.pause + FROM portanova.workplandays; + + +-- +-- Name: vw_workplandayslist; Type: VIEW; Schema: portanova; Owner: - +-- + +CREATE VIEW portanova.vw_workplandayslist AS +SELECT + NULL::text AS workplan, + NULL::text AS weekhours, + NULL::integer AS id, + NULL::integer AS id_workplan, + NULL::integer AS weekday, + NULL::text AS start1, + NULL::text AS end1, + NULL::text AS start2, + NULL::text AS end2, + NULL::text AS pause, + NULL::text AS dayhours, + NULL::bigint AS staffcount; -- @@ -2109,138 +1317,58 @@ CREATE VIEW portanova.vw_workplanlist AS -- --- Name: vw_workplansdata; Type: VIEW; Schema: portanova; Owner: - +-- Name: worktimes; Type: TABLE; Schema: portanova; Owner: - -- -CREATE VIEW portanova.vw_workplansdata AS - SELECT workplans.id, - workplans.workplan, - to_char(((((((COALESCE(( - CASE - WHEN (workplans.mon_timeend2 IS NOT NULL) THEN ((workplans.mon_timeend2 - workplans.mon_timestart1) - (workplans.mon_timestart2 - workplans.mon_timeend1)) - ELSE (workplans.mon_timeend1 - workplans.mon_timestart1) - END - COALESCE((workplans.mon_timepause)::interval, '00:00:00'::interval)), '00:00:00'::interval) + COALESCE(( - CASE - WHEN (workplans.tue_timeend2 IS NOT NULL) THEN ((workplans.tue_timeend2 - workplans.tue_timestart1) - (workplans.tue_timestart2 - workplans.tue_timeend1)) - ELSE (workplans.tue_timeend1 - workplans.tue_timestart1) - END - COALESCE((workplans.tue_timepause)::interval, '00:00:00'::interval)), '00:00:00'::interval)) + COALESCE(( - CASE - WHEN (workplans.wed_timeend2 IS NOT NULL) THEN ((workplans.wed_timeend2 - workplans.wed_timestart1) - (workplans.wed_timestart2 - workplans.wed_timeend1)) - ELSE (workplans.wed_timeend1 - workplans.wed_timestart1) - END - COALESCE((workplans.wed_timepause)::interval, '00:00:00'::interval)), '00:00:00'::interval)) + COALESCE(( - CASE - WHEN (workplans.thu_timeend2 IS NOT NULL) THEN ((workplans.thu_timeend2 - workplans.thu_timestart1) - (workplans.thu_timestart2 - workplans.thu_timeend1)) - ELSE (workplans.thu_timeend1 - workplans.thu_timestart1) - END - COALESCE((workplans.thu_timepause)::interval, '00:00:00'::interval)), '00:00:00'::interval)) + COALESCE(( - CASE - WHEN (workplans.fri_timeend2 IS NOT NULL) THEN ((workplans.fri_timeend2 - workplans.fri_timestart1) - (workplans.fri_timestart2 - workplans.fri_timeend1)) - ELSE (workplans.fri_timeend1 - workplans.fri_timestart1) - END - COALESCE((workplans.fri_timepause)::interval, '00:00:00'::interval)), '00:00:00'::interval)) + COALESCE(( - CASE - WHEN (workplans.sat_timeend2 IS NOT NULL) THEN ((workplans.sat_timeend2 - workplans.sat_timestart1) - (workplans.sat_timestart2 - workplans.sat_timeend1)) - ELSE (workplans.sat_timeend1 - workplans.sat_timestart1) - END - COALESCE((workplans.sat_timepause)::interval, '00:00:00'::interval)), '00:00:00'::interval)) + COALESCE(( - CASE - WHEN (workplans.sun_timeend2 IS NOT NULL) THEN ((workplans.sun_timeend2 - workplans.sun_timestart1) - (workplans.sun_timestart2 - workplans.sun_timeend1)) - ELSE (workplans.sun_timeend1 - workplans.sun_timestart1) - END - COALESCE((workplans.sun_timepause)::interval, '00:00:00'::interval)), '00:00:00'::interval)), 'HH24:MI'::text) AS weektotal, - to_char((workplans.mon_timestart1)::interval, 'HH24:MI'::text) AS mon_timestart1, - to_char((workplans.mon_timeend1)::interval, 'HH24:MI'::text) AS mon_timeend1, - to_char((workplans.mon_timestart2)::interval, 'HH24:MI'::text) AS mon_timestart2, - to_char((workplans.mon_timeend2)::interval, 'HH24:MI'::text) AS mon_timeend2, - to_char((workplans.mon_timepause)::interval, 'HH24:MI'::text) AS mon_timepause, - to_char((workplans.mon_timestart2 - workplans.mon_timeend1), 'HH24:MI'::text) AS mon_interruption, - to_char(( - CASE - WHEN (workplans.mon_timeend2 IS NOT NULL) THEN ((workplans.mon_timeend2 - workplans.mon_timestart1) - (workplans.mon_timestart2 - workplans.mon_timeend1)) - ELSE (workplans.mon_timeend1 - workplans.mon_timestart1) - END - COALESCE((workplans.mon_timepause)::interval, '00:00:00'::interval)), 'HH24:MI'::text) AS mon_total, - to_char((workplans.tue_timestart1)::interval, 'HH24:MI'::text) AS tue_timestart1, - to_char((workplans.tue_timeend1)::interval, 'HH24:MI'::text) AS tue_timeend1, - to_char((workplans.tue_timestart2)::interval, 'HH24:MI'::text) AS tue_timestart2, - to_char((workplans.tue_timeend2)::interval, 'HH24:MI'::text) AS tue_timeend2, - to_char((workplans.tue_timepause)::interval, 'HH24:MI'::text) AS tue_timepause, - to_char((workplans.tue_timestart2 - workplans.tue_timeend1), 'HH24:MI'::text) AS tue_interruption, - to_char(( - CASE - WHEN (workplans.tue_timeend2 IS NOT NULL) THEN ((workplans.tue_timeend2 - workplans.tue_timestart1) - (workplans.tue_timestart2 - workplans.tue_timeend1)) - ELSE (workplans.tue_timeend1 - workplans.tue_timestart1) - END - COALESCE((workplans.tue_timepause)::interval, '00:00:00'::interval)), 'HH24:MI'::text) AS tue_total, - to_char((workplans.wed_timestart1)::interval, 'HH24:MI'::text) AS wed_timestart1, - to_char((workplans.wed_timeend1)::interval, 'HH24:MI'::text) AS wed_timeend1, - to_char((workplans.wed_timestart2)::interval, 'HH24:MI'::text) AS wed_timestart2, - to_char((workplans.wed_timeend2)::interval, 'HH24:MI'::text) AS wed_timeend2, - to_char((workplans.wed_timepause)::interval, 'HH24:MI'::text) AS wed_timepause, - to_char((workplans.wed_timestart2 - workplans.wed_timeend1), 'HH24:MI'::text) AS wed_interruption, - to_char(( - CASE - WHEN (workplans.wed_timeend2 IS NOT NULL) THEN ((workplans.wed_timeend2 - workplans.wed_timestart1) - (workplans.wed_timestart2 - workplans.wed_timeend1)) - ELSE (workplans.wed_timeend1 - workplans.wed_timestart1) - END - COALESCE((workplans.wed_timepause)::interval, '00:00:00'::interval)), 'HH24:MI'::text) AS wed_total, - to_char((workplans.thu_timestart1)::interval, 'HH24:MI'::text) AS thu_timestart1, - to_char((workplans.thu_timeend1)::interval, 'HH24:MI'::text) AS thu_timeend1, - to_char((workplans.thu_timestart2)::interval, 'HH24:MI'::text) AS thu_timestart2, - to_char((workplans.thu_timeend2)::interval, 'HH24:MI'::text) AS thu_timeend2, - to_char((workplans.thu_timepause)::interval, 'HH24:MI'::text) AS thu_timepause, - to_char((workplans.thu_timestart2 - workplans.thu_timeend1), 'HH24:MI'::text) AS thu_interruption, - to_char(( - CASE - WHEN (workplans.thu_timeend2 IS NOT NULL) THEN ((workplans.thu_timeend2 - workplans.thu_timestart1) - (workplans.thu_timestart2 - workplans.thu_timeend1)) - ELSE (workplans.thu_timeend1 - workplans.thu_timestart1) - END - COALESCE((workplans.thu_timepause)::interval, '00:00:00'::interval)), 'HH24:MI'::text) AS thu_total, - to_char((workplans.fri_timestart1)::interval, 'HH24:MI'::text) AS fri_timestart1, - to_char((workplans.fri_timeend1)::interval, 'HH24:MI'::text) AS fri_timeend1, - to_char((workplans.fri_timestart2)::interval, 'HH24:MI'::text) AS fri_timestart2, - to_char((workplans.fri_timeend2)::interval, 'HH24:MI'::text) AS fri_timeend2, - to_char((workplans.fri_timepause)::interval, 'HH24:MI'::text) AS fri_timepause, - to_char((workplans.fri_timestart2 - workplans.fri_timeend1), 'HH24:MI'::text) AS fri_interruption, - to_char(( - CASE - WHEN (workplans.fri_timeend2 IS NOT NULL) THEN ((workplans.fri_timeend2 - workplans.fri_timestart1) - (workplans.fri_timestart2 - workplans.fri_timeend1)) - ELSE (workplans.fri_timeend1 - workplans.fri_timestart1) - END - COALESCE((workplans.fri_timepause)::interval, '00:00:00'::interval)), 'HH24:MI'::text) AS fri_total, - to_char((workplans.sat_timestart1)::interval, 'HH24:MI'::text) AS sat_timestart1, - to_char((workplans.sat_timeend1)::interval, 'HH24:MI'::text) AS sat_timeend1, - to_char((workplans.sat_timestart2)::interval, 'HH24:MI'::text) AS sat_timestart2, - to_char((workplans.sat_timeend2)::interval, 'HH24:MI'::text) AS sat_timeend2, - to_char((workplans.sat_timepause)::interval, 'HH24:MI'::text) AS sat_timepause, - to_char((workplans.sat_timestart2 - workplans.sat_timeend1), 'HH24:MI'::text) AS sat_interruption, - to_char(( - CASE - WHEN (workplans.sat_timeend2 IS NOT NULL) THEN ((workplans.sat_timeend2 - workplans.sat_timestart1) - (workplans.sat_timestart2 - workplans.sat_timeend1)) - ELSE (workplans.sat_timeend1 - workplans.sat_timestart1) - END - COALESCE((workplans.sat_timepause)::interval, '00:00:00'::interval)), 'HH24:MI'::text) AS sat_total, - to_char((workplans.sun_timestart1)::interval, 'HH24:MI'::text) AS sun_timestart1, - to_char((workplans.sun_timeend1)::interval, 'HH24:MI'::text) AS sun_timeend1, - to_char((workplans.sun_timestart2)::interval, 'HH24:MI'::text) AS sun_timestart2, - to_char((workplans.sun_timeend2)::interval, 'HH24:MI'::text) AS sun_timeend2, - to_char((workplans.sun_timepause)::interval, 'HH24:MI'::text) AS sun_timepause, - to_char((workplans.sun_timestart2 - workplans.sat_timeend1), 'HH24:MI'::text) AS sun_interruption, - to_char(( - CASE - WHEN (workplans.sun_timeend2 IS NOT NULL) THEN ((workplans.sun_timeend2 - workplans.sun_timestart1) - (workplans.sun_timestart2 - workplans.sun_timeend1)) - ELSE (workplans.sun_timeend1 - workplans.sun_timestart1) - END - COALESCE((workplans.sun_timepause)::interval, '00:00:00'::interval)), 'HH24:MI'::text) AS sun_total - FROM portanova.workplans; +CREATE TABLE portanova.worktimes ( + id integer NOT NULL, + startdate date, + enddate date, + defaultdayhours interval, + maxdayhours interval, + defaultweekhours interval, + maxweekhours interval, + maxinterruptionhours interval, + isdefault boolean +); -- --- Name: vw_workplans; Type: VIEW; Schema: portanova; Owner: - +-- Name: vw_worktimeslist; Type: VIEW; Schema: portanova; Owner: - -- -CREATE VIEW portanova.vw_workplans AS - SELECT workplans.id, - workplans.workplan, - vw_workplansdata.weektotal, - ((((COALESCE(((to_char((workplans.mon_timestart1)::interval, 'HH24:MI'::text) || ' - '::text) || to_char((workplans.mon_timeend1)::interval, 'HH24:MI'::text)), ''::text) || COALESCE(((('
'::text || to_char((workplans.mon_timestart2)::interval, 'HH24:MI'::text)) || ' - '::text) || to_char((workplans.mon_timeend2)::interval, 'HH24:MI'::text)), ''::text)) || COALESCE((('
'::text || 'Pause: '::text) || to_char((workplans.mon_timepause)::interval, 'HH24:MI'::text)), ''::text)) || COALESCE((('
'::text || 'Coupure: '::text) || vw_workplansdata.mon_interruption), ''::text)) || COALESCE((('
'::text || 'Total: '::text) || vw_workplansdata.mon_total), ''::text)) AS dspmontimes, - ((((COALESCE(((to_char((workplans.tue_timestart1)::interval, 'HH24:MI'::text) || ' - '::text) || to_char((workplans.tue_timeend1)::interval, 'HH24:MI'::text)), ''::text) || COALESCE(((('
'::text || to_char((workplans.tue_timestart2)::interval, 'HH24:MI'::text)) || ' - '::text) || to_char((workplans.tue_timeend2)::interval, 'HH24:MI'::text)), ''::text)) || COALESCE((('
'::text || 'Pause: '::text) || to_char((workplans.tue_timepause)::interval, 'HH24:MI'::text)), ''::text)) || COALESCE((('
'::text || 'Coupure: '::text) || vw_workplansdata.tue_interruption), ''::text)) || COALESCE((('
'::text || 'Total: '::text) || vw_workplansdata.tue_total), ''::text)) AS dsptuetimes, - ((((COALESCE(((to_char((workplans.wed_timestart1)::interval, 'HH24:MI'::text) || ' - '::text) || to_char((workplans.wed_timeend1)::interval, 'HH24:MI'::text)), ''::text) || COALESCE(((('
'::text || to_char((workplans.wed_timestart2)::interval, 'HH24:MI'::text)) || ' - '::text) || to_char((workplans.wed_timeend2)::interval, 'HH24:MI'::text)), ''::text)) || COALESCE((('
'::text || 'Pause: '::text) || to_char((workplans.wed_timepause)::interval, 'HH24:MI'::text)), ''::text)) || COALESCE((('
'::text || 'Coupure: '::text) || vw_workplansdata.wed_interruption), ''::text)) || COALESCE((('
'::text || 'Total: '::text) || vw_workplansdata.wed_total), ''::text)) AS dspwedtimes, - ((((COALESCE(((to_char((workplans.thu_timestart1)::interval, 'HH24:MI'::text) || ' - '::text) || to_char((workplans.thu_timeend1)::interval, 'HH24:MI'::text)), ''::text) || COALESCE(((('
'::text || to_char((workplans.thu_timestart2)::interval, 'HH24:MI'::text)) || ' - '::text) || to_char((workplans.thu_timeend2)::interval, 'HH24:MI'::text)), ''::text)) || COALESCE((('
'::text || 'Pause: '::text) || to_char((workplans.thu_timepause)::interval, 'HH24:MI'::text)), ''::text)) || COALESCE((('
'::text || 'Coupure: '::text) || vw_workplansdata.thu_interruption), ''::text)) || COALESCE((('
'::text || 'Total: '::text) || vw_workplansdata.thu_total), ''::text)) AS dspthutimes, - ((((COALESCE(((to_char((workplans.fri_timestart1)::interval, 'HH24:MI'::text) || ' -'::text) || to_char((workplans.fri_timeend1)::interval, 'HH24:MI'::text)), ''::text) || COALESCE(((('
'::text || to_char((workplans.fri_timestart2)::interval, 'HH24:MI'::text)) || ' - '::text) || to_char((workplans.fri_timeend2)::interval, 'HH24:MI'::text)), ''::text)) || COALESCE((('
'::text || 'Pause: '::text) || to_char((workplans.fri_timepause)::interval, 'HH24:MI'::text)), ''::text)) || COALESCE((('
'::text || 'Coupure: '::text) || vw_workplansdata.fri_interruption), ''::text)) || COALESCE((('
'::text || 'Total: '::text) || vw_workplansdata.fri_total), ''::text)) AS dspfritimes, - ((((COALESCE(((to_char((workplans.sat_timestart1)::interval, 'HH24:MI'::text) || ' - '::text) || to_char((workplans.sat_timeend1)::interval, 'HH24:MI'::text)), ''::text) || COALESCE(((('
'::text || to_char((workplans.sat_timestart2)::interval, 'HH24:MI'::text)) || ' - '::text) || to_char((workplans.sat_timeend2)::interval, 'HH24:MI'::text)), ''::text)) || COALESCE((('
'::text || 'Pause: '::text) || to_char((workplans.sat_timepause)::interval, 'HH24:MI'::text)), ''::text)) || COALESCE((('
'::text || 'Coupure: '::text) || vw_workplansdata.sat_interruption), ''::text)) || COALESCE((('
'::text || 'Total: '::text) || vw_workplansdata.sat_total), ''::text)) AS dspsattimes, - ((((COALESCE(((to_char((workplans.sun_timestart1)::interval, 'HH24:MI'::text) || ' - '::text) || to_char((workplans.sun_timeend1)::interval, 'HH24:MI'::text)), ''::text) || COALESCE(((('
'::text || to_char((workplans.sun_timestart2)::interval, 'HH24:MI'::text)) || ' - '::text) || to_char((workplans.sun_timeend2)::interval, 'HH24:MI'::text)), ''::text)) || COALESCE((('
'::text || 'Pause: '::text) || to_char((workplans.sun_timepause)::interval, 'HH24:MI'::text)), ''::text)) || COALESCE((('
'::text || 'Coupure: '::text) || vw_workplansdata.sun_interruption), ''::text)) || COALESCE((('
'::text || 'Total: '::text) || vw_workplansdata.sun_total), ''::text)) AS dspsuntimes - FROM (portanova.workplans - JOIN portanova.vw_workplansdata ON ((workplans.id = vw_workplansdata.id))); +CREATE VIEW portanova.vw_worktimeslist AS + SELECT worktimes.id, + worktimes.startdate, + worktimes.enddate, + worktimes.isdefault, + to_char(worktimes.defaultdayhours, 'HH24:MI'::text) AS defaultdayhours, + to_char(worktimes.maxdayhours, 'HH24:MI'::text) AS maxdayhours, + to_char(worktimes.defaultweekhours, 'HH24:MI'::text) AS defaultweekhours, + to_char(worktimes.maxweekhours, 'HH24:MI'::text) AS maxweekhours, + to_char(worktimes.maxinterruptionhours, 'HH24:MI'::text) AS maxinterruptionhours + FROM portanova.worktimes + ORDER BY worktimes.startdate NULLS FIRST, worktimes.enddate NULLS FIRST; + + +-- +-- Name: workplandays_id_seq; Type: SEQUENCE; Schema: portanova; Owner: - +-- + +CREATE SEQUENCE portanova.workplandays_id_seq + AS integer + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: workplandays_id_seq; Type: SEQUENCE OWNED BY; Schema: portanova; Owner: - +-- + +ALTER SEQUENCE portanova.workplandays_id_seq OWNED BY portanova.workplandays.id; -- @@ -2264,10 +1392,10 @@ ALTER SEQUENCE portanova.workplans_id_seq OWNED BY portanova.workplans.id; -- --- Name: worktypes_id_seq; Type: SEQUENCE; Schema: portanova; Owner: - +-- Name: worktimes_id_seq; Type: SEQUENCE; Schema: portanova; Owner: - -- -CREATE SEQUENCE portanova.worktypes_id_seq +CREATE SEQUENCE portanova.worktimes_id_seq AS integer START WITH 1 INCREMENT BY 1 @@ -2277,53 +1405,30 @@ CREATE SEQUENCE portanova.worktypes_id_seq -- --- Name: worktypes_id_seq; Type: SEQUENCE OWNED BY; Schema: portanova; Owner: - +-- Name: worktimes_id_seq; Type: SEQUENCE OWNED BY; Schema: portanova; Owner: - -- -ALTER SEQUENCE portanova.worktypes_id_seq OWNED BY portanova.vacancytypes.id; +ALTER SEQUENCE portanova.worktimes_id_seq OWNED BY portanova.worktimes.id; -- --- Name: zzold_vw_staffworkplanlist; Type: VIEW; Schema: portanova; Owner: - +-- Name: worktypes_id_seq; Type: SEQUENCE; Schema: portanova; Owner: - -- -CREATE VIEW portanova.zzold_vw_staffworkplanlist AS -SELECT - NULL::double precision AS calweek, - NULL::double precision AS calyear, - NULL::date AS weekstart, - NULL::date AS weekend, - NULL::text AS dates, - NULL::integer AS id_staff, - NULL::text AS dspstaffname, - NULL::integer AS id_staffgroup, - NULL::text AS dspweektotals, - NULL::interval AS contracthours, - NULL::interval AS plannedhours, - NULL::interval AS vacancyhours, - NULL::interval AS recuperationhours, - NULL::interval AS hoursdiff, - NULL::bigint AS mon_id, - NULL::text AS dspmontimes, - NULL::bigint AS tue_id, - NULL::text AS dsptuetimes, - NULL::bigint AS wed_id, - NULL::text AS dspwedtimes, - NULL::bigint AS thu_id, - NULL::text AS dspthutimes, - NULL::bigint AS fri_id, - NULL::text AS dspfritimes, - NULL::bigint AS sat_id, - NULL::text AS dspsattimes, - NULL::bigint AS sun_id, - NULL::text AS dspsuntimes; - - --- --- Name: editlog id; Type: DEFAULT; Schema: portanova; Owner: - --- - -ALTER TABLE ONLY portanova.editlog ALTER COLUMN id SET DEFAULT nextval('portanova.editlog_id_seq'::regclass); +CREATE SEQUENCE portanova.worktypes_id_seq + AS integer + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: worktypes_id_seq; Type: SEQUENCE OWNED BY; Schema: portanova; Owner: - +-- + +ALTER SEQUENCE portanova.worktypes_id_seq OWNED BY portanova.vacancytypes.id; -- @@ -2397,25 +1502,24 @@ ALTER TABLE ONLY portanova.vacancytypes ALTER COLUMN id SET DEFAULT nextval('por -- --- Name: workplans id; Type: DEFAULT; Schema: portanova; Owner: - +-- Name: workplandays id; Type: DEFAULT; Schema: portanova; Owner: - -- -ALTER TABLE ONLY portanova.workplans ALTER COLUMN id SET DEFAULT nextval('portanova.workplans_id_seq'::regclass); +ALTER TABLE ONLY portanova.workplandays ALTER COLUMN id SET DEFAULT nextval('portanova.workplandays_id_seq'::regclass); -- --- Name: zzold_staffreportperiodsums id; Type: DEFAULT; Schema: portanova; Owner: - +-- Name: workplans id; Type: DEFAULT; Schema: portanova; Owner: - -- -ALTER TABLE ONLY portanova.zzold_staffreportperiodsums ALTER COLUMN id SET DEFAULT nextval('portanova.staffreportperiodsums_id_seq'::regclass); +ALTER TABLE ONLY portanova.workplans ALTER COLUMN id SET DEFAULT nextval('portanova.workplans_id_seq'::regclass); -- --- Name: editlog editlog_pkey; Type: CONSTRAINT; Schema: portanova; Owner: - +-- Name: worktimes id; Type: DEFAULT; Schema: portanova; Owner: - -- -ALTER TABLE ONLY portanova.editlog - ADD CONSTRAINT editlog_pkey PRIMARY KEY (id); +ALTER TABLE ONLY portanova.worktimes ALTER COLUMN id SET DEFAULT nextval('portanova.worktimes_id_seq'::regclass); -- @@ -2458,14 +1562,6 @@ ALTER TABLE ONLY portanova.staffreportperiod ADD CONSTRAINT staffreportperiod_pkey PRIMARY KEY (id); --- --- Name: zzold_staffreportperiodsums staffreportperiodsums_pkey; Type: CONSTRAINT; Schema: portanova; Owner: - --- - -ALTER TABLE ONLY portanova.zzold_staffreportperiodsums - ADD CONSTRAINT staffreportperiodsums_pkey PRIMARY KEY (id); - - -- -- Name: staffvacancy staffvacancy_pkey; Type: CONSTRAINT; Schema: portanova; Owner: - -- @@ -2490,14 +1586,6 @@ ALTER TABLE ONLY portanova.staffreportperioddays ADD CONSTRAINT staffworkplan_pkey PRIMARY KEY (id); --- --- Name: zzold_staffreportperiodsums uniq_staffperiod_cal; Type: CONSTRAINT; Schema: portanova; Owner: - --- - -ALTER TABLE ONLY portanova.zzold_staffreportperiodsums - ADD CONSTRAINT uniq_staffperiod_cal UNIQUE (id_reportperiod, id_staff); - - -- -- Name: staffreportperiod uniq_staffreportperiod_cal; Type: CONSTRAINT; Schema: portanova; Owner: - -- @@ -2530,6 +1618,22 @@ ALTER TABLE ONLY portanova.vacancydays ADD CONSTRAINT vacancydays_pkey PRIMARY KEY (id); +-- +-- Name: workplandays workplandays_pkey; Type: CONSTRAINT; Schema: portanova; Owner: - +-- + +ALTER TABLE ONLY portanova.workplandays + ADD CONSTRAINT workplandays_pkey PRIMARY KEY (id); + + +-- +-- Name: workplandays workplandays_un; Type: CONSTRAINT; Schema: portanova; Owner: - +-- + +ALTER TABLE ONLY portanova.workplandays + ADD CONSTRAINT workplandays_un UNIQUE (id_workplan, weekday); + + -- -- Name: workplans workplans_pkey; Type: CONSTRAINT; Schema: portanova; Owner: - -- @@ -2538,6 +1642,14 @@ ALTER TABLE ONLY portanova.workplans ADD CONSTRAINT workplans_pkey PRIMARY KEY (id); +-- +-- Name: worktimes worktimes_pkey; Type: CONSTRAINT; Schema: portanova; Owner: - +-- + +ALTER TABLE ONLY portanova.worktimes + ADD CONSTRAINT worktimes_pkey PRIMARY KEY (id); + + -- -- Name: vacancytypes worktypes_pkey; Type: CONSTRAINT; Schema: portanova; Owner: - -- @@ -2547,120 +1659,27 @@ ALTER TABLE ONLY portanova.vacancytypes -- --- Name: zzold_vw_staffworkplanlist _RETURN; Type: RULE; Schema: portanova; Owner: - +-- Name: vw_workplandayslist _RETURN; Type: RULE; Schema: portanova; Owner: - -- -CREATE OR REPLACE VIEW portanova.zzold_vw_staffworkplanlist AS - SELECT stw2.calweek, - stw2.calyear, - stw2.caldate AS weekstart, - date((stw2.caldate + '6 days'::interval)) AS weekend, - public.getdateslist(stw2.caldate, 7) AS dates, - stw2.id_staff, - stw2.staffname AS dspstaffname, - stw2.id_staffgroup, - (((((((((((((((((((''::text || ''::text) || ''::text) || ''::text) || ''::text) || ''::text) || '
'::text) || 'Semaine '::text) || stw2.calweek) || '
Contrat:'::text) || to_char(sws.contracthours, 'HH24:MI'::text)) || '
Plan:'::text) || to_char(sws.workhours, 'HH24:MI'::text)) || '
Congé:'::text) || to_char(sws.vacancyhours, 'HH24:MI'::text)) || '
Récup:'::text) || to_char(sws.recuperationhours, 'HH24:MI'::text)) || '
A récup:'::text) || to_char(sws.diffhours, 'HH24:MI'::text)) || '
'::text) AS dspweektotals, - sws.contracthours, - sws.workhours AS plannedhours, - sws.vacancyhours, - sws.recuperationhours, - sws.diffhours AS hoursdiff, - max( - CASE - WHEN (stw2.isodow = 1) THEN stw2.id - ELSE NULL::bigint - END) AS mon_id, - max( - CASE - WHEN (stw2.isodow = 1) THEN ((((((((''::text || ''::text) || (COALESCE((((''::text), ''::text) || COALESCE(((((''::text), ''::text))) || COALESCE(((''::text), ''::text)) || COALESCE(((''::text), ''::text)) || COALESCE(((((((((''::text), ''::text)) || '
'::text) || to_char((stw2.caldate)::timestamp with time zone, 'DD.MM.YYYY'::text)) || '
'::text || (to_char((stw2.timestart1)::interval, 'HH24:MI'::text) || ' - '::text)) || to_char((stw2.timeend1)::interval, 'HH24:MI'::text)) || '
'::text || to_char((stw2.timestart2)::interval, 'HH24:MI'::text)) || ' - '::text) || to_char((stw2.timeend2)::interval, 'HH24:MI'::text)) || '
Pause:'::text || to_char((stw2.timepause)::interval, 'HH24:MI'::text)) || '
Plan:'::text || to_char((stw2.totaltime)::interval, 'HH24:MI'::text)) || '
'::text) || stw2.vacancyname) || ':'::text) || to_char((stw2.vacancyhours)::interval, 'HH24:MI'::text)) || '
'::text) - ELSE NULL::text - END) AS dspmontimes, - max( - CASE - WHEN (stw2.isodow = 2) THEN stw2.id - ELSE NULL::bigint - END) AS tue_id, - max( - CASE - WHEN (stw2.isodow = 2) THEN ((((((((''::text || ''::text) || (COALESCE((((''::text), ''::text) || COALESCE(((((''::text), ''::text))) || COALESCE(((''::text), ''::text)) || COALESCE(((''::text), ''::text)) || COALESCE(((((((((''::text), ''::text)) || '
'::text) || to_char((date((stw2.caldate + '1 day'::interval)))::timestamp with time zone, 'DD.MM.YYYY'::text)) || '
'::text || (to_char((stw2.timestart1)::interval, 'HH24:MI'::text) || ' - '::text)) || to_char((stw2.timeend1)::interval, 'HH24:MI'::text)) || '
'::text || to_char((stw2.timestart2)::interval, 'HH24:MI'::text)) || ' - '::text) || to_char((stw2.timeend2)::interval, 'HH24:MI'::text)) || '
Pause:'::text || to_char((stw2.timepause)::interval, 'HH24:MI'::text)) || '
Plan:'::text || to_char((stw2.totaltime)::interval, 'HH24:MI'::text)) || '
'::text) || stw2.vacancyname) || ':'::text) || to_char((stw2.vacancyhours)::interval, 'HH24:MI'::text)) || '
'::text) - ELSE NULL::text - END) AS dsptuetimes, - max( - CASE - WHEN (stw2.isodow = 3) THEN stw2.id - ELSE NULL::bigint - END) AS wed_id, - max( - CASE - WHEN (stw2.isodow = 3) THEN ((((((((''::text || ''::text) || (COALESCE((((''::text), ''::text) || COALESCE(((((''::text), ''::text))) || COALESCE(((''::text), ''::text)) || COALESCE(((''::text), ''::text)) || COALESCE(((((((((''::text), ''::text)) || '
'::text) || to_char((date((stw2.caldate + '2 days'::interval)))::timestamp with time zone, 'DD.MM.YYYY'::text)) || '
'::text || (to_char((stw2.timestart1)::interval, 'HH24:MI'::text) || ' - '::text)) || to_char((stw2.timeend1)::interval, 'HH24:MI'::text)) || '
'::text || to_char((stw2.timestart2)::interval, 'HH24:MI'::text)) || ' - '::text) || to_char((stw2.timeend2)::interval, 'HH24:MI'::text)) || '
Pause:'::text || to_char((stw2.timepause)::interval, 'HH24:MI'::text)) || '
Plan:'::text || to_char((stw2.totaltime)::interval, 'HH24:MI'::text)) || '
'::text) || stw2.vacancyname) || ':'::text) || to_char((stw2.vacancyhours)::interval, 'HH24:MI'::text)) || '
'::text) - ELSE NULL::text - END) AS dspwedtimes, - max( - CASE - WHEN (stw2.isodow = 4) THEN stw2.id - ELSE NULL::bigint - END) AS thu_id, - max( - CASE - WHEN (stw2.isodow = 4) THEN ((((((((''::text || ''::text) || (COALESCE((((''::text), ''::text) || COALESCE(((((''::text), ''::text))) || COALESCE(((''::text), ''::text)) || COALESCE(((''::text), ''::text)) || COALESCE(((((((((''::text), ''::text)) || '
'::text) || to_char((date((stw2.caldate + '3 days'::interval)))::timestamp with time zone, 'DD.MM.YYYY'::text)) || '
'::text || (to_char((stw2.timestart1)::interval, 'HH24:MI'::text) || ' - '::text)) || to_char((stw2.timeend1)::interval, 'HH24:MI'::text)) || '
'::text || to_char((stw2.timestart2)::interval, 'HH24:MI'::text)) || ' - '::text) || to_char((stw2.timeend2)::interval, 'HH24:MI'::text)) || '
Pause:'::text || to_char((stw2.timepause)::interval, 'HH24:MI'::text)) || '
Plan:'::text || to_char((stw2.totaltime)::interval, 'HH24:MI'::text)) || '
'::text) || stw2.vacancyname) || ':'::text) || to_char((stw2.vacancyhours)::interval, 'HH24:MI'::text)) || '
'::text) - ELSE NULL::text - END) AS dspthutimes, - max( - CASE - WHEN (stw2.isodow = 5) THEN stw2.id - ELSE NULL::bigint - END) AS fri_id, - max( - CASE - WHEN (stw2.isodow = 5) THEN ((((((((''::text || ''::text) || (COALESCE((((''::text), ''::text) || COALESCE(((((''::text), ''::text))) || COALESCE(((''::text), ''::text)) || COALESCE(((''::text), ''::text)) || COALESCE(((((((((''::text), ''::text)) || '
'::text) || to_char((date((stw2.caldate + '4 days'::interval)))::timestamp with time zone, 'DD.MM.YYYY'::text)) || '
'::text || (to_char((stw2.timestart1)::interval, 'HH24:MI'::text) || ' - '::text)) || to_char((stw2.timeend1)::interval, 'HH24:MI'::text)) || '
'::text || to_char((stw2.timestart2)::interval, 'HH24:MI'::text)) || ' - '::text) || to_char((stw2.timeend2)::interval, 'HH24:MI'::text)) || '
Pause:'::text || to_char((stw2.timepause)::interval, 'HH24:MI'::text)) || '
Plan:'::text || to_char((stw2.totaltime)::interval, 'HH24:MI'::text)) || '
'::text) || stw2.vacancyname) || ':'::text) || to_char((stw2.vacancyhours)::interval, 'HH24:MI'::text)) || '
'::text) - ELSE NULL::text - END) AS dspfritimes, - max( - CASE - WHEN (stw2.isodow = 6) THEN stw2.id - ELSE NULL::bigint - END) AS sat_id, - max( - CASE - WHEN (stw2.isodow = 6) THEN (((((((((''::text || ''::text) || COALESCE(((((''::text), ''::text)) || COALESCE(((((''::text), ''::text)) || COALESCE(((''::text), ''::text)) || COALESCE(((''::text), ''::text)) || COALESCE(((((((((''::text), ''::text)) || '
'::text) || to_char((date((stw2.caldate + '5 days'::interval)))::timestamp with time zone, 'DD.MM.YYYY'::text)) || '
'::text || to_char((stw2.timestart1)::interval, 'HH24:MI'::text)) || ' - '::text) || to_char((stw2.timeend1)::interval, 'HH24:MI'::text)) || '
'::text || to_char((stw2.timestart2)::interval, 'HH24:MI'::text)) || ' - '::text) || to_char((stw2.timeend2)::interval, 'HH24:MI'::text)) || '
Pause:'::text || to_char((stw2.timepause)::interval, 'HH24:MI'::text)) || '
Plan:'::text || to_char((stw2.totaltime)::interval, 'HH24:MI'::text)) || '
'::text) || stw2.vacancyname) || ':'::text) || to_char((stw2.vacancyhours)::interval, 'HH24:MI'::text)) || '
'::text) - ELSE NULL::text - END) AS dspsattimes, - max( - CASE - WHEN (stw2.isodow = 7) THEN stw2.id - ELSE NULL::bigint - END) AS sun_id, - max( - CASE - WHEN (stw2.isodow = 7) THEN (((((((((''::text || ''::text) || COALESCE((((''::text), ''::text)) || COALESCE(((((''::text), ''::text)) || COALESCE(((''::text), ''::text)) || COALESCE(((''::text), ''::text)) || COALESCE(((((((((''::text), ''::text)) || '
'::text) || to_char((date((stw2.caldate + '6 days'::interval)))::timestamp with time zone, 'DD.MM.YYYY'::text)) || '
'::text || (to_char((stw2.timestart1)::interval, 'HH24:MI'::text) || ' - '::text)) || to_char((stw2.timeend1)::interval, 'HH24:MI'::text)) || '
'::text || to_char((stw2.timestart2)::interval, 'HH24:MI'::text)) || ' - '::text) || to_char((stw2.timeend2)::interval, 'HH24:MI'::text)) || '
Pause:'::text || to_char((stw2.timepause)::interval, 'HH24:MI'::text)) || '
Plan:'::text || to_char((stw2.totaltime)::interval, 'HH24:MI'::text)) || '
'::text) || stw2.vacancyname) || ':'::text) || to_char((stw2.vacancyhours)::interval, 'HH24:MI'::text)) || '
'::text) - ELSE NULL::text - END) AS dspsuntimes - FROM (( SELECT date_part('isoyear'::text, stw.daydate) AS calyear, - date_part('week'::text, stw.daydate) AS calweek, - (date_trunc('week'::text, (stw.daydate)::timestamp with time zone))::date AS caldate, - (date_part('isodow'::text, stw.daydate))::integer AS isodow, - ((st.surname || ' '::text) || st.prename) AS staffname, - stw.daydate, - stw.id, - stw.id_staff, - stw.timestart1, - stw.timeend1, - stw.timestart2, - stw.timeend2, - stw.timepause, - stw.dayhours AS totaltime, - stw.vacancyhours, - stw.id_vacancytype, - stw.id_staffgroup, - stw.daytype, - vt.color, - vt.vacancyname - FROM ((portanova.staffreportperioddays stw - LEFT JOIN portanova.staff st ON ((stw.id_staff = st.id))) - LEFT JOIN portanova.vacancytypes vt ON ((stw.id_vacancytype = vt.id)))) stw2 - LEFT JOIN portanova.staffreportperiodweeks sws ON (((sws.id_staff = stw2.id_staff) AND (sws.calweek = stw2.calweek) AND ((sws.calyear)::double precision = stw2.calyear)))) - GROUP BY stw2.calweek, stw2.calyear, stw2.caldate, stw2.id_staff, stw2.staffname, sws.id, stw2.id_staffgroup - ORDER BY stw2.staffname, stw2.id_staff, stw2.calweek; +CREATE OR REPLACE VIEW portanova.vw_workplandayslist AS + SELECT (((wp.workplan || ' - Salarié(s): '::text) || count(DISTINCT sc.id_staff)) || ''::text) AS workplan, + to_char(wp.weekhours, 'HH24:MI'::text) AS weekhours, + wpd.id, + wpd.id_workplan, + wpd.weekday, + to_char((wpd.start1)::interval, 'HH24:MI'::text) AS start1, + to_char((wpd.end1)::interval, 'HH24:MI'::text) AS end1, + to_char((wpd.start2)::interval, 'HH24:MI'::text) AS start2, + to_char((wpd.end2)::interval, 'HH24:MI'::text) AS end2, + to_char((wpd.pause)::interval, 'HH24:MI'::text) AS pause, + to_char((((wpd.end1 - wpd.start1) + COALESCE((wpd.end2 - wpd.start2), '00:00:00'::interval)) - COALESCE((wpd.pause)::interval, '00:00:00'::interval)), 'HH24:MI'::text) AS dayhours, + count(DISTINCT sc.id_staff) AS staffcount + FROM ((portanova.workplandays wpd + LEFT JOIN portanova.workplans wp ON ((wpd.id_workplan = wp.id))) + LEFT JOIN portanova.staffcontract sc ON ((sc.id_workplan = wp.id))) + GROUP BY wpd.id, wp.id + ORDER BY wp.workplan, wpd.weekday; -- @@ -2727,6 +1746,14 @@ ALTER TABLE ONLY portanova.staffreportperioddays ADD CONSTRAINT staffworkplan_fk_1 FOREIGN KEY (id_staffgroup) REFERENCES portanova.staffgroups(id); +-- +-- Name: workplandays workplandays_fk; Type: FK CONSTRAINT; Schema: portanova; Owner: - +-- + +ALTER TABLE ONLY portanova.workplandays + ADD CONSTRAINT workplandays_fk FOREIGN KEY (id_workplan) REFERENCES portanova.workplans(id); + + -- -- PostgreSQL database dump complete -- diff --git a/dev/diff_files.sh b/dev/diff_files.sh index c37967ac..b143b79a 100644 --- a/dev/diff_files.sh +++ b/dev/diff_files.sh @@ -8,7 +8,7 @@ SSHHOST="www422.your-server.de" CALLDIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )" cd .. -find . -type f -printf "%p|%s\n" | grep -v -e "^\.\/\.git\/" | grep -v -e "\.\/dev\/" | grep -v -e "\.\/OLD\/" | sort > dev/sourcefiles.local.txt +find . -type f -printf "%p|%s\n" | grep -v -e "^\.\/\.git\/" | grep -v -e "\.\/dev\/" | grep -v -e "\.\/OLD\/" | grep -v -e "\.\/data\/output\/" | grep -v -e "\.\/data\/tmp\/" | sort > dev/sourcefiles.local.txt ssh -p ${SSHPORT} ${SSHUSER}@${SSHHOST} 'cd '${REMOTEFOLDER}' && find . -type f -printf "%p|%s\n" | sort' > dev/sourcefiles.remote.txt diff --git a/dev/sourcefiles.local.txt b/dev/sourcefiles.local.txt index 6b79fa9d..c193beed 100644 --- a/dev/sourcefiles.local.txt +++ b/dev/sourcefiles.local.txt @@ -1,9 +1,10 @@ -./backoffice/api/db.cgi|4005 +./backoffice/api/db.cgi|4588 ./backoffice/api/file.cgi|4381 -./backoffice/api/index.cgi|6445 -./backoffice/api/lib/dksconfig.pm|1536 -./backoffice/api/lib/dksdb.pm|10421 +./backoffice/api/index.cgi|6962 +./backoffice/api/lib/dksconfig.pm|1525 +./backoffice/api/lib/dksdb.pm|10832 ./backoffice/api/lib/dkssavefile.pm|991 +./backoffice/api/lib/pdfreport.pm|4180 ./backoffice/api/lib/perl5/Business/Tax/VAT/Validation.pm|14797 ./backoffice/api/lib/perl5/CGI/Cookie.pm|6599 ./backoffice/api/lib/perl5/CGI/File/Temp.pm|969 @@ -648,18 +649,51 @@ ./backoffice/api/lib/sendemail_new.pm|4865 ./backoffice/api/lib/sendemail.pm|3038 ./backoffice/api/lib/session.pm|9650 +./backoffice/api/report.cgi|3938 ./backoffice/api/sendEmail|80246 ./backoffice/api/upload.cgi|9418 ./backoffice/css/module.css|181 -./backoffice/css/w3pro.css|27053 +./backoffice/css/w3pro.css|27227 +./backoffice/css/w3pro.min.css|25940 ./backoffice/data/.htaccess|169 ./backoffice/data/mail/block/greeting.tt|180 ./backoffice/data/mail/block/signature.tt|62 ./backoffice/data/mail/body/user_forgotpasswd.tt|243 ./backoffice/data/mail/body/user_registration.tt|551 ./backoffice/data/mail/mail.tt|709 -./backoffice/data/schemata/defaultcompany.schema.sql|53843 +./backoffice/data/output/pot/periode_20191230-20200223_pot_period.pdf|302716 +./backoffice/data/output/pot/periode_20200224-20200419_pot_period.pdf|299068 +./backoffice/data/output/pot/periode_20200420-20200614_pot_period.pdf|17755 +./backoffice/data/output/pot/periode_20200615-20200809_pot_period.pdf|18187 +./backoffice/data/reports/invoices/dks-deutsch.conf|244 +./backoffice/data/reports/invoices/dks-deutsch/dks_500.png|19377 +./backoffice/data/reports/invoices/dks-deutsch.footer.tt|1595 +./backoffice/data/reports/invoices/dks-deutsch.header.tt|685 +./backoffice/data/reports/invoices/dks-deutsch/sitc.png|57392 +./backoffice/data/reports/invoices/dks-deutsch.tt|3712 +./backoffice/data/reports/invoices/staff_department.conf|262 +./backoffice/data/reports/invoices/staff_department.footer.tt|1595 +./backoffice/data/reports/invoices/staff_department.header.tt|685 +./backoffice/data/reports/invoices/staff_department.tt|3712 +./backoffice/data/reports/invoices/staff_workplan.conf|258 +./backoffice/data/reports/invoices/staff_workplan.footer.tt|1595 +./backoffice/data/reports/invoices/staff_workplan.header.tt|685 +./backoffice/data/reports/invoices/staff_workplan.tt|1568 +./backoffice/data/reports/pot/pot_period.conf|259 +./backoffice/data/reports/pot/pot_period.footer.tt|1381 +./backoffice/data/reports/pot/pot_period.header.tt|1205 +./backoffice/data/reports/pot/pot_period.tt|3247 +./backoffice/data/schemata/defaultcompany.schema.sql|47179 ./backoffice/data/schemata/.htaccess|167 +./backoffice/data/tmp/pot_period4139.footer.html|1381 +./backoffice/data/tmp/pot_period4139.header.html|674 +./backoffice/data/tmp/pot_period4139.html|441145 +./backoffice/data/tmp/pot_period8800.footer.html|1381 +./backoffice/data/tmp/pot_period8800.header.html|674 +./backoffice/data/tmp/pot_period8800.html|414923 +./backoffice/data/tmp/pot_period8874.footer.html|1381 +./backoffice/data/tmp/pot_period8874.header.html|674 +./backoffice/data/tmp/pot_period8874.html|432945 ./backoffice/.htaccess|202 ./backoffice/img/bg1.jpg|135161 ./backoffice/img/favicon/android-icon-144x144.png|12179 @@ -707,6 +741,7 @@ ./backoffice/img/icons/clubs_white.svg|1045 ./backoffice/img/icons/club_white.svg|835 ./backoffice/img/icons/code.svg|589 +./backoffice/img/icons/coin.svg|2323 ./backoffice/img/icons/company.svg|1482 ./backoffice/img/icons/company_white.svg|1498 ./backoffice/img/icons/cubelight.svg|1023 @@ -715,6 +750,8 @@ ./backoffice/img/icons/cube_white.svg|378 ./backoffice/img/icons/dashboard.svg|1085 ./backoffice/img/icons/dashboard_white.svg|1098 +./backoffice/img/icons/data_refresh.svg|2969 +./backoffice/img/icons/data_refresh_white.svg|2985 ./backoffice/img/icons/Document_Save.svg|729 ./backoffice/img/icons/documents.svg|987 ./backoffice/img/icons/documents_white.svg|1003 @@ -722,10 +759,11 @@ ./backoffice/img/icons/download_white.svg|351 ./backoffice/img/icons/duplicate.svg|430 ./backoffice/img/icons/duplicate_white.svg|442 -./backoffice/img/icons/edit.svg|712 +./backoffice/img/icons/edit.svg|750 ./backoffice/img/icons/edit_white.svg|725 ./backoffice/img/icons/excel.svg|1394 ./backoffice/img/icons/excel_white.svg|1410 +./backoffice/img/icons/expand.svg|322 ./backoffice/img/icons/file/dir.png|6937 ./backoffice/img/icons/file/doc.png|6455 ./backoffice/img/icons/file/docx.png|6455 @@ -772,22 +810,27 @@ ./backoffice/img/icons/numberlist_white.svg|920 ./backoffice/img/icons/package.svg|408 ./backoffice/img/icons/package_white.svg|420 +./backoffice/img/icons/pay.svg|3048 ./backoffice/img/icons/pdfexport.svg|2730 ./backoffice/img/icons/pdfexport_white.svg|2730 ./backoffice/img/icons/pdf.svg|3436 ./backoffice/img/icons/pdf_white.svg|3452 ./backoffice/img/icons/pictures.svg|1420 ./backoffice/img/icons/pictures_white.svg|1436 -./backoffice/img/icons/plus.svg|535 +./backoffice/img/icons/plus2.svg|535 +./backoffice/img/icons/plus.svg|404 ./backoffice/img/icons/plus_white.svg|547 ./backoffice/img/icons/poticon.svg|10061 ./backoffice/img/icons/projects.svg|939 ./backoffice/img/icons/projects_white.svg|955 -./backoffice/img/icons/remove.svg|816 +./backoffice/img/icons/remove_2.svg|816 +./backoffice/img/icons/remove.svg|447 ./backoffice/img/icons/remove_white.svg|828 +./backoffice/img/icons/rename.svg|1136 ./backoffice/img/icons/Save.svg|477 ./backoffice/img/icons/squares.svg|502 ./backoffice/img/icons/squares_white.svg|514 +./backoffice/img/icons/table.svg|454 ./backoffice/img/icons/target.svg|780 ./backoffice/img/icons/target_white.svg|792 ./backoffice/img/icons/upload.svg|507 @@ -800,66 +843,51 @@ ./backoffice/img/no-news-img.png|17922 ./backoffice/img/pottop.png|2689 ./backoffice/img/toplogo.png|31456 -./backoffice/index.cgi|5550 -./backoffice/js/admin.js|3435 +./backoffice/index.cgi|5552 +./backoffice/js/admin.js|2596 ./backoffice/js/.DS_Store|6148 -./backoffice/js/formsave.js|9096 -./backoffice/js/module_global.js|3286 -./backoffice/js/request.js|3866 +./backoffice/js/formsave.js|8472 +./backoffice/js/module_global.js|4107 +./backoffice/js/request.js|2967 ./backoffice/tmpl/block/cgu.tt|9358 +./backoffice/tmpl/block/dlgaction.tt|2865 ./backoffice/tmpl/block/dlgdataload.tt|1293 -./backoffice/tmpl/block/dlgdeleterow.tt|2573 +./backoffice/tmpl/block/dlgdeleterow.tt|2736 ./backoffice/tmpl/block/dlgmessage.tt|950 +./backoffice/tmpl/block/dlgreport.tt|2354 ./backoffice/tmpl/block/dlguploadfile.tt|3399 ./backoffice/tmpl/block/head.tt|1782 ./backoffice/tmpl/block/snackbar.tt|25 -./backoffice/tmpl/block/toolbars.tt|515 -./backoffice/tmpl/macro/fields.tt|8707 -./backoffice/tmpl/module/companies/index.js|229 -./backoffice/tmpl/module/companies/index.tt|626 -./backoffice/tmpl/module/companies/widgets/companies/companies.js|4126 -./backoffice/tmpl/module/companies/widgets/companies/frm_companies.tt|1897 -./backoffice/tmpl/module/companies/widgets/companies/tbar_companies.tt|694 -./backoffice/tmpl/module/companies/widgets/companies/tbl_companies.tt|133 +./backoffice/tmpl/block/toolbars.tt|519 +./backoffice/tmpl/macro/fields.tt|12382 +./backoffice/tmpl/module/companies/companies.js|4239 +./backoffice/tmpl/module/companies/index.js|186 +./backoffice/tmpl/module/companies/index.tt|8478 +./backoffice/tmpl/module/companies/staffgroups.js|2346 +./backoffice/tmpl/module/companies/worktimes.js|3616 ./backoffice/tmpl/module/dashboard/index.js|165 -./backoffice/tmpl/module/dashboard/index.tt|987 -./backoffice/tmpl/module/planning/index.js|305 -./backoffice/tmpl/module/planning/index.tt|1001 -./backoffice/tmpl/module/planning/widgets/reportperiod/dlg_reportperiod.tt|1396 -./backoffice/tmpl/module/planning/widgets/reportperiod/reportperiod.js|3491 -./backoffice/tmpl/module/planning/widgets/reportperiod/tbar_reportperiod.tt|632 -./backoffice/tmpl/module/planning/widgets/reportperiod/tbl_reportperiod.tt|139 -./backoffice/tmpl/module/planning/widgets/staffworkplan/frm_staffworkplan.tt|2928 -./backoffice/tmpl/module/planning/widgets/staffworkplan/staffworkplan.js|14277 -./backoffice/tmpl/module/planning/widgets/staffworkplan/tbar_staffworkplan.tt|912 -./backoffice/tmpl/module/planning/widgets/staffworkplan/tbl_staffworkplan.tt|141 +./backoffice/tmpl/module/dashboard/index.tt|1163 +./backoffice/tmpl/module/periods/index.js|219 +./backoffice/tmpl/module/periods/index.tt|7831 +./backoffice/tmpl/module/periods/reportperiod.js|4442 +./backoffice/tmpl/module/periods/staffperiodweeks.js|10895 ./backoffice/tmpl/module/profile/dlgpassword.tt|2911 ./backoffice/tmpl/module/profile/dlgusername.tt|3814 -./backoffice/tmpl/module/profile/index.js|1410 +./backoffice/tmpl/module/profile/index.js|403 ./backoffice/tmpl/module/profile/index.tt|1767 -./backoffice/tmpl/module/sites/index.js|4519 -./backoffice/tmpl/module/sites/index.tt|0 -./backoffice/tmpl/module/staff/index.js|247 -./backoffice/tmpl/module/staff/index.tt|697 -./backoffice/tmpl/module/staff/widgets/staffcontract/dlg_staffcontract.tt|1344 -./backoffice/tmpl/module/staff/widgets/staffcontract/staffcontract.js|4239 -./backoffice/tmpl/module/staff/widgets/staffcontract/tbar_staffcontract.tt|645 -./backoffice/tmpl/module/staff/widgets/staffcontract/tbl_staffcontract.tt|276 -./backoffice/tmpl/module/staff/widgets/staff/frm_staff.tt|1853 -./backoffice/tmpl/module/staff/widgets/staff/staff.js|3787 -./backoffice/tmpl/module/staff/widgets/staff/tbar_staff.tt|672 -./backoffice/tmpl/module/staff/widgets/staff/tbl_staff.tt|125 -./backoffice/tmpl/module/timetrackers/index.js|399 -./backoffice/tmpl/module/timetrackers/index.tt|1304 -./backoffice/tmpl/module/users/index.js|221 -./backoffice/tmpl/module/users/index.tt|594 -./backoffice/tmpl/module/users/widgets/users/dlg_users.tt|1765 -./backoffice/tmpl/module/users/widgets/users/tbar_users.tt|601 -./backoffice/tmpl/module/users/widgets/users/tbl_users.tt|125 -./backoffice/tmpl/module/users/widgets/users/users.js|6218 -./backoffice/tmpl/module/workplans/index.js|3126 -./backoffice/tmpl/module/workplans/index.tt|3065 -./backoffice/tmpl/skeleton/index.tt|4550 +./backoffice/tmpl/module/staff/index.js|199 +./backoffice/tmpl/module/staff/index.tt|5754 +./backoffice/tmpl/module/staff/staffcontract.js|6449 +./backoffice/tmpl/module/staff/staff.js|3528 +./backoffice/tmpl/module/timetrackers/index.js|401 +./backoffice/tmpl/module/timetrackers/index.tt|1310 +./backoffice/tmpl/module/users/index.js|126 +./backoffice/tmpl/module/users/index.tt|3043 +./backoffice/tmpl/module/users/users.js|6741 +./backoffice/tmpl/module/workplans/index.js|169 +./backoffice/tmpl/module/workplans/index.tt|5446 +./backoffice/tmpl/module/workplans/workplans.js|6385 +./backoffice/tmpl/skeleton/index.tt|4407 ./backoffice/tmpl/skeleton/login/accountreset.tt|1679 ./backoffice/tmpl/skeleton/login/forgotpassword.tt|874 ./backoffice/tmpl/skeleton/login/login.tt|1231 @@ -868,21 +896,28 @@ ./backoffice/tmpl/skeleton/login.tt|1171 ./backoffice/tmpl/skeleton/login/validationcode.tt|954 ./backoffice/tmpl/skeleton/module_file.tt|84 -./backoffice/tmpl/skeleton/module.tt|2718 -./backoffice/vendors/choices/base.css|2314 -./backoffice/vendors/choices/base.min.css|1604 -./backoffice/vendors/choices/choices.css|8099 +./backoffice/tmpl/skeleton/module.tt|2584 +./backoffice/tmp/periods.html|13713 +./backoffice/tmp/rp.js|10474 +./backoffice/tmp/staffreportperiod.js|2268 +./backoffice/tmp/staffworkplan_daily.js|5230 +./backoffice/tmp/staffworkplanform.html|5985 +./backoffice/tmp/staffworkplan.js|24993 +./backoffice/vendors/choices/base.css|2320 +./backoffice/vendors/choices/base.min.css|1391 +./backoffice/vendors/choices/choices.css|8549 ./backoffice/vendors/choices/choices.js|217424 -./backoffice/vendors/choices/choices.min.css|6735 +./backoffice/vendors/choices/choices.min.css|6293 ./backoffice/vendors/choices/choices.min.js|91604 +./backoffice/vendors/choices/choices.min.orig.css|6735 +./backoffice/vendors/choices/choices.orig.css|8099 ./backoffice/vendors/choices/scripts/choices.js|217424 ./backoffice/vendors/choices/scripts/choices.min.js|91604 -./backoffice/vendors/ctxmenu/ctxmenu.css|1689 -./backoffice/vendors/ctxmenu/ctxmenu.js|7569 ./backoffice/vendors/flatpickr/flatpickr.css|18831 -./backoffice/vendors/flatpickr/flatpickr.js|118042 -./backoffice/vendors/flatpickr/flatpickr.min.css|15954 -./backoffice/vendors/flatpickr/flatpickr.min.js|48368 +./backoffice/vendors/flatpickr/flatpickr.js|118005 +./backoffice/vendors/flatpickr/flatpickr.min.css|15556 +./backoffice/vendors/flatpickr/flatpickr.min.js|48355 +./backoffice/vendors/flatpickr/flatpickr.min.orig.css|15954 ./backoffice/vendors/flatpickr/ie.css|260 ./backoffice/vendors/flatpickr/index.d.ts|138 ./backoffice/vendors/flatpickr/l10n/de.d.ts|2272 @@ -899,7 +934,7 @@ ./backoffice/vendors/flatpickr/plugins/labelPlugin/labelPlugin.d.ts|114 ./backoffice/vendors/flatpickr/plugins/labelPlugin/labelPlugin.js|964 ./backoffice/vendors/flatpickr/plugins/minMaxTimePlugin.d.ts|491 -./backoffice/vendors/flatpickr/plugins/minMaxTimePlugin.js|12399 +./backoffice/vendors/flatpickr/plugins/minMaxTimePlugin.js|12386 ./backoffice/vendors/flatpickr/plugins/monthSelect/index.d.ts|367 ./backoffice/vendors/flatpickr/plugins/monthSelect/index.js|7757 ./backoffice/vendors/flatpickr/plugins/monthSelect/style.css|1561 @@ -911,13 +946,7 @@ ./backoffice/vendors/flatpickr/plugins/weekSelect/weekSelect.d.ts|218 ./backoffice/vendors/flatpickr/plugins/weekSelect/weekSelect.js|3500 ./backoffice/vendors/flatpickr/themes/airbnb.css|21148 -./backoffice/vendors/flatpickr/themes/confetti.css|19048 -./backoffice/vendors/flatpickr/themes/dark.css|18875 -./backoffice/vendors/flatpickr/themes/light.css|18996 -./backoffice/vendors/flatpickr/themes/material_blue.css|19048 -./backoffice/vendors/flatpickr/themes/material_green.css|19048 -./backoffice/vendors/flatpickr/themes/material_orange.css|19048 -./backoffice/vendors/flatpickr/themes/material_red.css|19048 +./backoffice/vendors/flatpickr/themes/airbnb.min.css|17638 ./backoffice/vendors/flatpickr/types/globals.d.ts|546 ./backoffice/vendors/flatpickr/types/instance.d.ts|4386 ./backoffice/vendors/flatpickr/types/locale.d.ts|2263 @@ -928,21 +957,6 @@ ./backoffice/vendors/flatpickr/utils/formatting.d.ts|834 ./backoffice/vendors/flatpickr/utils/index.d.ts|393 ./backoffice/vendors/flatpickr/utils/polyfills.d.ts|0 -./backoffice/vendors/jspdf/jspdf.min.js|307591 -./backoffice/vendors/jspdf/jspdf.plugin.autotable.js|71296 -./backoffice/vendors/jspdf/jspdf.plugin.autotable.min.js|30274 -./backoffice/vendors/jsxlsx/cpexcel.js|471033 -./backoffice/vendors/jsxlsx/jszip.js|288108 -./backoffice/vendors/jsxlsx/LICENSE|11356 -./backoffice/vendors/jsxlsx/shim.min.js|5651 -./backoffice/vendors/jsxlsx/xlsx.core.min.js|477227 -./backoffice/vendors/jsxlsx/xlsx.core.min.map|717898 -./backoffice/vendors/jsxlsx/xlsx.extendscript.js|992249 -./backoffice/vendors/jsxlsx/xlsx.full.min.js|921331 -./backoffice/vendors/jsxlsx/xlsx.full.min.map|841224 -./backoffice/vendors/jsxlsx/xlsx.js|696439 -./backoffice/vendors/jsxlsx/xlsx.min.js|397226 -./backoffice/vendors/jsxlsx/xlsx.min.map|586186 ./backoffice/vendors/moment/moment.js|150941 ./backoffice/vendors/moment/moment.min.js|53324 ./backoffice/vendors/moment/moment-with-locales.js|541363 @@ -1217,4 +1231,4 @@ ./index.cgi|2355 ./js/slides.js|669 ./tmpl/skeleton/index_next.tt|11738 -./tmpl/skeleton/index.tt|3324 +./tmpl/skeleton/index.tt|3321 diff --git a/dev/sourcefiles.remote.txt b/dev/sourcefiles.remote.txt index aedf1788..27d7f900 100644 --- a/dev/sourcefiles.remote.txt +++ b/dev/sourcefiles.remote.txt @@ -646,9 +646,13 @@ ./backoffice/api/lib/perl5/x86_64-linux-gnu-thread-multi/Test/LeakTrace/Script.pm|986 ./backoffice/api/lib/perl5/x86_64-linux-gnu-thread-multi/Text/Soundex.pm|8345 ./backoffice/api/lib/sendemail_new.pm|4865 -./backoffice/api/lib/sendemail.pm|3038 +./backoffice/api/lib/sendemail.pm|3040 ./backoffice/api/lib/session.pm|9650 ./backoffice/api/sendEmail|80246 +./backoffice/api/tmp/mailbody_fiduciairetiger_gmail.com.txt|1026 +./backoffice/api/tmp/mailbody_ksaffran_dks.lu.txt|831 +./backoffice/api/tmp/mailbody_max.dibartolomeo_dbe.lu.txt|1030 +./backoffice/api/tmp/mailbody_pierre.eberhard_dbe.lu.txt|1027 ./backoffice/api/upload.cgi|9418 ./backoffice/css/module.css|181 ./backoffice/css/w3pro.css|27053 @@ -840,12 +844,12 @@ ./backoffice/tmpl/module/sites/index.js|4519 ./backoffice/tmpl/module/sites/index.tt|0 ./backoffice/tmpl/module/staff/index.js|247 -./backoffice/tmpl/module/staff/index.tt|697 +./backoffice/tmpl/module/staff/index.tt|701 ./backoffice/tmpl/module/staff/widgets/staffcontract/dlg_staffcontract.tt|1344 ./backoffice/tmpl/module/staff/widgets/staffcontract/staffcontract.js|4239 ./backoffice/tmpl/module/staff/widgets/staffcontract/tbar_staffcontract.tt|645 ./backoffice/tmpl/module/staff/widgets/staffcontract/tbl_staffcontract.tt|276 -./backoffice/tmpl/module/staff/widgets/staff/frm_staff.tt|1853 +./backoffice/tmpl/module/staff/widgets/staff/frm_staff.tt|1848 ./backoffice/tmpl/module/staff/widgets/staff/staff.js|3787 ./backoffice/tmpl/module/staff/widgets/staff/tbar_staff.tt|672 ./backoffice/tmpl/module/staff/widgets/staff/tbl_staff.tt|125 -- 2.39.5